diff --git a/parse/train/BJlguT4YPr/BJlguT4YPr.md b/parse/train/BJlguT4YPr/BJlguT4YPr.md new file mode 100644 index 0000000000000000000000000000000000000000..b6c147f794dd221fdc84a1d610fab4c1d37068a9 --- /dev/null +++ b/parse/train/BJlguT4YPr/BJlguT4YPr.md @@ -0,0 +1,420 @@ +# SCALABLE NEURAL METHODS FOR REASONING WITH A SYMBOLIC KNOWLEDGE BASE + +William W. Cohen & Haitian Sun & R. Alex Hofer & Matthew Siegler Google, Inc {wcohen,haitiansun,rofer,msiegler}@google.com + +# ABSTRACT + +We describe a novel way of representing a symbolic knowledge base (KB) called a sparse-matrix reified $K B$ . This representation enables neural KB inference modules that are fully differentiable, faithful to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable enough to use with realistically large KBs. The sparse-matrix reified KB can be distributed across multiple GPUs, can scale to tens of millions of entities and facts, and is orders of magnitude faster than naive sparse-matrix implementations. The reified KB enables very simple end-to-end architectures to obtain competitive performance on several benchmarks representing two families of tasks: KB completion, and learning semantic parsers from denotations. + +# 1 INTRODUCTION + +There has been much prior work on using neural networks to generalize the contents of a KB (Xiong et al., 2017; Bordes et al., 2013; Dettmers et al., 2018), typically by constructing low-dimensional embeddings of the entities and relations in the KB, which are then used to score potential triples as plausible or implausible elements of the KB. We consider here the related but different problem of incorporating a symbolic KB into a neural system, so as to inject knowledge from an existing KB directly into a neural model. More precisely, we consider the problem of designing neural KB inference modules that are (1) fully differentiable, so that any loss based on their outputs can be backpropagated to their inputs; (2) accurate, in that they are faithful to the original semantics of the KB; (3) expressive, so they can perform non-trivial inferences; and (4) scalable, so that realistically large KBs can be incorporated into a neural model. + +To motivate the goal of incorporating a symbolic KB into a neural network, consider the task of learning neural semantic parsers from denotations. Many questions—e.g., what’s the most recent movie that Quentin Tarantino directed? or which nearby restaurants have vegetarian entrees and take reservations?—are best answered by knowledge-based question-answering (KBQA) methods, where an answer is found by accessing a KB. Within KBQA, a common approach is neural semantic parsing—i.e., using neural methods to translate a natural-language question into a structured query against the KB (Zhong et al., 2017; Finegan-Dollak et al., 2018; Shaw et al., 2019), which is subsequently executed with a symbolic KB query engine. While this approach can be effective, it requires training data pairing natural-language questions with structured queries, which is difficult to obtain. Hence researchers have also considered learning semantic parsers from denotations (Berant et al., 2013; Yih et al., 2015), where training data consists of pairs $( q , A )$ , where $q$ is a natural-language question and $A$ is the desired answer. Typically $A$ is a set of KB entities—e.g., if $q$ is the first sample question above, $A$ would be1 the singleton set containing Once Upon a Time in Hollywood. + +Learning semantic parsers from denotations is difficult because the end-to-end process to be learned includes a non-differentiable operation—i.e., reasoning with the symbolic KB that contains the answers. To circumvent this difficulty, prior systems have used three different approaches. Some have used heuristic search to infer structured queries from denotations (Pasupat & Liang, 2016; Dasigi et al., 2019): this works in some cases but often an answer could be associated with many possible structured queries, introducing noise. Others have supplemented gradient approaches with $x$ : an entity $X$ : weighted set of entities x: vector encoding $X$ $N _ { E }$ : # entities in KB $r$ : an relation $R$ : weighted set of relations r: vector encoding $R$ $N _ { R }$ : # relations in KB ${ { \bf { M } } _ { r } }$ : matrix for $r$ ${ \bf { M } } _ { R }$ : weighted sum of ${ { \bf { M } } _ { r } }$ ’s, see Eq 1 $f o l l o w ( \mathbf { x } , \mathbf { r } )$ : see Eq 2 $N _ { T }$ : # triples in KB $\mathbf { M } _ { s u b j }$ $\mathbf { \tau } _ { s u b j } , \mathbf { M } _ { o b j } , \mathbf { M } _ { r e l }$ : the reified KB, encoded as matrices mapping triple id $\ell$ to subject, object, and relation ids + +Table 1: Summary of notation used in the paper. (This excludes notation used in defining models for the KB completion and QA tasks of Section 3.) + +reinforcement learning (e.g., (Misra et al., 2018)). Some systems have also “neuralized” KB reasoning, but to date only over small KBs: this approach is natural when answers are naturally constrained to depend on a small set of facts (e.g., a single table (Zhong et al., 2017; Gupta & Lewis, 2018)), but more generally requires coupling a learner with some (non-differentiable) mechanism to retrieve an appropriate small question-dependent subset of the KB as in (Sun et al., 2018; 2019). + +In this paper, we introduce a novel scheme for incorporating reasoning on a large question-independent KB into a neural network, by representing a symbolic KB with an encoding called a sparse-matrix reified KB. A sparse-matrix reified KB is very compact, can be distributed across multiple GPUs if necessary, and is well-suited to modern GPU architecture. For KBs with many relations, a reified KB can be up to four orders of magnitude faster than alternative implementations (even alternatives based on sparse-matrix representations), and in our experiments we demonstrate scalability to a KB with over 13 million entities and nearly 44 million facts. This new architectural component leads to radically simpler architectures for neural semantic parsing from denotations—architectures based on a single end-to-end differentiable process, rather than cascades of retrieval and neural processes. + +We show that very simple instantiations of these architectures are still highly competitive with the state of the art for several benchmark tasks. To our knowledge these models are the first fully end-to-end neural parsers from denotations that have been applied to these benchmark tasks. We also demonstrate that these architectures scale to long chains of reasoning on synthetic tasks, and demonstrate similarly simple architectures for a second task, KB completion. + +# 2 NEURAL REASONING WITH A SYMBOLIC KB + +# 2.1 BACKGROUND + +KBs, entities, and relations. A KB consists of entities and relations. We use $x$ to denote an entity and $r$ to denote a relation. Each entity has an integer index between 1 and $N _ { E }$ , where $N _ { E }$ is the number of entities in the KB, and we write $x _ { i }$ for the entity that has index $i$ . A relation is a set of entity pairs, and represents a relationship between entities: for instance, if $x _ { i }$ represents “Quentin Tarantino” and $x _ { j }$ represents “Pulp Fiction” then $( x _ { i } , x _ { j } )$ would be an member of the relation director_of. A relation $r$ can thus be represented as a subset of $\left\{ 1 , \dots , N _ { E } \right\} \times \left\{ 1 , \dots , N _ { E } \right\}$ . Finally a KB consists a set of relations and a set of entities. + +Weighted sets as $^ { 6 6 } k$ -hot” vectors. Our differentiable operations are based on weighted sets, where each element $x$ of weighted set $X$ is associated with a non-negative real number. It is convenient to define this weight to be zero for all $x \not \in X$ , while for $x \in X$ , a weight less than 1 is a confidence that the set contains $x$ , and weights more than 1 make $X$ a multiset. If all elements of $X$ have weight 1, we say $X$ is a hard set. A weighted set $X$ can be encoded as an entity-set vector $\mathbf { x } \in \mathbb { R } ^ { N _ { E } }$ , where the $i$ -th component of $\mathbf { X }$ is the weight of $x _ { i }$ in $X$ . If $X$ is a hard entity set, then this will be a “ $k$ -hot” vector, for $k = | X |$ . The set of indices of $\mathbf { X }$ with non-zero values is called the support of $\dot { \boldsymbol { x } }$ . + +Sets of relations, and relations as matrices Often we would like to reason about sets of relations2, so we also assume every relation $r$ in a KB is associated with an entity and hence an integer index. We write $r _ { k }$ for the relation with index $k$ , and we assume that relation entities are listed first in the index of entities, so the index $k$ for $r _ { k }$ is between 1 and $N _ { R }$ , where $N _ { R }$ is the number of relations in the KB. We use $R$ for a set of relations, e.g., $R = \{ w r i t e r \_ o f , d i r e c t o r \_ o f \}$ might be such a set, and use $\mathbf { r }$ for a vector encoding of a set. A relation $r$ can be encoded as a relation matrix $\mathbf { M } _ { r } \in \mathbb { R } ^ { N _ { E } \times N _ { E } }$ , where the value for $\mathbf { M } _ { r } [ i , j ]$ is (in general) the weight of the assertion $r ( x _ { i } , x _ { j } )$ in the KB. In the experiments of this paper, all KB relations are hard sets, so $\mathbf { M } _ { r } [ i , j ] \in \{ 0 , 1 \}$ . + +Sparse vs. dense matrices for relations. Scalably representing a large KB requires careful consideration of the implementation. One important issue is that for all but the smallest KBs, a relation matrix must be implemented using a sparse matrix data structure, as explicitly storing all $N _ { E } ^ { 2 }$ values is impractical. For instance, consider a KB containing 10,000 movie entities and 100,000 person entities. A relationship like writer_of would have only a few tens of thousands of facts (since most movies have only one or two writers), but a dense matrix would have 1 billion values. + +We thus model relations as sparse matrices. Let $N _ { r }$ be the number of entity pairs in the relation $r$ : common sparse matrix data structures require space $O ( N _ { r } )$ . One common sparse matrix data structure is a sparse coordinate pair $( C O O )$ encoding: with a COO encoding, each KB fact requires storing only two integers and one float. + +Our implementations are based on Tensorflow (Abadi et al., 2016), which offers limited support for sparse matrices. In particular, driven by the limitations of GPU architecture, Tensorflow only supports matrix multiplication between a sparse matrix COO and a dense matrix, but not between two sparse matrices, or between sparse higher-rank tensors and dense tensors. + +Entity types. It is often possible to easily group entities into disjoint sets by some notion of “type”: for example, in a movie domain, all entities might be either of the type “movie”, “person”, or “movie studio”. It is straightforward to extend the formalism above to typed sets of entities, and doing this can lead to some useful optimizations. We use these optimizations below where appropriate: in particular, relation-set vectors r are of dimension $N _ { R }$ , not $N _ { E }$ , in the sections below. The full formal extension to typed entities and relations is given in Appendix A. + +# 2.2 REASONING IN A KB + +The relation-set following operation. Note that relations can also be viewed as labeled edges in a knowledge graph, the vertices of which are entities. Adopting this view, we define the $r$ - neighbors of an entity $x _ { i }$ to be the set of entities $x _ { j }$ that are connected to $x _ { i }$ by an edge labeled $r$ , i.e., $r$ - ${ \cdot } n e i g h b o r s ( x ) \equiv \left\{ x _ { j } : ( x _ { i } , x _ { j } ) \in r \right\}$ . Extending this to relation sets, we define + +$$ +R \neg n e i g h b o r s ( X ) \equiv \left\{ x _ { j } : \exists r \in R , x _ { i } \in X \mathrm { ~ s o ~ t h a t ~ } ( x _ { i } , x _ { j } ) \in r \right\} +$$ + +Computing the $R$ -neighbors of an entity is a single-step reasoning operation: e.g., the answer to the question q =“what movies were produced or directed by Quentin Tarantino” is precisely the set $R$ -neighbors $( X )$ for $R = \{ p r o d u c e r \_ o f , w r i t e r \_ o f \}$ and $X = \{ Q u e n t i n \_ T a r a n t i n o \}$ . “Multi-hop” reasoning operations require nested $R$ -neighborhoods, e.g. if $R ^ { \prime } = \{ a c t o r { \_ } o f \}$ then $R ^ { \prime }$ -neighbors $R$ - neighbors $( X )$ ) is the set of actors in movies produced or directed by Quentin Tarantino. + +We would like to approximate the $R$ -neighbors computation with differentiable operations that can be performed on the vectors encoding the sets $X$ and $R$ . Let $\mathbf { X }$ encode a weighted set of entities $X$ , and let r encode a weighted set of relations. We first define $\mathbf { M } _ { R }$ to be a weighted mixture of the relation matrices for all relations in $R$ i.e., + +$$ +\mathbf { M } _ { R } \equiv ( \sum _ { k = 1 } ^ { N _ { R } } \mathbf { r } [ k ] \cdot \mathbf { M } _ { r _ { k } } ) +$$ + +We then define the relation-set following operation for $\boldsymbol { x }$ and $r$ as: + +$$ +f o l l o w ( \mathbf { x } , \mathbf { r } ) \equiv \mathbf { x } \mathbf { M } _ { R } = \mathbf { x } ( \sum _ { k = 1 } ^ { N _ { R } } \mathbf { r } [ k ] \cdot \mathbf { M } _ { r _ { k } } ) +$$ + +As we will show below, this differentiable numerical relation-set following operation can be used as a neural component to perform certain types of logical reasoning. In particular, $\operatorname { E q } 2$ corresponds closely to the logical $R$ -neighborhood operation, as shown by the claim below. + +Claim 1 The support of follow $\scriptstyle ( \mathbf { x } , \pmb { r } )$ is exactly the set of $R$ -neighbors( $X )$ . + +A proof and the implications of this are discussed in Appendix B. + +# 2.3 SCALABLE RELATION-SET FOLLOWING WITH A REIFIED KB + +Baseline implementations. Suppose the KB contains $N _ { R }$ relations, $N _ { E }$ entities, and $N _ { T }$ triples. Typically $\hat { N _ { R } } < \hat { N _ { E } } < \hat { N _ { T } } \ll \hat { N _ { E } ^ { 2 } }$ . As noted above, we implement each ${ { \bf { M } } _ { r } }$ as a sparse COO matrix, + +
StrategyDefinitionBatch?Space complexity# Operations
sp-dense matmuldense +or ⊙sparse +
naive mixingEq 1-2noO(Nr+NE+NR)10NR
late mixingEq3yesO(NT +bNE +bNR)NRNR0
reified KBEq 4yesO(bNr+bNE)310
+ +Table 2: Complexity of implementations of relation-set following, where $N _ { T }$ is the number of KB triples, $N _ { E }$ the number of entities, $N _ { R }$ the number of relations, and $b$ is batch size. + +so collectively these matrices require space $O ( N _ { T } )$ . Each triple appears in only one relation, so $\mathbf { M } _ { R }$ in Eq 1 is also size $O ( N _ { T } )$ . Since sparse-sparse matrix multiplication is not supported in Tensorflow we implement $\mathbf { x M } _ { R }$ using dense-sparse multiplication, so $\mathbf { X }$ must be a dense vector of size $O ( N _ { E } )$ , as is the output of relation-set following. Thus the space complexity of $f o l l o w ( \mathbf { x } , \mathbf { r } )$ is $O ( N _ { T } + N _ { E } + N _ { R } )$ , if implemented as suggested by $\operatorname { E q } 2$ . We call this the naive mixing implementation, and its complexity is summarized in Table 2. + +Because Tensorflow does not support general sparse tensor contractions, it is not always possible to extend sparse-matrix computations to minibatches. Thus we also consider a variant of naive mixing called late mixing, which mixes the output of many single-relation following steps, rather than mixing the KB itself: + +$$ +f o l l o w ( \mathbf { x } , \mathbf { r } ) = \sum _ { k = 1 } ^ { N _ { R } } ( \mathbf { r } [ k ] \cdot \mathbf { x } \mathbf { M } _ { r _ { k } } ) +$$ + +Unlike naive mixing, late mixing can be extended easily to a minibatches (see Appendix C). Let $b$ be the batch size and $\mathbf { X }$ be a minibatch of $b$ examples $\left[ \mathbf { x } _ { 1 } ; \ldots ; \mathbf { x } _ { b } \right]$ : then this approach leads to $N _ { R }$ matrices $\mathbf { X M } _ { k }$ , each of size $O ( b N _ { E } )$ . However, they need not all be stored at once, so the space complexity becomes $O ( b N _ { E } + b N _ { R } + N _ { T } )$ . An additional cost of late mixing is that we must now sum up $N _ { R }$ dense matrices. + +A reified knowledge base. While semantic parses for natural questions often use small sets of relations (often singleton ones), in learning there is substantial uncertainty about what the members of these small sets should be. Furthermore, realistic wide-coverage KBs have many relations—typically hundreds or thousands. This leads to a situation where, at least during early phases of learning, it is necessary to evaluate the result of mixing very large sets of relations. When many relations are mixed, late mixing becomes quite expensive (as experiments below show). + +An alternative is to represent each KB assertion $r _ { k } ( x _ { i } , x _ { j } )$ as a tuple $( i , j , k )$ where $i , j , k$ are the indices of $x _ { i } , x _ { j }$ , and $r _ { k }$ . There are $N _ { T }$ such triples, so for $\ell = 1 , \ldots , N _ { T }$ , let $( i _ { \ell } , j _ { \ell } , k _ { \ell } )$ denote the $\ell \cdot$ -th triple. We define these sparse matrices: + +$$ +\mathbf { M } _ { s u b j } [ \ell , m ] \equiv \left\{ \begin{array} { l l } { 1 \mathrm { ~ i f ~ } m = i \ell } & \mathbf { M } _ { o b j } [ \ell , m ] \equiv \left\{ \begin{array} { l l } { 1 \mathrm { ~ i f ~ } m = j \ell } & { \mathbf { M } _ { r e l } [ \ell , m ] \equiv \left\{ \begin{array} { l l } { 1 \mathrm { ~ i f ~ } m = k _ { \ell } } \\ { 0 \mathrm { ~ e l s e ~ } } & { } \end{array} \right. \right. } \end{array} \right. \end{array} +$$ + +Conceptually, $\mathbf { M } _ { s u b j }$ maps the index $\ell$ of the $\ell$ -th triple to its subject entity; $\mathbf { M } _ { o b j }$ maps $\ell$ to the object entity; and ${ { \bf { M } } _ { r e l } }$ maps $\ell$ to the relation. We can now implement the relation-set following as below, where $\odot$ is Hadamard product: + +$$ +f o l l o w \mathbf { ( x , r ) } = ( \mathbf { x M } _ { s u b j } ^ { T } \odot \mathbf { r M } _ { r e l } ^ { T } ) \mathbf { M } _ { o b j } +$$ + +Notice that $\mathbf { x M } _ { s u b j } ^ { T }$ are the triples with an entity in $\mathbf { X }$ as their subject, $\mathbf { r } \mathbf { M } _ { r e l } ^ { T }$ are the triples with a relation in $\mathbf { r }$ , and the Hadamard product is the intersection of these. The final multiplication by $\mathbf { M } _ { o b j }$ finds the object entities of the triples in the intersection. These operations naturally extend to minibatches (see Appendix). The reified KB has size $O ( N _ { T } )$ , the sets of triples that are intersected have size $O ( b N _ { T } )$ , and the final result is size $O ( b N _ { E } )$ , giving a final size of $O ( b N _ { T } + b N _ { E } )$ , with no dependence on $N _ { R }$ . + +Table 2 summarizes the complexity of these three mathematically equivalent but computationally different implementions. The analysis suggests that the reified KB is preferable if there are many relations, which is the case for most realistic ${ \mathrm { K B s } } ^ { 3 }$ . + +![](images/72604657a9eb5648313f468d1b90fc0311598bfc947064885ae8c79e2eab68cd.jpg) +Figure 1: Left and middle: inference time in queries/sec on a synthetic KB as size and number of relations is varied. Queries/sec is given as zero when GPU memory of 12Gb is exceeded. Right: speedups of reified KBs over the baseline implementations. + +Distributing a large reified KB. The reified KB representation is quite compact, using only six integers and three floats for each KB triple. However, since GPU memory is often limited, it is important to be able to distribute a KB across multiple GPUs. Although to our knowledge prior implementations of distributed matrix operations (e.g., (Shazeer et al., 2018)) do not support sparse matrices, sparse-dense matrix multiplication can be distributed across multiple machines. We thus implemented a distributed sparse-matrix implementation of reified $K B s$ . We distibuted the matrices that define a reified KB “horizontally”, so that different triple ids $\ell$ are stored on different GPUs. Details are provided in Appendix D. + +# 3 EXPERIMENTS + +# 3.1 SCALABILITY + +Like prior work (Cohen et al., 2017; De Raedt et al., 2007), we used a synthetic KB based on an $n$ -by- $\mathbf { \nabla } \cdot n$ grid to study scalability of inference. Every grid cell is an entity, related to its immediate neighbors via relations north, south, east, and west. The KB for an $n$ -by- $^ n$ grid thus has $O ( n ^ { 2 } )$ entities and $O ( n ^ { 2 } )$ triples. We measured the time to compute the 2-hop inference follow $( f o l l o w ( \mathbf { x } , \mathbf { r } ) , \mathbf { r } )$ for minibatches of $b = 1 2 8$ one-hot vectors, and report it as queries per second (qps) on a single GPU (e.g., $\mathrm { \ q p s { = } 1 } 2 8 0$ would mean a single minibatch requires $1 0 0 \mathrm { m s }$ ). We also compare to a key-value memory network (Miller et al., 2016), using an embedding size of 64 for entities and relations, where there is one memory entry for every triple in the KB. Further details are given in Appendix E. + +The results are shown Figure 1 (left and middle), on a log-log scale because some differences are very large. With only four relations (the leftmost plot), late mixing is about $3 \mathbf { x }$ faster than the reified KB method, and about $2 5 0 \mathrm { x }$ faster than the naive approach. However, for more than around 20 relations, the reified KB is faster (middle plot). As shown in the rightmost plot, the reified KB is $5 0 \mathrm { x }$ faster than late mixing with 1000 relations, and nearly $1 2 { , } 0 0 0 \mathrm { x }$ faster than the naive approach. + +With this embedding size, the speed of the key-value network is similar to the reified KB for only four relations, however it is about $7 \mathbf { x }$ slower for 50 relations and 10k entities. Additionally, the space needed to store a triple is much larger in a key-value network than the reified KB, so memory is exhausted when the KB exceeds 200,000 entities (with four relations), or when the KB exceeds 100 relations (with 10,000 entities.) The reified KB scales much better, and can handle $1 0 \mathrm { x }$ as many entities and $2 0 \mathrm { x }$ as many relations. + +# 3.2 MODELS USING REIFIED KBS + +As discussed below in Section 4, the reified KB is closely related to key-value memory networks, so it can be viewed as a more efficient implementation of existing neural modules, optimized for reasoning with symbolic KBs. However, being able to include an entire KB into a model can lead to a qualitative difference in model complexity, since it is not necessary to build machinery to retrieve from the KB. To illustrate this, below we present simple models for several tasks, each using the reified KB in different ways, as appropriate to the task. We consider two families of tasks: learning semantic parsers from denotations over a large KB, and learning to complete a KB. + +KBQA for multi-hop questions. MetaQA (Zhang et al., 2018) consists of 1.2M questions, evenly distributed into one-hop, two-hop, and three-hop questions. (E.g, the question “who acted in a movie directed by Quentin Tarantino?” is a two-hop question.) The accompanying KB (Miller et al., 2016) contains 43k entities and 186k triples. Past work treated one-hop, two-hop and three-hop questions separately, and the questions are labeled with the entity ids for the “seed entities” that begin the reasoning chains (e.g., the question above would be tagged with the id of the entity for Quentin Tarantino). + +Using a reified KB for reasoning means the neural model only needs to predict the relations used at each stage in the reasoning process. For each step of inference we thus compute relation sets $\mathbf { r } ^ { t }$ using a differentiable function of the question, and then chain them together with relation-set following steps. Letting $\mathbf { x } ^ { 0 }$ be the set of entities associated with $q$ , the model we use is: + +$$ +\mathrm { f o r } t = 1 , 2 , 3 ; ~ { \bf r } ^ { t } = f ^ { t } ( q ) ; ~ { \bf x } ^ { t } = f o l l o w ( { \bf x } ^ { t - 1 } , { \bf r } ^ { t } ) +$$ + +where follow $\left( \mathbf { x } ^ { t - 1 } , \mathbf { r } ^ { t } \right)$ is implemented with a reified KB as described in Eq. 4. + +To predict an answer on a $T$ -hop subtask, we compute the softmax of the appropriate set $\mathbf { x } ^ { T }$ . We used cross entropy loss of this set against the desired answer, represented as a uniform distribution over entities in the target set. Each function $f ^ { t } ( q )$ is a different linear projection of a common encoding for $q$ , specifically a mean-pooling of the tokens in $q$ encoded with a pre-trained 128-dimensional word2vec model (Mikolov et al., 2013). The full KB was loaded into a single GPU in our experiments. + +It is interesting to contrast this simple model with the one proposed by Zhang et al. (2018). The “module for logic reasoning” they propose in Section 3.4 is fairly complex, with a description that requires a figure, three equations, and a page of text; furthermore, training this model requires constructing an example-dependent subgraph for each training instance. In our model, the “logic reasoning” (and all interaction with the KB) has been encapsulated completely in the $\ell o l l o w ( \mathbf { x } , \mathbf { r } )$ operation—which, as we will demonstrate below, can be re-used for many other problems. Encapsulating all KB reasoning with a single scalable differentiable neural module greatly simplifies modeling: in particular, the problem of learning a structured KB query has been reduced to learning a few differentiable functions of the question, one for each reasoning “hop”. The learned functions are also interpretable: they are mixtures of relation identifiers which correspond to soft weighted sets of relations, which in turn softly specify which KB relation should be used in each stage of the reasoning process. Finally, optimization is simple, as the loss on predicted denotations can be back-propagated to the relation-prediction functions. + +A similar modeling strategy is used in all the other models presented below. + +KBQA on FreeBase. WebQuestionsSP (Yih et al., 2016) contains 4737 natural language questions, all of which are answerable using FreeBase (Bollacker et al., 2008), a large open-domain KB. Each question $q$ is again labeled with the entities $\mathbf { X }$ that appear in it. + +FreeBase contains two kinds of nodes: real-world entities, and compound value types (CVTs), which represent non-binary relationships or events (e.g., a movie release event, which includes a movie id, a date, and a place.) Real-world entity nodes can be related to each other or to a CVT node, but CVT nodes are never directly related to each other. In this dataset, all questions can be answered with 1- or 2-hop chains, and all 2-hop reasoning chains pass through a CVT entity; however, unlike MetaQA, the number of hops is not known. Our model thus derives from $q$ three relation sets and then uniformly mixes both potential types of inferences: + +$$ +\begin{array} { r l } & { \mathbf { r } _ { \mathrm { E E } } = f _ { \mathrm { E E } } ( q ) ; \mathbf { r } _ { \mathrm { E C V T } } = f _ { \mathrm { E C V T } } ( q ) ; \mathbf { r } _ { \mathrm { C V T E } } = f _ { \mathrm { C V T E } } ( q ) } \\ & { \qquad \hat { \mathbf { a } } = f o l l o w ( f o l l o w ( \mathbf { x } , \mathbf { r } _ { \mathrm { E C V T } } ) , \mathbf { r } _ { \mathrm { C V T E } } ) + f o l l o w ( \mathbf { x } , \mathbf { r } _ { \mathrm { E E } } ) } \end{array} +$$ + +We again apply a softmax to $\hat { \mathbf { a } }$ and use cross entropy loss, and $f _ { \mathrm { E \to E } }$ , $f _ { \mathrm { E C V T } }$ , and $f _ { \mathrm { C V T E } }$ are again linear projections of a word2vec encoding of $q$ . We used a subset of Freebase with 43.7 million facts and 12.9 million entities, containing all facts in Freebase within 2-hops of entities mentioned in any question, excluding paths through some very common entities. We split the KB across three 12-Gb GPUs, and used a fourth GPU for the rest of the model. + +This dataset is a good illustration of the scalability issues associated with prior approaches to including a KB in a model, such as key-value memory networks. A key-value network can be trained to implement something similar to relation-set following, if it stores all the KB triples in memory. If we assume 64-float embeddings for the 12.9M entities, the full KB of 43.7M facts would be 67Gb in size, which is impractical. Additionally performing a softmax over the 43.7M keys would be prohibitively expensive, as shown by the experiments of Figure 1. This is the reason why in standard practice with key-value memory networks for KBs, the memory is populated with a heuristically subset of the KB, rather than the full KB. We compare experimentally to this approach in Table 3. + +Knowledge base completion. Following Yang et al. (2017) we treat KB completion as an inference task, analogous to KBQA: a query $q$ is a relation name and a head entity $\mathbf { X }$ , and from this we predict a set of tail entities. We assume the answers are computed with the disjunction of multiple inference chains of varying length. Each inference chain has a maximum length of $T$ and we build $N$ distinct inference chains in total, using this model (where $\mathbf { x } _ { i } ^ { 0 } = \mathbf { x }$ for every chain $\romannumeral 1$ ): + +$$ +\mathrm { o r } i = 1 , \dots , N \mathrm { ~ a n d ~ } t = 1 , \dots , T ; \quad \mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \quad \mathbf { x } _ { i } ^ { t } = f o l l o w ( \mathbf { x } _ { i } ^ { t - 1 } , \mathbf { r } _ { i } ^ { t } ) + \mathbf { x } _ { i } ^ { t - 1 } +$$ + +The final output is a softmax of the mix of all the $\mathbf { x } _ { i } ^ { T }$ ’s: i.e., we let $\begin{array} { r } { \hat { \mathbf { a } } = s o f t m a x ( \sum _ { i \in \{ 1 \ldots N \} } \mathbf { x } _ { i } ^ { T } ) } \end{array}$ . The update $\mathbf { x } _ { i } ^ { t + 1 } = f o l l o w ( \mathbf { x } _ { i } ^ { t } , \mathbf { r } _ { i } ^ { t } ) + \mathbf { x } _ { i } ^ { t }$ gives the model access to outputs of all chains of length less than $t$ (for more intuition see Appendix E.) The encoding of $q$ is based on a lookup table, and each $f _ { i } ^ { t }$ is a learned linear transformation of $q$ ’s embedding.4 + +An encoder-decoder architecture for varying inferential structures. To explore performance on more complex reasoning tasks, we generated simple artificial natural-language sentences describing longer chains of relationships on a 10-by-10 grid. For this task we used an encoder-decoder model which emits chains of relation-set following operations. The question is encoded with the final hidden state of an LSTM, written here $ { \mathbf { h } } ^ { 0 }$ . We then generate a reasoning chain of length up to $T$ using a decoder LSTM. At iteration $t$ , the decoder emits a scalar probability of “stopping”, $p ^ { t }$ , and a distribution over relations to follow $\mathbf { r } ^ { t }$ , and then, as we did for the KBQA tasks, sets $\mathbf { \bar { x } } ^ { t } = f o l l o w ( \mathbf { x } ^ { t - 1 } , \mathbf { r } ^ { t } )$ . Finally the decoder updates its hidden state to $\mathbf { h } ^ { t }$ using an LSTM cell that “reads” the “input” $\mathbf { r } ^ { i - 1 }$ . For each step $t$ , the model thus contains the steps + +$$ +p ^ { t } = f _ { p } ( \mathbf { h } ^ { t - 1 } ) ; ~ \mathbf { r } ^ { t } = f _ { r } ( \mathbf { h } ^ { t - 1 } ) ; ~ \mathbf { x } ^ { t } = f o l l o w ( \mathbf { x } ^ { t - 1 } , \mathbf { r } ^ { t } ) ; ~ \mathbf { h } ^ { t } = \mathrm { L S T M } ( \mathbf { h } ^ { t - 1 } , \mathbf { r } ^ { t - 1 } ) +$$ + +The final predicted location is a mixture of all the $\mathbf { X } _ { t }$ ’s weighted by the probability of stopping $p _ { t }$ at iteration $t$ , i.e., $\begin{array} { r } { \hat { \mathbf { a } } = s o f t m a x ( \sum _ { t = 1 } ^ { T } \mathbf { x } ^ { t } \cdot p ^ { t } \prod _ { t ^ { \prime } < t } ( 1 - p ^ { t ^ { \prime } } ) ) } \end{array}$ . The function $f _ { r }$ is a softmax over a linear projection, and $f _ { p }$ is a logistic function. In the experiments, we trained on 360,000 sentences requiring between 1 and $T$ hops and tested on an additional 12,000 sentences. + +Experimental results. We next consider the performance of these models relative to strong baselines for each task. We emphasize our goal here is not to challenge the current state of the art on any particular benchmark, and clearly there are many ways the models of this paper could be improved. (For instance, our question encodings are based on word2vec, rather than contextual encodings (Devlin et al., 2018), and likewise relations are predicted with simple linear classifiers, rather than, say, attention queries over some semantically meaningful space, such as might be produced with language models or KB embedding approaches (Bordes et al., 2013)). Rather, our contribution is to present a generally useful scheme for including symbolic KB reasoning into a model, and we have thus focused on describing simple, easily understood models that do this for several tasks. However, it is important to confirm experimentally that the reified KB models “work”—e.g., that they are amenable to use of standard optimizers, etc. + +Performance (using Hits $@ .$ 1) of our models on the KBQA tasks is shown in Table 3. For the nonsynthetic tasks we also compare to a Key-Value Memory Network (KV-Mem) baseline (Miller et al., 2016). For the smaller MetaQA dataset, KV-Mem is initialized with all facts within 3 hops of the query entities, and for WebQuestionsSP it is initialized by a random-walk process seeded by the query entities (see (Sun et al., 2018; Zhang et al., 2018) for details). ReifKB consistently outperforms the baseline, dramatically so for longer reasoning chains. The synthetic grid task shows that there is very little degradation as chain length increases, with $\mathrm { H i t s } @ 1$ for 10 hops still $8 9 . 7 \%$ . It also illustrates the ability to predict entities in a KB, as well as relations. + +We also compare these results to two much more complex architectures that perform end-to-end question answering in the same setting used here: VRN (Zhang et al., 2018), GRAFT-Net (Sun et al., 2018), and PullNet (Sun et al., 2019). All three systems build question-dependent subgraphs of the + +Table 3: Hits $@ 1$ on the KBQA datasets. Results for KV-Mem and VRN on MetaQA are from (Zhang et al., 2018); results for GRAFT-Net, PullNet and KV-Mem on WebQSP are from (Sun et al., 2018) and (Sun et al., 2019). + +
ReifKB (ours)ReifKB +maskKV-Mem (baseline)VRNGRAFT- NetPullNetnon-differentiable components of architectures
WebQSP MetaQA52.746.767.868.1KV-Meminitial memory retrieval
1-hop96.295.897.597.097.0
2-hop81.195.425.189.994.899.9VRNquestion-specific
3-hop72.379.710.162.577.291.4GRAFTNetsubgraph retrieval
Grid 5-hop98.4PullNetall iterative retrievals
10-hop89.71ReifKB(ours)none
+ +KB, and then use graph CNN-like methods (Kipf & Welling, 2016) to “reason” with these graphs. Although not superior, ReifKB model is competitive with these approaches, especially on the most difficult 3-hop setting. + +A small extension to this model is to mask the seed entities out of the answers (see Appendix E). This model (given as ReifKB $^ +$ mask) has better performance than GRAFT-Net on 2-hop and 3-hop questions. + +For KB completion, we evaluated the model on the NELL-995 dataset (Xiong et al., 2017) which is paired with a KB with $1 5 4 \mathrm { k }$ facts, $7 5 \mathrm { k }$ entities, and 200 relations. On the left of Table 4 we compare our model with three popular embedding approaches (results are from Das et al. (2017)). The reified KB model outperforms DistMult (Yang et al., 2014), is slightly worse than ConvE (Dettmers et al., 2018), and is comparable to ComplEx (Trouillon et al., 2017). + +The competitive performance of the ReifKB model is perhaps surprising, since it has many fewer parameters than the baseline models—only one float and two integers per KB triple, plus a small number of parameters to define the $f _ { i } ^ { t }$ functions for each relation. The ability to use fewer parameters is directly related to the fact that our model directly uses inference on the existing symbolic $K B$ in its model, rather than having to learn embeddings that approximate this inference. Or course, since the KB is incomplete, some learning is still required, but learning is quite different: the system learns logical inference chains in the incomplete KB that approximate a target relation. In this setting for KBC, the ability to perform logical inference “out of the box” appears to be very advantageous. + +Another relative disadvantage of KB embedding methods is that KB embeddings are generally transductive—they only make predictions for entities seen in training. As a non-transductive baseline, we also compared to the MINERVA model, which uses reinforcement learning (RL) methods to learn how to traverse a KB to find a desired answer. Although RL methods are less suitable as “neural modules”, MINERVA is arguably a plausible competitor to end-to-end learning with a reified KB. + +MINERVA slightly outperforms our simple KB completion model on the NELL-995 task. However, unlike our model, MINERVA is trained to find a single answer, rather than trained to infer a set of answers. To explore this difference, we compared to MINERVA on the grid task under two conditions: (1) the KB relations are the grid directions north, south, east and west, so the output of the target chain is always a single grid location, and (2) the KB relations also include a “vertical move” (north or south) and a “horizontal move” (east or west), so the result of the target chain can be a set of locations. As expected MINERVA’s performance drops dramatically in the second case, from $9 9 . 3 \%$ + +Table 4: Left: Hits $@ 1$ and Hits $@ 1 0$ for KB completion on NELL 995. Starred KB completion methods are transductive, and do not generalize to entities not seen in training. Right: Comparison to MINERVA on several tasks for Hits $@ 1$ . + +
NELL-995NELL-995ReifKB (Ours) 64.1MINERVA 66.3
H@1H@10
ReifKB (Ours)64.182.4Grid with seed entity
DistMult*61.079.510-hop NSEW98.999.3
ComplEx*61.282.710-hop NSEW-VH73.634.4
ConvE*67.286.4MetaQA 3-hop72.341.7
+ +Table 5: Left, time to run 10K examples for KBs of different size. Right, time for 10k examples vs Hits $@ 1$ performance for ReifKB compared to three baselines on MetaQA-3hop questions. + +
●Reif KB● KV-mem● GRAFT-Net●PulINet
NELL-995MetaQA-3hopWebQuestionsSP100
#Facts154,213196,45343,724,17575
#Entities75,49243,23012,942,79850
#Relations200961625
Time (seconds)44.372.618200 250 500
+ +Hits $@ 1$ to $34 . 4 \%$ , while our model’s performance is more robust. MetaQA answers can also be sets, so we also modified MetaQA so that MINERVA could be used (by making the non-entity part of the sentence the “relation” input and the seed entity the “start node” input) and noted a similarly poor performance for MINERVA. These results are shown on the right of Table 4. + +In Tables 5 we compare the training time of our model with minibatch size of 10 on NELL-995, MetaQA, and WebQuestionsSP. With over 40 million facts and nearly 13 million entities from Freebase, it takes less than 10 minutes to run one epoch over WebQuestionsSP (with 3097 training examples) on four P100 GPUs. In the accompanying plot, we also summarize the tradeoffs between accuracy and training time for our model and three baselines on the MetaQA 3-hop task. (Here ideal performance is toward the upper left of the plot). The state-of-the-art PullNet Sun et al. (2019) system, which uses a learned method to incrementally retrieve from the KB, is about 15 times slower than the reified KB system. GRAFT-Net is only slightly less accurate, but also only slightly faster: recall that GRAFT-Net uses a heuristically selected subset (of up to 500 triples) from the KB for each query, while our system uses the full KB. Here the full KB is about 400 times as large as the question-specific subset used by GRAFT-Net. A key-value memory baseline including the full KB is nearly three times as slow as our system, while also performing quite poorly. + +# 4 RELATED WORK + +The relation-set following operation using reified KBs is implemented in an open-source package called NQL, for neural query language. NQL implements a broader range of operations for manipulating KBs, which are described in a companion paper (Cohen et al., 2019). This paper focuses on implementation and evaluation of the relation-set following operation with different KB representations, issues not covered in the companion paper. + +TensorLog (Cohen et al., 2017), a probabilistic logic which also can be compiled to Tensorflow, and hence is another differentiable approach to neuralizing a KB. TensorLog is also based on sparse matrices, but does not support relation sets, making it unnatural to express the models shown in this paper, and does not use the more efficient reified KB representation. The differentiable theorem prover (DTP) is another differentiable logic (Rocktäschel & Riedel, 2017), but DPT appears to be much less scalable: it has not been applied to KBs larger than a few thousand triples. The Neural ILP system (Yang et al., 2017) uses approaches related to late mixing together with an LSTM controller to perform KB completion and some simple QA tasks, but it is a monolithic architecture focused on rule-learning, while in contrast we propose a re-usable neural component, which can be used in as a component in many different architectures, and a scalable implementation of this. It has also been reported that neural ILP does not scale to the size of the NELL995 task (Das et al., 2017). + +The goals of this paper are related to KB embedding methods, but distinct. In KB embedding, models are generally fully differentiable, but it is not considered necessary (or even desirable) to accurately match the behavior of inference in the original KB. Being able to construct a learned approximation of a symbolic KB is undeniably useful in some contexts, but embedded KBs also have many disadvantages. In particular, they are much larger than a reified KB, with many more learned parameters—typically a long dense vector for every KB entity. Embedded models are typically evaluated by their ability to score a single triple accurately, and many models are not capable of executing multi-step KB inferences efficiently; further, models that do allow multi-step inference are known to produce cascaded errors on long reasoning chains (Guu et al., 2015; Hamilton et al., 2018). In contrast we focus on accurate models of reasoning in a symbolic KB, which requires consideration of novel scalability issues associated with sparse matrice representations. + +Mathematically, our definition of relation-set following is much like the bilinear model for path following from Guu et al. (2015); however, we generalize this to path queries that include weighted sets of relations, allowing the relations in paths to be learned. Similar differences apply to the work of Hamilton et al. (2018), which extends the work of Guu et al. (2015) to include intersection operations. The vector representation used here for weighted sets in a reified KB makes intersection trivial to implement, as intersection corresponds to Hadamard product. Conveniently set union also corresponds to vector sum, and the complement of $X$ is ${ \bf 1 } - { \bf x }$ , which is perhaps why only a single additional neural operation is needed to support the KB reasoning tasks needed for the five benchmark tasks considered here. + +Neural architectures like memory networks (Weston et al., 2014), or other architectures that use attention over some data structure approximating assertions (Andreas et al., 2016; Gupta & Lewis, 2018) can be used to build soft versions of relation-set following: however, they also do not scale well to large KBs, so they are typically used either with a non-differentiable ad hoc retrieval mechanism, or else in cases where a small amount of information is relevant to a question (Weston et al., 2015; Zhong et al., 2017). Similarly graph CNNs (Kipf & Welling, 2016) also can be used for reasoning, and often do use sparse matrix multiplication, but again existing implementations have not been scaled to tens of millions of triples/edges or millions of entities/graph nodes. Additionally, while graph CNNs have been used for reasoning tasks, the formal connection between them and logical reasoning remains unclear, whereas there is a precise connection between relation-set following and inference. + +Reinforcement learning (RL) methods have been used to learn mappings from natural-language questions to non-differentiable logical representations (Liang et al., 2016; 2018) and have also been applied to KB completion tasks (Das et al., 2017; Xiong et al., 2017). Above we compared experimentally to MINERVA, one such method; however, the gradient-based approaches enabled by our methods are generally preferred as being easier to implement and tune on new problems, and easier to combine in a modular way with other architectural elements. + +# 5 CONCLUSIONS + +We introduced here a novel way of representing a symbolic knowledge base (KB) called a sparsematrix reified KB. This representation enables neural modules that are fully differentiable, faithful to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable enough to use with realistically large KBs. In a reified KB, all KB relations are represented with three sparse matrices, which can be distributed across multiple GPUs, and symbolic reasoning on realistic KBs with many relations is much faster than with naive implementations—more than four orders of magnitude faster on synthetic-data experiments compared to naive sparse-matrix implementations. + +This new architectural component leads to radically simpler architectures for neural semantic parsing from denotations and KB completion—in particular, they make it possible to learn neural KBQA models in a completely end-to-end way, mapping from text to KB entity sets, for KBs with tens of millions of triples and entities and hundreds of relations. + +# ACKNOWLEDGMENTS + +The authors are greatful to comments and suggestions from Fernando Peireira, Bhuwan Dhingra, and many other colleagues on earlier versions of this work. + +# REFERENCES + +Martín Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Implementation ({OSDI} 16), pp. 265–283, 2016. + +Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48, 2016. + +Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from question-answer pairs. In Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing, pp. 1533–1544, 2013. + +Kurt Bollacker, Colin Evans, Praveen Paritosh, Tim Sturge, and Jamie Taylor. Freebase: a collaboratively created graph database for structuring human knowledge. In Proceedings of the 2008 ACM SIGMOD international conference on Management of data, pp. 1247–1250. AcM, 2008. + +Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko. Translating embeddings for modeling multi-relational data. In Advances in neural information processing systems, pp. 2787–2795, 2013. + +William W Cohen, Fan Yang, and Kathryn Rivard Mazaitis. Tensorlog: Deep learning meets probabilistic DBs. arXiv preprint arXiv:1707.05390, 2017. + +William W. Cohen, Matthew Siegler, and R. Alex Hofer. Neural query language: A knowledge base query language for Tensorflow. CoRR, abs/1905.06209, 2019. URL http://arxiv.org/ abs/1905.06209. + +Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishnamurthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning over paths in knowledge bases using reinforcement learning. arXiv preprint arXiv:1711.05851, 2017. + +Pradeep Dasigi, Matt Gardner, Shikhar Murty, Luke Zettlemoyer, and Eduard Hovy. Iterative search for weakly supervised semantic parsing. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 2669–2680, Minneapolis, Minnesota, June 2019. Association for Computational Linguistics. doi: 10.18653/v1/N19-1273. URL https: //www.aclweb.org/anthology/N19-1273. + +Luc De Raedt, Angelika Kimmig, and Hannu Toivonen. Problog: A probabilistic Prolog and its application in link discovery. In IJCAI, volume 7, pp. 2462–2467. Hyderabad, 2007. + +Tim Dettmers, Pasquale Minervini, Pontus Stenetorp, and Sebastian Riedel. Convolutional 2d knowledge graph embeddings. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. + +Catherine Finegan-Dollak, Jonathan K Kummerfeld, Li Zhang, Karthik Ramanathan, Sesh Sadasivam, Rui Zhang, and Dragomir Radev. Improving text-to-SQL evaluation methodology. arXiv preprint arXiv:1806.09029, 2018. + +Nitish Gupta and Mike Lewis. Neural compositional denotational semantics for question answering. CoRR, abs/1808.09942, 2018. URL http://arxiv.org/abs/1808.09942. + +Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. arXiv preprint arXiv:1506.01094, 2015. + +Will Hamilton, Payal Bajaj, Marinka Zitnik, Dan Jurafsky, and Jure Leskovec. Embedding logical queries on knowledge graphs. In Advances in Neural Information Processing Systems, pp. 2026– 2037, 2018. + +Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016. + +Chen Liang, Jonathan Berant, Quoc Le, Kenneth D Forbus, and Ni Lao. Neural symbolic machines: Learning semantic parsers on freebase with weak supervision. arXiv preprint arXiv:1611.00020, 2016. + +Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented policy optimization for program synthesis and semantic parsing. In Advances in Neural Information Processing Systems, pp. 9994–10006, 2018. + +Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in neural information processing systems, pp. 3111–3119, 2013. + +Alexander H. Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. CoRR, abs/1606.03126, 2016. URL http://arxiv.org/abs/1606.03126. + +Dipendra Misra, Ming-Wei Chang, Xiaodong He, and Wen-tau Yih. Policy shaping and generalized update equations for semantic parsing from denotations. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 2442–2452, 2018. + +Panupong Pasupat and Percy Liang. Inferring logical forms from denotations. arXiv preprint arXiv:1606.06900, 2016. + +Tim Rocktäschel and Sebastian Riedel. End-to-end differentiable proving. In Advances in Neural Information Processing Systems, pp. 3788–3800, 2017. + +Peter Shaw, Philip Massey, Angelica Chen, Francesco Piccinno, and Yasemin Altun. Generating logical forms from graph representations of text and entities. arXiv preprint arXiv:1905.08407, 2019. + +Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool, Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, Ryan Sepassi, and Blake A. Hechtman. Mesh-tensorflow: Deep learning for supercomputers. CoRR, abs/1811.02084, 2018. URL http://arxiv.org/abs/1811.02084. + +Haitian Sun, Bhuwan Dhingra, Manzil Zaheer, Kathryn Mazaitis, Ruslan Salakhutdinov, and William W Cohen. Open domain question answering using early fusion of knowledge bases and text. EMNLP, 2018. + +Haitian Sun, Tania Bedrax-Weiss, and William W Cohen. Pullnet: Open domain question answering with iterative retrieval on knowledge bases and text. arXiv preprint arXiv:1904.09537, 2019. + +Théo Trouillon, Christopher R Dance, Éric Gaussier, Johannes Welbl, Sebastian Riedel, and Guillaume Bouchard. Knowledge graph completion via complex tensor factorization. The Journal of Machine Learning Research, 18(1):4735–4772, 2017. + +Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint arXiv:1410.3916, 2014. + +Jason Weston, Antoine Bordes, Sumit Chopra, Alexander M Rush, Bart van Merriënboer, Armand Joulin, and Tomas Mikolov. Towards ai-complete question answering: A set of prerequisite toy tasks. arXiv preprint arXiv:1502.05698, 2015. + +Wenhan Xiong, Thien Hoang, and William Yang Wang. Deeppath: A reinforcement learning method for knowledge graph reasoning. arXiv preprint arXiv:1707.06690, 2017. + +Bishan Yang, Wen-tau Yih, Xiaodong He, Jianfeng Gao, and Li Deng. Embedding entities and relations for learning and inference in knowledge bases. arXiv preprint arXiv:1412.6575, 2014. + +Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge base reasoning. In Advances in Neural Information Processing Systems, pp. 2319–2328, 2017. + +Wen-tau Yih, Ming-Wei Chang, Xiaodong He, and Jianfeng Gao. Semantic parsing via staged query graph generation: Question answering with knowledge base. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), volume 1, pp. 1321–1331, 2015. + +Wen-tau Yih, Matthew Richardson, Chris Meek, Ming-Wei Chang, and Jina Suh. The value of semantic parse labeling for knowledge base question answering. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), volume 2, pp. 201–206, 2016. + +Yuyu Zhang, Hanjun Dai, Zornitsa Kozareva, Alexander J Smola, and Le Song. Variational reasoning for question answering with knowledge graph. In AAAI, 2018. + +Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from natural language using reinforcement learning. arXiv preprint arXiv:1709.00103, 2017. + +# A ADDITIONAL BACKGROUND AND EXTENSIONS + +KBs, entities, and relations, and types. In the more general case, a KB consists of entities, relations, and types. Again use $x$ to denote an entity and $r$ to denote a relation. We also assume each entity $x$ has a type, written $t y p e ( x )$ , and let $N _ { \tau }$ denote the number of entities of type $\tau$ . Each entity $x$ in type $\tau$ has a unique index $i n d e x _ { \tau } ( x )$ , which is an integer between 1 and $N _ { \tau }$ . We write $x _ { \tau , i }$ for the entity that has index $i$ in type $\tau$ , or $x _ { i }$ if the type is clear from context. + +Every relation $r$ has a subject type $\tau _ { s u b j }$ and an object type $\tau _ { o b j }$ , which constrain the types of $x$ and $x ^ { \prime }$ for any pair $( x , x ^ { \prime } ) \in r$ . Hence $r$ can be encoded as a subset of $\{ 1 , \dots , N _ { \tau _ { s u b j } } \} \times \{ 1 , \dots , N _ { \tau _ { o b j } } \}$ Relations with the same subject and object types are called type-compatible. + +Our differentiable operations are based on typed weighted sets, where again each element $x$ of weighted set $X$ is associated with a non-negative real number, written $\omega \| x \in X ]$ , and we define $\omega \bar { \left\| { \boldsymbol { x } } \in { \boldsymbol { X } } \right\| } \equiv 0$ for all $x \not \in X$ . A set $X$ has a type $t y p e ( X ) = \tau$ , and all members of $X$ must be entities of type $\tau$ . + +We also assume every relation $r$ in a KB is associated with an entity $x _ { r }$ , and hence, an index and a type. Sets of relations $R$ are allowed only if all members are type-compatible. For example $R = \{ w r i t e r \_ o f , d i r e c t o r \_ o f \}$ might be a set of type-compatible relations. + +A weighted set $X$ of type $\tau$ can be encoded as an entity-set vector $\mathbf { x } \in \mathbb { R } ^ { N _ { \tau } }$ , where the $i$ -th component of $\mathbf { X }$ is the weight of the $i$ -th entity of that type in the set $X$ : e.g., $\mathbf { x } [ i n d e x _ { \tau } ( x ) ] = { \boldsymbol { \omega } } [ x \in X ]$ . We also use $t y p e ( \mathbf { x } )$ to denote the type $\tau$ of the set encoded by $\mathbf { X }$ . + +A relation $r$ with subject type $\tau _ { 1 }$ and object type $\tau _ { 2 }$ can be encoded as a relation matrix ${ \mathbf { M } } _ { r } \in { \mathbf { \Omega } }$ $\mathbb { R } ^ { N _ { \tau _ { 1 } } \times N _ { \tau _ { 2 } } }$ . + +Background on sparse matrices. A COO encoding consists of a $N _ { r } \times 2$ matrix $\mathbf { I n d } _ { r }$ containing pairs of entity indices, and a parallel vector $\mathbf { w } _ { r } \in \mathbb { R } ^ { \widetilde { N } _ { r } }$ containing the weights of the corresponding entity pairs. In this encoding, if $( i , j )$ is row $k$ of Ind, then $\mathbf { M } _ { r } [ i , j ] = \mathbf { w } _ { r } [ k ]$ , and if $( i , j )$ does not appear in $\mathbf { I n d } _ { r }$ , then $\mathbf { M } [ i , j ]$ is zero. + +Extension to soft KBs. In the paper, we assume the non-zero weights in a relation matrix ${ { \bf { M } } _ { r } }$ are all equal to 1.0. This can be relaxed: if assertions in a KB are associated with confidences, then this confidence can be stored in ${ { \bf { M } } _ { r } }$ . In this case, the reified KB must be extended to encode the weight for a triple: we find it convenient to redefine ${ { \bf { M } } _ { r e l } }$ to hold that weight. In particular if the weight for the the $\ell$ -th triple $r _ { k } ( x _ { i } , x _ { j } )$ is $w _ { \ell }$ , then we let + +$$ +\mathbf { M } _ { r e l } [ \ell , m ] \equiv { \left\{ \begin{array} { l l } { w _ { \ell } \ \mathrm { i f } \ m = k _ { \ell } } \\ { 0 \ \mathrm { e l s e } } \end{array} \right. } +$$ + +# B PROOF OF CLAIM 1 + +Claim 1 The support of follow $\scriptstyle ( \mathbf { x } , \pmb { r } )$ is exactly the set of R-neighbors( $X )$ . + +To better understand this claim, let $\mathbf { z } = f o l l o w ( \mathbf { x } , \mathbf { r } )$ . The claim states $\mathbf { z }$ can approximate the $R$ neighborhood of any hard sets $R , X$ by setting to zero the appropriate components of $\mathbf { X }$ and $\mathbf { r }$ . It is also clear that $\mathbf { z } [ j ]$ decreases when one decreases the weights in r of the relations that link $x _ { j }$ to entities in $X$ , and likewise, $\mathbf { z } [ j ]$ decreases if one decreases the weights of the entities in $X$ that are linked to $x _ { j }$ via relations in $R$ , so there is a smooth, differentiable path to reach this approximation. + +More formally, consider first a matrix ${ { \bf { M } } _ { r } }$ encoding a single binary relation $r$ , and consider the vector $\mathbf { x } ^ { \prime } = \mathbf { x } \mathbf { M } _ { r }$ . As weighted sets, $X$ and $r$ have non-negative entries, so clearly for all $i$ , + +$$ +\mathbf { x } ^ { \prime } [ j ] \neq 0 \mathrm { ~ i f f ~ } \exists j : \mathbf { M } _ { r } [ i , j ] \neq 0 \land \mathbf { x } [ i ] \neq 0 +$$ + +and so if $\mathbf { r }$ is a one-hot vector for the set $\{ r \}$ , then the support of $f o l l o w ( \mathbf { x } , \mathbf { r } )$ is exactly the set $r$ -neighbors $( X )$ . Finally note that the mixture $\mathbf { M } _ { R }$ has the property that ${ \bf M } _ { R } [ i ( e _ { 1 } ) , i ( e _ { 2 } ) ] > 0$ exactly when $e _ { 1 }$ is related to $e _ { 2 }$ by some relation $r \in R$ . + +The major problem with naive mixing is that, in the absence of general sparse tensor contractions, it is difficult to adapt to mini-batches—i.e., a setting in which $\mathbf { X }$ and $\mathbf { r }$ are replaced with matrices $\mathbf { X }$ and $\mathbf { R }$ with minibatch size $b$ . An alternative strategy is late mixing, which mixes the output of many single-relation following steps, rather than mixing the KB itself: + +$$ +f o l l o w ( { \mathbf { X } } , { \mathbf { R } } ) = \sum _ { k = 1 } ^ { N _ { R } } ( { \mathbf { R } } [ : , k ] \cdot { \mathbf { X } } { \mathbf { M } } _ { k } ) +$$ + +Here $\mathbf { R } [ : , k ]$ , the $k$ -th column of $\mathbf { R }$ , is “broadcast” to element of the matrix $\mathbf { X M } _ { k }$ . As noted in the body of the text, while there are $N _ { R }$ matrices $\mathbf { X M } _ { k }$ , each of size $O ( b N _ { E } )$ , they need not all be stored at once, so the space complexity becomes $O ( b N _ { E } + b N _ { R } + N _ { T } )$ ; however we must now sum up $N _ { R }$ dense matrices. + +The implementation of relation-set following for the reified KB can be straightforwardedly extended to a minibatch: + +$$ +f o l l o w ( \mathbf { X } , \mathbf { R } ) = ( \mathbf { X } \mathbf { M } _ { s u b j } ^ { T } \odot \mathbf { R } \mathbf { M } _ { r e l } ^ { T } ) \mathbf { M } _ { o b j } +$$ + +# D DISTRIBUTED MATRIX MULTIPLICATION + +Matrix multiplication $\mathbf { x M }$ was distributed as follows: $\mathbf { X }$ can be split into a “horizontal stacking” of $m$ submatrices, which we write as $\left[ \mathbf { x } _ { 1 } ; \ldots ; \mathbf { x } _ { m } \right]$ , and $\mathbf { M }$ can be similarly partitioned into $m ^ { 2 }$ submatrices. We then have the result that + +$$ +\mathbf { x M } = [ \mathbf { x } _ { 1 } ; \mathbf { x } _ { 2 } ; \ldots ; \mathbf { x } _ { m } ] \left[ { \begin{array} { c c c c } { \mathbf { M } _ { 1 , 1 } } & { \mathbf { M } _ { 1 , 2 } } & { \ldots } & { \mathbf { M } _ { 1 , m } } \\ { \vdots } & { \vdots } & { } & { \vdots } \\ { \mathbf { M } _ { m , 1 } } & { \mathbf { M } _ { m , 2 } } & { \ldots } & { \mathbf { M } _ { m , m } } \end{array} } \right] = \left[ ( \sum _ { i = 1 } ^ { m } \mathbf { x } _ { 1 } \mathbf { M } _ { i , 1 } ) ; \ldots ; ( \sum _ { i = 1 } ^ { m } \mathbf { x } _ { m } \mathbf { M } _ { i , m } ) \right] +$$ + +This can be computed without storing either $\mathbf { X }$ or $\mathbf { M }$ on a single machine, and mathematically applies to both dense and sparse matrices. In our experiments we distibuted the matrices that define a reified KB “horizontally”, so that different triple ids $\ell$ are stored on different GPUs. + +Specifically, we shard the “triple index” dimension $N _ { T }$ of matrices $\mathbf { M } _ { s u b j }$ , ${ { \bf { M } } _ { r e l } }$ and $\mathbf { M } _ { o b j }$ in Eq. 4 to perform a distributed relation-set following on the reified KB. Let $\mathbf { M } _ { s u b j , i }$ be the $\overrightarrow { \imath } ^ { \prime }$ th shard of matrix $\mathbf { M } _ { s u b j }$ , and thus $\mathbf { M } _ { s u b j } = [ \mathbf { M } _ { s u b j , 1 } ^ { T } ; . . . ; \mathbf { M } _ { s u b j , m } ^ { T } ] _ { . } ^ { T } \in \mathbb { R } ^ { N _ { T } \times N _ { E } }$ . $\mathbf { M } _ { o b j }$ and ${ { \bf { M } } _ { r e l } }$ are represented in the similar way. A distributed relation-set following is computed as a combination of relation-set following results on all shards of the KB. + +$$ +\begin{array} { l } { f o l l o w ( \mathbf { x } , \mathbf { r } ) = ( \mathbf { x } \mathbf { M } _ { s u b j } ^ { T } \odot \mathbf { r } \mathbf { M } _ { r e l } ^ { T } ) \mathbf { M } _ { o b j } } \\ { \quad \quad = \left( [ \mathbf { x } \mathbf { M } _ { s u b j , 1 } ^ { T } ; \dots ; \mathbf { x } \mathbf { M } _ { s u b j , m } ^ { T } ] \odot [ \mathbf { r } \mathbf { M } _ { r e l , 1 } ^ { T } ; \dots ; \mathbf { r } \mathbf { M } _ { r e l , m } ^ { T } ] \right) \left[ \begin{array} { c } { \mathbf { M } _ { o b j , 1 } } \\ { \vdots } \\ { \mathbf { M } _ { o b j , m } } \end{array} \right] } \\ { \quad \quad = \displaystyle \sum _ { i = 1 } ^ { m } ( \mathbf { x } \mathbf { M } _ { s u b j , i } ^ { T } \odot \mathbf { r } \mathbf { M } _ { r e l , i } ^ { T } ) \mathbf { M } _ { o b j , i } } \end{array} +$$ + +This method can be easily extended to a mini-batch of examples $\mathbf { X }$ . + +# E EXPERIMENTAL DETAILS + +Reproducing experiments. To reproduce these experiments, first download and install the Google language package5. Many of the experiments in this paper can be reproduced using scripts stored in the some subdirectory of the source directory language/nql/demos: for example, the scalability experiments of Figure 1 can be performed using scripts in language/nql/demos/gridworld_scaling/. + +Grid experiments. In the grid experiments, the entity vector $\mathbf { X }$ is a randomly-chosen singleton set, and the relation vector r weights relations roughly uniformly—more specifically, each relation has weight $1 { + } \epsilon$ where $\epsilon$ is a drawn uniformly at random between 0 and 0.001.6 We vary the number of relations by inventing $m$ new relation names and assigning existing grid edges to each new relation. These experiments were conducted on a Titan $\mathrm { X p }$ GPU with 12Gb of memory. + +For key-value networks, the key is the concatenation of a relation and a subject entity, and the value is the object entity. We considered only the run-time for queries on an untrained randomly-initialized network (since run-time performance on a trained network would be the same); however, it should be noted that considerable time that might be needed to train the key-value memory to approximate the KB. (In fact, it is not obvious under what conditions a KB can be approximated well by the key-value memory.) + +We do not show results on the grid task for smaller minibatch sizes, but both reified and late mixing are about $4 0 \mathrm { x }$ slower with $b = 1$ than with $b = 1 2 8$ . + +WebQuestionsSP experiments. For efficiency, on this problem we exploit the type structure of the problem (see Appendix A). Our model uses two types of nodes, CVT and entity nodes. The model also uses three types of relations: relations mapping entities to entities, relations mapping entities to CVT nodes; and relations mapping CVT nodes to entity nodes. + +MetaQA experiments. An example of a 2-hop question in MetaQA could be “Who co-starred with Robert Downey Jr. in their movies?”, and the answer would be a set of actor entities, e.g., “Chris Hemsworth”, “Thomas Stanley”, etc. Triples in the knowledge base are represented as (subject, relation, object) triples, e.g., (“Robert Downey Jr.”, “act_in”, “Avengers: Endgame”), (“Avengers: Endgame”, “stars”, “Thomas Stanley”), etc. The quoted strings here all indicate KB entities. + +We also observed that in the MetaQA 2-hop and 3-hop questions, the questions often exclude the seed entities (e.g., “other movies with the same director as Pulp Fiction”). This can be modeled by masking out seed entities from the predictions after the second hop (ReifKB $^ +$ mask in the table). + +Timing on MetaQA and other natural problems. The raw data for the bubble plot of Table 5 is below. + +
Time (seconds)Accuracy (hits@1)Method
72.679.7ReifKB
189.810.1KV-mem
28.977.2GRAFT-Net
1131.091.4PullNet
+ +Discussion of the KB completion model. The KB completion model is + +$$ +t = 1 , \dots , T \colon \ \mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \ \mathbf { x } _ { i } ^ { t } = f o l l o w ( \mathbf { x } _ { i } ^ { t - 1 } , \mathbf { r } _ { i } ^ { t } ) + \mathbf { x } _ { i } ^ { t - 1 } +$$ + +It may not be immediately obvious why we used + +$$ +\mathbf { x } _ { i } ^ { t } = f o l l o w ( \mathbf { x } _ { i } ^ { t - 1 } , \mathbf { r } _ { i } ^ { t } ) + \mathbf { x } _ { i } ^ { t - 1 } +$$ + +instead of the simpler + +$$ +\mathbf { x } _ { i } ^ { t } = f o l l o w ( \mathbf { x } _ { i } ^ { t - 1 } , \mathbf { r } _ { i } ^ { t } ) +$$ + +In the main text, we say that this “gives the model access to outputs of all chains of length less than $t ^ { \ast }$ This statement is probably easiest to understand by considering a concete example. Let us simplify notation slightly by dropping the subscripts and writing follow $( \mathbf { x } _ { i } ^ { t - 1 } , \mathbf { r } _ { i } ^ { t } )$ as $f ^ { t } ( \mathbf { \bar { x } } ^ { t - 1 } )$ . Now expand the definition of $\mathbf { x } ^ { t }$ for a few small values of $t$ , using the linearity of the definition of relation-set + +following where appropriate to simplify: + +$$ +{ \begin{array} { r c l } { \mathbf { x } ^ { 1 } } & { = } & { f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } } \\ { \mathbf { x } ^ { 2 } } & { = } & { f ^ { 2 } ( \mathbf { x } ^ { 1 } ) + \mathbf { x } ^ { 1 } } \\ & { = } & { f ^ { 2 } \left( \left( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } \right) + \left( \left( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } \right) \right. \right. } \\ & { = } & { \left. f ^ { 2 } ( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } \right. } \\ { \mathbf { x } ^ { 3 } } & { = } & { f ^ { 3 } ( \mathbf { x } ^ { 2 } ) + \mathbf { x } ^ { 2 } } \\ & { = } & { f ^ { 3 } \left( \left( f ^ { 2 } ( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) \right) + f ^ { 2 } ( \mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } \right) + f ^ { 2 } ( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \mathbf { x } ^ { 0 } ) + \mathbf { x } ^ { 0 } } \\ & { = } & { f ^ { 3 } { \big ( } f ^ { 2 } ( f ^ { 1 } ( \mathbf { x } ^ { 0 } ) { \big ) \big ) } + f ^ { 3 } { \big ( } f ^ { 2 } ( \mathbf { x } ^ { 0 } ) { \big ) } + f ^ { 3 } { \big ( } f ^ { 1 } ( \mathbf { x } ^ { 0 } ) { \big ) } + f ^ { 2 } { \big ( } f ^ { 1 } ( \mathbf { x } ^ { 0 } ) { \big ) } + f ^ { 2 } ( \mathbf { x } ^ { 0 } ) + f ^ { 2 } ( \mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \mathbf { x } ^ { 0 } ) } \end{array} } +$$ + +A pattern is now clear: with this recursive definition $\mathbf { x } ^ { t }$ expands to a mixture of many paths, each of which applies a different subset of $f ^ { 1 }$ , . . . , $f ^ { t }$ to the initial input $\mathbf { X }$ . Since the weights of the mixture can to a large extent be controlled by varying the norm of the relation vectors $\mathbf { r } ^ { 1 } , \ldots . . . ^ { t }$ , this “kernel-like trick” increases the expressive power of the model without introducing new parameters. The final mixture of the $\mathbf { x } ^ { t }$ ’s seems to provide a bias towards accepting the output of shorter paths, which appears to be useful in practice. \ No newline at end of file diff --git a/parse/train/BJlguT4YPr/BJlguT4YPr_content_list.json b/parse/train/BJlguT4YPr/BJlguT4YPr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..1a9c92cda098de16998e410606fa68d6c85dc238 --- /dev/null +++ b/parse/train/BJlguT4YPr/BJlguT4YPr_content_list.json @@ -0,0 +1,2146 @@ +[ + { + "type": "text", + "text": "SCALABLE NEURAL METHODS FOR REASONING WITH A SYMBOLIC KNOWLEDGE BASE ", + "text_level": 1, + "bbox": [ + 176, + 99, + 800, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "William W. Cohen & Haitian Sun & R. Alex Hofer & Matthew Siegler Google, Inc {wcohen,haitiansun,rofer,msiegler}@google.com ", + "bbox": [ + 178, + 169, + 678, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 263 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We describe a novel way of representing a symbolic knowledge base (KB) called a sparse-matrix reified $K B$ . This representation enables neural KB inference modules that are fully differentiable, faithful to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable enough to use with realistically large KBs. The sparse-matrix reified KB can be distributed across multiple GPUs, can scale to tens of millions of entities and facts, and is orders of magnitude faster than naive sparse-matrix implementations. The reified KB enables very simple end-to-end architectures to obtain competitive performance on several benchmarks representing two families of tasks: KB completion, and learning semantic parsers from denotations. ", + "bbox": [ + 233, + 281, + 766, + 420 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 444, + 336, + 460 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "There has been much prior work on using neural networks to generalize the contents of a KB (Xiong et al., 2017; Bordes et al., 2013; Dettmers et al., 2018), typically by constructing low-dimensional embeddings of the entities and relations in the KB, which are then used to score potential triples as plausible or implausible elements of the KB. We consider here the related but different problem of incorporating a symbolic KB into a neural system, so as to inject knowledge from an existing KB directly into a neural model. More precisely, we consider the problem of designing neural KB inference modules that are (1) fully differentiable, so that any loss based on their outputs can be backpropagated to their inputs; (2) accurate, in that they are faithful to the original semantics of the KB; (3) expressive, so they can perform non-trivial inferences; and (4) scalable, so that realistically large KBs can be incorporated into a neural model. ", + "bbox": [ + 174, + 467, + 825, + 606 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To motivate the goal of incorporating a symbolic KB into a neural network, consider the task of learning neural semantic parsers from denotations. Many questions—e.g., what’s the most recent movie that Quentin Tarantino directed? or which nearby restaurants have vegetarian entrees and take reservations?—are best answered by knowledge-based question-answering (KBQA) methods, where an answer is found by accessing a KB. Within KBQA, a common approach is neural semantic parsing—i.e., using neural methods to translate a natural-language question into a structured query against the KB (Zhong et al., 2017; Finegan-Dollak et al., 2018; Shaw et al., 2019), which is subsequently executed with a symbolic KB query engine. While this approach can be effective, it requires training data pairing natural-language questions with structured queries, which is difficult to obtain. Hence researchers have also considered learning semantic parsers from denotations (Berant et al., 2013; Yih et al., 2015), where training data consists of pairs $( q , A )$ , where $q$ is a natural-language question and $A$ is the desired answer. Typically $A$ is a set of KB entities—e.g., if $q$ is the first sample question above, $A$ would be1 the singleton set containing Once Upon a Time in Hollywood. ", + "bbox": [ + 174, + 613, + 825, + 806 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Learning semantic parsers from denotations is difficult because the end-to-end process to be learned includes a non-differentiable operation—i.e., reasoning with the symbolic KB that contains the answers. To circumvent this difficulty, prior systems have used three different approaches. Some have used heuristic search to infer structured queries from denotations (Pasupat & Liang, 2016; Dasigi et al., 2019): this works in some cases but often an answer could be associated with many possible structured queries, introducing noise. Others have supplemented gradient approaches with $x$ : an entity $X$ : weighted set of entities x: vector encoding $X$ $N _ { E }$ : # entities in KB $r$ : an relation $R$ : weighted set of relations r: vector encoding $R$ $N _ { R }$ : # relations in KB ${ { \\bf { M } } _ { r } }$ : matrix for $r$ ${ \\bf { M } } _ { R }$ : weighted sum of ${ { \\bf { M } } _ { r } }$ ’s, see Eq 1 $f o l l o w ( \\mathbf { x } , \\mathbf { r } )$ : see Eq 2 $N _ { T }$ : # triples in KB $\\mathbf { M } _ { s u b j }$ $\\mathbf { \\tau } _ { s u b j } , \\mathbf { M } _ { o b j } , \\mathbf { M } _ { r e l }$ : the reified KB, encoded as matrices mapping triple id $\\ell$ to subject, object, and relation ids ", + "bbox": [ + 174, + 814, + 825, + 898 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 183, + 101, + 826, + 152 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Table 1: Summary of notation used in the paper. (This excludes notation used in defining models for the KB completion and QA tasks of Section 3.) ", + "bbox": [ + 174, + 169, + 823, + 196 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "reinforcement learning (e.g., (Misra et al., 2018)). Some systems have also “neuralized” KB reasoning, but to date only over small KBs: this approach is natural when answers are naturally constrained to depend on a small set of facts (e.g., a single table (Zhong et al., 2017; Gupta & Lewis, 2018)), but more generally requires coupling a learner with some (non-differentiable) mechanism to retrieve an appropriate small question-dependent subset of the KB as in (Sun et al., 2018; 2019). ", + "bbox": [ + 174, + 227, + 825, + 296 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we introduce a novel scheme for incorporating reasoning on a large question-independent KB into a neural network, by representing a symbolic KB with an encoding called a sparse-matrix reified KB. A sparse-matrix reified KB is very compact, can be distributed across multiple GPUs if necessary, and is well-suited to modern GPU architecture. For KBs with many relations, a reified KB can be up to four orders of magnitude faster than alternative implementations (even alternatives based on sparse-matrix representations), and in our experiments we demonstrate scalability to a KB with over 13 million entities and nearly 44 million facts. This new architectural component leads to radically simpler architectures for neural semantic parsing from denotations—architectures based on a single end-to-end differentiable process, rather than cascades of retrieval and neural processes. ", + "bbox": [ + 174, + 304, + 825, + 429 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We show that very simple instantiations of these architectures are still highly competitive with the state of the art for several benchmark tasks. To our knowledge these models are the first fully end-to-end neural parsers from denotations that have been applied to these benchmark tasks. We also demonstrate that these architectures scale to long chains of reasoning on synthetic tasks, and demonstrate similarly simple architectures for a second task, KB completion. ", + "bbox": [ + 174, + 435, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 NEURAL REASONING WITH A SYMBOLIC KB ", + "text_level": 1, + "bbox": [ + 174, + 522, + 575, + 537 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 BACKGROUND ", + "text_level": 1, + "bbox": [ + 174, + 546, + 315, + 561 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "KBs, entities, and relations. A KB consists of entities and relations. We use $x$ to denote an entity and $r$ to denote a relation. Each entity has an integer index between 1 and $N _ { E }$ , where $N _ { E }$ is the number of entities in the KB, and we write $x _ { i }$ for the entity that has index $i$ . A relation is a set of entity pairs, and represents a relationship between entities: for instance, if $x _ { i }$ represents “Quentin Tarantino” and $x _ { j }$ represents “Pulp Fiction” then $( x _ { i } , x _ { j } )$ would be an member of the relation director_of. A relation $r$ can thus be represented as a subset of $\\left\\{ 1 , \\dots , N _ { E } \\right\\} \\times \\left\\{ 1 , \\dots , N _ { E } \\right\\}$ . Finally a KB consists a set of relations and a set of entities. ", + "bbox": [ + 174, + 570, + 826, + 667 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Weighted sets as $^ { 6 6 } k$ -hot” vectors. Our differentiable operations are based on weighted sets, where each element $x$ of weighted set $X$ is associated with a non-negative real number. It is convenient to define this weight to be zero for all $x \\not \\in X$ , while for $x \\in X$ , a weight less than 1 is a confidence that the set contains $x$ , and weights more than 1 make $X$ a multiset. If all elements of $X$ have weight 1, we say $X$ is a hard set. A weighted set $X$ can be encoded as an entity-set vector $\\mathbf { x } \\in \\mathbb { R } ^ { N _ { E } }$ , where the $i$ -th component of $\\mathbf { X }$ is the weight of $x _ { i }$ in $X$ . If $X$ is a hard entity set, then this will be a “ $k$ -hot” vector, for $k = | X |$ . The set of indices of $\\mathbf { X }$ with non-zero values is called the support of $\\dot { \\boldsymbol { x } }$ . ", + "bbox": [ + 173, + 675, + 825, + 773 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Sets of relations, and relations as matrices Often we would like to reason about sets of relations2, so we also assume every relation $r$ in a KB is associated with an entity and hence an integer index. We write $r _ { k }$ for the relation with index $k$ , and we assume that relation entities are listed first in the index of entities, so the index $k$ for $r _ { k }$ is between 1 and $N _ { R }$ , where $N _ { R }$ is the number of relations in the KB. We use $R$ for a set of relations, e.g., $R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}$ might be such a set, and use $\\mathbf { r }$ for a vector encoding of a set. A relation $r$ can be encoded as a relation matrix $\\mathbf { M } _ { r } \\in \\mathbb { R } ^ { N _ { E } \\times N _ { E } }$ , where the value for $\\mathbf { M } _ { r } [ i , j ]$ is (in general) the weight of the assertion $r ( x _ { i } , x _ { j } )$ in the KB. In the experiments of this paper, all KB relations are hard sets, so $\\mathbf { M } _ { r } [ i , j ] \\in \\{ 0 , 1 \\}$ . ", + "bbox": [ + 173, + 780, + 826, + 892 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Sparse vs. dense matrices for relations. Scalably representing a large KB requires careful consideration of the implementation. One important issue is that for all but the smallest KBs, a relation matrix must be implemented using a sparse matrix data structure, as explicitly storing all $N _ { E } ^ { 2 }$ values is impractical. For instance, consider a KB containing 10,000 movie entities and 100,000 person entities. A relationship like writer_of would have only a few tens of thousands of facts (since most movies have only one or two writers), but a dense matrix would have 1 billion values. ", + "bbox": [ + 173, + 103, + 825, + 188 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We thus model relations as sparse matrices. Let $N _ { r }$ be the number of entity pairs in the relation $r$ : common sparse matrix data structures require space $O ( N _ { r } )$ . One common sparse matrix data structure is a sparse coordinate pair $( C O O )$ encoding: with a COO encoding, each KB fact requires storing only two integers and one float. ", + "bbox": [ + 174, + 194, + 825, + 251 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our implementations are based on Tensorflow (Abadi et al., 2016), which offers limited support for sparse matrices. In particular, driven by the limitations of GPU architecture, Tensorflow only supports matrix multiplication between a sparse matrix COO and a dense matrix, but not between two sparse matrices, or between sparse higher-rank tensors and dense tensors. ", + "bbox": [ + 174, + 257, + 825, + 313 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Entity types. It is often possible to easily group entities into disjoint sets by some notion of “type”: for example, in a movie domain, all entities might be either of the type “movie”, “person”, or “movie studio”. It is straightforward to extend the formalism above to typed sets of entities, and doing this can lead to some useful optimizations. We use these optimizations below where appropriate: in particular, relation-set vectors r are of dimension $N _ { R }$ , not $N _ { E }$ , in the sections below. The full formal extension to typed entities and relations is given in Appendix A. ", + "bbox": [ + 173, + 319, + 825, + 404 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 REASONING IN A KB ", + "text_level": 1, + "bbox": [ + 174, + 416, + 361, + 431 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The relation-set following operation. Note that relations can also be viewed as labeled edges in a knowledge graph, the vertices of which are entities. Adopting this view, we define the $r$ - neighbors of an entity $x _ { i }$ to be the set of entities $x _ { j }$ that are connected to $x _ { i }$ by an edge labeled $r$ , i.e., $r$ - ${ \\cdot } n e i g h b o r s ( x ) \\equiv \\left\\{ x _ { j } : ( x _ { i } , x _ { j } ) \\in r \\right\\}$ . Extending this to relation sets, we define ", + "bbox": [ + 173, + 439, + 826, + 496 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/9cb092bdc7e564235443a1a50296fe508c4ec9ab08b37605ca24712668fdb14d.jpg", + "text": "$$\nR \\neg n e i g h b o r s ( X ) \\equiv \\left\\{ x _ { j } : \\exists r \\in R , x _ { i } \\in X \\mathrm { ~ s o ~ t h a t ~ } ( x _ { i } , x _ { j } ) \\in r \\right\\}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 500, + 707, + 518 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Computing the $R$ -neighbors of an entity is a single-step reasoning operation: e.g., the answer to the question q =“what movies were produced or directed by Quentin Tarantino” is precisely the set $R$ -neighbors $( X )$ for $R = \\{ p r o d u c e r \\_ o f , w r i t e r \\_ o f \\}$ and $X = \\{ Q u e n t i n \\_ T a r a n t i n o \\}$ . “Multi-hop” reasoning operations require nested $R$ -neighborhoods, e.g. if $R ^ { \\prime } = \\{ a c t o r { \\_ } o f \\}$ then $R ^ { \\prime }$ -neighbors $R$ - neighbors $( X )$ ) is the set of actors in movies produced or directed by Quentin Tarantino. ", + "bbox": [ + 174, + 520, + 826, + 592 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We would like to approximate the $R$ -neighbors computation with differentiable operations that can be performed on the vectors encoding the sets $X$ and $R$ . Let $\\mathbf { X }$ encode a weighted set of entities $X$ , and let r encode a weighted set of relations. We first define $\\mathbf { M } _ { R }$ to be a weighted mixture of the relation matrices for all relations in $R$ i.e., ", + "bbox": [ + 173, + 597, + 825, + 654 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/60b2839bf400bcdb55946b6f3c2dbb5b00b6a55f9098196645d9422177f99007.jpg", + "text": "$$\n\\mathbf { M } _ { R } \\equiv ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )\n$$", + "text_format": "latex", + "bbox": [ + 419, + 656, + 578, + 700 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We then define the relation-set following operation for $\\boldsymbol { x }$ and $r$ as: ", + "bbox": [ + 171, + 703, + 604, + 718 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2b55b6737f4931bdc0f4862e1dbc04c43696357d7d8d22343c10123681d7209a.jpg", + "text": "$$\nf o l l o w ( \\mathbf { x } , \\mathbf { r } ) \\equiv \\mathbf { x } \\mathbf { M } _ { R } = \\mathbf { x } ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )\n$$", + "text_format": "latex", + "bbox": [ + 361, + 722, + 635, + 766 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As we will show below, this differentiable numerical relation-set following operation can be used as a neural component to perform certain types of logical reasoning. In particular, $\\operatorname { E q } 2$ corresponds closely to the logical $R$ -neighborhood operation, as shown by the claim below. ", + "bbox": [ + 173, + 767, + 823, + 810 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Claim 1 The support of follow $\\scriptstyle ( \\mathbf { x } , \\pmb { r } )$ is exactly the set of $R$ -neighbors( $X )$ . ", + "bbox": [ + 171, + 816, + 656, + 832 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "A proof and the implications of this are discussed in Appendix B. ", + "bbox": [ + 174, + 838, + 599, + 853 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 SCALABLE RELATION-SET FOLLOWING WITH A REIFIED KB ", + "text_level": 1, + "bbox": [ + 174, + 869, + 627, + 885 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Baseline implementations. Suppose the KB contains $N _ { R }$ relations, $N _ { E }$ entities, and $N _ { T }$ triples. Typically $\\hat { N _ { R } } < \\hat { N _ { E } } < \\hat { N _ { T } } \\ll \\hat { N _ { E } ^ { 2 } }$ . As noted above, we implement each ${ { \\bf { M } } _ { r } }$ as a sparse COO matrix, ", + "bbox": [ + 171, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/ba70e01f41db9adbed02fbe31d679b7e5c7c8d3ef732d7075e28317a8e12fa34.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
StrategyDefinitionBatch?Space complexity# Operations
sp-dense matmuldense +or ⊙sparse +
naive mixingEq 1-2noO(Nr+NE+NR)10NR
late mixingEq3yesO(NT +bNE +bNR)NRNR0
reified KBEq 4yesO(bNr+bNE)310
", + "bbox": [ + 184, + 101, + 813, + 188 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Table 2: Complexity of implementations of relation-set following, where $N _ { T }$ is the number of KB triples, $N _ { E }$ the number of entities, $N _ { R }$ the number of relations, and $b$ is batch size. ", + "bbox": [ + 173, + 203, + 821, + 232 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "so collectively these matrices require space $O ( N _ { T } )$ . Each triple appears in only one relation, so $\\mathbf { M } _ { R }$ in Eq 1 is also size $O ( N _ { T } )$ . Since sparse-sparse matrix multiplication is not supported in Tensorflow we implement $\\mathbf { x M } _ { R }$ using dense-sparse multiplication, so $\\mathbf { X }$ must be a dense vector of size $O ( N _ { E } )$ , as is the output of relation-set following. Thus the space complexity of $f o l l o w ( \\mathbf { x } , \\mathbf { r } )$ is $O ( N _ { T } + N _ { E } + N _ { R } )$ , if implemented as suggested by $\\operatorname { E q } 2$ . We call this the naive mixing implementation, and its complexity is summarized in Table 2. ", + "bbox": [ + 173, + 242, + 825, + 327 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Because Tensorflow does not support general sparse tensor contractions, it is not always possible to extend sparse-matrix computations to minibatches. Thus we also consider a variant of naive mixing called late mixing, which mixes the output of many single-relation following steps, rather than mixing the KB itself: ", + "bbox": [ + 174, + 333, + 825, + 388 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e48ec3ec31151c7952ac8d2b5c7ea68f2a48054f7a8b6ad270a69f8ae22592ec.jpg", + "text": "$$\nf o l l o w ( \\mathbf { x } , \\mathbf { r } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( \\mathbf { r } [ k ] \\cdot \\mathbf { x } \\mathbf { M } _ { r _ { k } } )\n$$", + "text_format": "latex", + "bbox": [ + 390, + 385, + 606, + 429 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Unlike naive mixing, late mixing can be extended easily to a minibatches (see Appendix C). Let $b$ be the batch size and $\\mathbf { X }$ be a minibatch of $b$ examples $\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { b } \\right]$ : then this approach leads to $N _ { R }$ matrices $\\mathbf { X M } _ { k }$ , each of size $O ( b N _ { E } )$ . However, they need not all be stored at once, so the space complexity becomes $O ( b N _ { E } + b N _ { R } + N _ { T } )$ . An additional cost of late mixing is that we must now sum up $N _ { R }$ dense matrices. ", + "bbox": [ + 173, + 430, + 825, + 501 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A reified knowledge base. While semantic parses for natural questions often use small sets of relations (often singleton ones), in learning there is substantial uncertainty about what the members of these small sets should be. Furthermore, realistic wide-coverage KBs have many relations—typically hundreds or thousands. This leads to a situation where, at least during early phases of learning, it is necessary to evaluate the result of mixing very large sets of relations. When many relations are mixed, late mixing becomes quite expensive (as experiments below show). ", + "bbox": [ + 173, + 507, + 825, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "An alternative is to represent each KB assertion $r _ { k } ( x _ { i } , x _ { j } )$ as a tuple $( i , j , k )$ where $i , j , k$ are the indices of $x _ { i } , x _ { j }$ , and $r _ { k }$ . There are $N _ { T }$ such triples, so for $\\ell = 1 , \\ldots , N _ { T }$ , let $( i _ { \\ell } , j _ { \\ell } , k _ { \\ell } )$ denote the $\\ell \\cdot$ -th triple. We define these sparse matrices: ", + "bbox": [ + 174, + 597, + 825, + 640 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/7b6f2d3b832979f50673d8cab4c88b37d1f88c8413db6eef9ef8eb35cea25723.jpg", + "text": "$$\n\\mathbf { M } _ { s u b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = i \\ell } & \\mathbf { M } _ { o b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = j \\ell } & { \\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = k _ { \\ell } } \\\\ { 0 \\mathrm { ~ e l s e ~ } } & { } \\end{array} \\right. \\right. } \\end{array} \\right. \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 645, + 807, + 680 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Conceptually, $\\mathbf { M } _ { s u b j }$ maps the index $\\ell$ of the $\\ell$ -th triple to its subject entity; $\\mathbf { M } _ { o b j }$ maps $\\ell$ to the object entity; and ${ { \\bf { M } } _ { r e l } }$ maps $\\ell$ to the relation. We can now implement the relation-set following as below, where $\\odot$ is Hadamard product: ", + "bbox": [ + 174, + 691, + 823, + 734 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/da074048f840009029f53c329eafda63d58298fc4d2b5be804646c4a4e587842.jpg", + "text": "$$\nf o l l o w \\mathbf { ( x , r ) } = ( \\mathbf { x M } _ { s u b j } ^ { T } \\odot \\mathbf { r M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }\n$$", + "text_format": "latex", + "bbox": [ + 367, + 739, + 627, + 761 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Notice that $\\mathbf { x M } _ { s u b j } ^ { T }$ are the triples with an entity in $\\mathbf { X }$ as their subject, $\\mathbf { r } \\mathbf { M } _ { r e l } ^ { T }$ are the triples with a relation in $\\mathbf { r }$ , and the Hadamard product is the intersection of these. The final multiplication by $\\mathbf { M } _ { o b j }$ finds the object entities of the triples in the intersection. These operations naturally extend to minibatches (see Appendix). The reified KB has size $O ( N _ { T } )$ , the sets of triples that are intersected have size $O ( b N _ { T } )$ , and the final result is size $O ( b N _ { E } )$ , giving a final size of $O ( b N _ { T } + b N _ { E } )$ , with no dependence on $N _ { R }$ . ", + "bbox": [ + 173, + 767, + 825, + 853 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Table 2 summarizes the complexity of these three mathematically equivalent but computationally different implementions. The analysis suggests that the reified KB is preferable if there are many relations, which is the case for most realistic ${ \\mathrm { K B s } } ^ { 3 }$ . ", + "bbox": [ + 174, + 858, + 825, + 901 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/72604657a9eb5648313f468d1b90fc0311598bfc947064885ae8c79e2eab68cd.jpg", + "image_caption": [ + "Figure 1: Left and middle: inference time in queries/sec on a synthetic KB as size and number of relations is varied. Queries/sec is given as zero when GPU memory of 12Gb is exceeded. Right: speedups of reified KBs over the baseline implementations. " + ], + "image_footnote": [], + "bbox": [ + 236, + 109, + 763, + 263 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Distributing a large reified KB. The reified KB representation is quite compact, using only six integers and three floats for each KB triple. However, since GPU memory is often limited, it is important to be able to distribute a KB across multiple GPUs. Although to our knowledge prior implementations of distributed matrix operations (e.g., (Shazeer et al., 2018)) do not support sparse matrices, sparse-dense matrix multiplication can be distributed across multiple machines. We thus implemented a distributed sparse-matrix implementation of reified $K B s$ . We distibuted the matrices that define a reified KB “horizontally”, so that different triple ids $\\ell$ are stored on different GPUs. Details are provided in Appendix D. ", + "bbox": [ + 174, + 338, + 825, + 452 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 465, + 326, + 481 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 SCALABILITY ", + "text_level": 1, + "bbox": [ + 176, + 489, + 310, + 503 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Like prior work (Cohen et al., 2017; De Raedt et al., 2007), we used a synthetic KB based on an $n$ -by- $\\mathbf { \\nabla } \\cdot n$ grid to study scalability of inference. Every grid cell is an entity, related to its immediate neighbors via relations north, south, east, and west. The KB for an $n$ -by- $^ n$ grid thus has $O ( n ^ { 2 } )$ entities and $O ( n ^ { 2 } )$ triples. We measured the time to compute the 2-hop inference follow $( f o l l o w ( \\mathbf { x } , \\mathbf { r } ) , \\mathbf { r } )$ for minibatches of $b = 1 2 8$ one-hot vectors, and report it as queries per second (qps) on a single GPU (e.g., $\\mathrm { \\ q p s { = } 1 } 2 8 0$ would mean a single minibatch requires $1 0 0 \\mathrm { m s }$ ). We also compare to a key-value memory network (Miller et al., 2016), using an embedding size of 64 for entities and relations, where there is one memory entry for every triple in the KB. Further details are given in Appendix E. ", + "bbox": [ + 173, + 511, + 825, + 623 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The results are shown Figure 1 (left and middle), on a log-log scale because some differences are very large. With only four relations (the leftmost plot), late mixing is about $3 \\mathbf { x }$ faster than the reified KB method, and about $2 5 0 \\mathrm { x }$ faster than the naive approach. However, for more than around 20 relations, the reified KB is faster (middle plot). As shown in the rightmost plot, the reified KB is $5 0 \\mathrm { x }$ faster than late mixing with 1000 relations, and nearly $1 2 { , } 0 0 0 \\mathrm { x }$ faster than the naive approach. ", + "bbox": [ + 174, + 630, + 825, + 700 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "With this embedding size, the speed of the key-value network is similar to the reified KB for only four relations, however it is about $7 \\mathbf { x }$ slower for 50 relations and 10k entities. Additionally, the space needed to store a triple is much larger in a key-value network than the reified KB, so memory is exhausted when the KB exceeds 200,000 entities (with four relations), or when the KB exceeds 100 relations (with 10,000 entities.) The reified KB scales much better, and can handle $1 0 \\mathrm { x }$ as many entities and $2 0 \\mathrm { x }$ as many relations. ", + "bbox": [ + 174, + 707, + 825, + 790 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 MODELS USING REIFIED KBS ", + "text_level": 1, + "bbox": [ + 176, + 803, + 419, + 818 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As discussed below in Section 4, the reified KB is closely related to key-value memory networks, so it can be viewed as a more efficient implementation of existing neural modules, optimized for reasoning with symbolic KBs. However, being able to include an entire KB into a model can lead to a qualitative difference in model complexity, since it is not necessary to build machinery to retrieve from the KB. To illustrate this, below we present simple models for several tasks, each using the reified KB in different ways, as appropriate to the task. We consider two families of tasks: learning semantic parsers from denotations over a large KB, and learning to complete a KB. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "KBQA for multi-hop questions. MetaQA (Zhang et al., 2018) consists of 1.2M questions, evenly distributed into one-hop, two-hop, and three-hop questions. (E.g, the question “who acted in a movie directed by Quentin Tarantino?” is a two-hop question.) The accompanying KB (Miller et al., 2016) contains 43k entities and 186k triples. Past work treated one-hop, two-hop and three-hop questions separately, and the questions are labeled with the entity ids for the “seed entities” that begin the reasoning chains (e.g., the question above would be tagged with the id of the entity for Quentin Tarantino). ", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Using a reified KB for reasoning means the neural model only needs to predict the relations used at each stage in the reasoning process. For each step of inference we thus compute relation sets $\\mathbf { r } ^ { t }$ using a differentiable function of the question, and then chain them together with relation-set following steps. Letting $\\mathbf { x } ^ { 0 }$ be the set of entities associated with $q$ , the model we use is: ", + "bbox": [ + 174, + 208, + 825, + 263 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/e2f4ceeab681e58144fe12d87cd6737fe210e8e0145672f9bc5a176d1cb79367.jpg", + "text": "$$\n\\mathrm { f o r } t = 1 , 2 , 3 ; ~ { \\bf r } ^ { t } = f ^ { t } ( q ) ; ~ { \\bf x } ^ { t } = f o l l o w ( { \\bf x } ^ { t - 1 } , { \\bf r } ^ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 326, + 267, + 669, + 286 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where follow $\\left( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } \\right)$ is implemented with a reified KB as described in Eq. 4. ", + "bbox": [ + 183, + 290, + 681, + 305 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To predict an answer on a $T$ -hop subtask, we compute the softmax of the appropriate set $\\mathbf { x } ^ { T }$ . We used cross entropy loss of this set against the desired answer, represented as a uniform distribution over entities in the target set. Each function $f ^ { t } ( q )$ is a different linear projection of a common encoding for $q$ , specifically a mean-pooling of the tokens in $q$ encoded with a pre-trained 128-dimensional word2vec model (Mikolov et al., 2013). The full KB was loaded into a single GPU in our experiments. ", + "bbox": [ + 174, + 310, + 825, + 381 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "It is interesting to contrast this simple model with the one proposed by Zhang et al. (2018). The “module for logic reasoning” they propose in Section 3.4 is fairly complex, with a description that requires a figure, three equations, and a page of text; furthermore, training this model requires constructing an example-dependent subgraph for each training instance. In our model, the “logic reasoning” (and all interaction with the KB) has been encapsulated completely in the $\\ell o l l o w ( \\mathbf { x } , \\mathbf { r } )$ operation—which, as we will demonstrate below, can be re-used for many other problems. Encapsulating all KB reasoning with a single scalable differentiable neural module greatly simplifies modeling: in particular, the problem of learning a structured KB query has been reduced to learning a few differentiable functions of the question, one for each reasoning “hop”. The learned functions are also interpretable: they are mixtures of relation identifiers which correspond to soft weighted sets of relations, which in turn softly specify which KB relation should be used in each stage of the reasoning process. Finally, optimization is simple, as the loss on predicted denotations can be back-propagated to the relation-prediction functions. ", + "bbox": [ + 173, + 387, + 825, + 569 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A similar modeling strategy is used in all the other models presented below. ", + "bbox": [ + 174, + 575, + 669, + 590 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "KBQA on FreeBase. WebQuestionsSP (Yih et al., 2016) contains 4737 natural language questions, all of which are answerable using FreeBase (Bollacker et al., 2008), a large open-domain KB. Each question $q$ is again labeled with the entities $\\mathbf { X }$ that appear in it. ", + "bbox": [ + 174, + 597, + 825, + 638 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "FreeBase contains two kinds of nodes: real-world entities, and compound value types (CVTs), which represent non-binary relationships or events (e.g., a movie release event, which includes a movie id, a date, and a place.) Real-world entity nodes can be related to each other or to a CVT node, but CVT nodes are never directly related to each other. In this dataset, all questions can be answered with 1- or 2-hop chains, and all 2-hop reasoning chains pass through a CVT entity; however, unlike MetaQA, the number of hops is not known. Our model thus derives from $q$ three relation sets and then uniformly mixes both potential types of inferences: ", + "bbox": [ + 173, + 646, + 826, + 744 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/ba3d5b374539c5c802f0b0425336dc2cd0fd332ebc4660d5ee95239a1990c091.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { r } _ { \\mathrm { E E } } = f _ { \\mathrm { E E } } ( q ) ; \\mathbf { r } _ { \\mathrm { E C V T } } = f _ { \\mathrm { E C V T } } ( q ) ; \\mathbf { r } _ { \\mathrm { C V T E } } = f _ { \\mathrm { C V T E } } ( q ) } \\\\ & { \\qquad \\hat { \\mathbf { a } } = f o l l o w ( f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E C V T } } ) , \\mathbf { r } _ { \\mathrm { C V T E } } ) + f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E E } } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 758, + 723, + 796 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We again apply a softmax to $\\hat { \\mathbf { a } }$ and use cross entropy loss, and $f _ { \\mathrm { E \\to E } }$ , $f _ { \\mathrm { E C V T } }$ , and $f _ { \\mathrm { C V T E } }$ are again linear projections of a word2vec encoding of $q$ . We used a subset of Freebase with 43.7 million facts and 12.9 million entities, containing all facts in Freebase within 2-hops of entities mentioned in any question, excluding paths through some very common entities. We split the KB across three 12-Gb GPUs, and used a fourth GPU for the rest of the model. ", + "bbox": [ + 174, + 804, + 825, + 875 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This dataset is a good illustration of the scalability issues associated with prior approaches to including a KB in a model, such as key-value memory networks. A key-value network can be trained to implement something similar to relation-set following, if it stores all the KB triples in memory. If we assume 64-float embeddings for the 12.9M entities, the full KB of 43.7M facts would be 67Gb in size, which is impractical. Additionally performing a softmax over the 43.7M keys would be prohibitively expensive, as shown by the experiments of Figure 1. This is the reason why in standard practice with key-value memory networks for KBs, the memory is populated with a heuristically subset of the KB, rather than the full KB. We compare experimentally to this approach in Table 3. ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Knowledge base completion. Following Yang et al. (2017) we treat KB completion as an inference task, analogous to KBQA: a query $q$ is a relation name and a head entity $\\mathbf { X }$ , and from this we predict a set of tail entities. We assume the answers are computed with the disjunction of multiple inference chains of varying length. Each inference chain has a maximum length of $T$ and we build $N$ distinct inference chains in total, using this model (where $\\mathbf { x } _ { i } ^ { 0 } = \\mathbf { x }$ for every chain $\\romannumeral 1$ ): ", + "bbox": [ + 173, + 179, + 825, + 251 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/5dc9011cf752ef9c9b3c427607d0c54b94b627de53b3b9aa74c2a1abd7d3d722.jpg", + "text": "$$\n\\mathrm { o r } i = 1 , \\dots , N \\mathrm { ~ a n d ~ } t = 1 , \\dots , T ; \\quad \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\quad \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 241, + 257, + 764, + 276 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The final output is a softmax of the mix of all the $\\mathbf { x } _ { i } ^ { T }$ ’s: i.e., we let $\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { i \\in \\{ 1 \\ldots N \\} } \\mathbf { x } _ { i } ^ { T } ) } \\end{array}$ . The update $\\mathbf { x } _ { i } ^ { t + 1 } = f o l l o w ( \\mathbf { x } _ { i } ^ { t } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t }$ gives the model access to outputs of all chains of length less than $t$ (for more intuition see Appendix E.) The encoding of $q$ is based on a lookup table, and each $f _ { i } ^ { t }$ is a learned linear transformation of $q$ ’s embedding.4 ", + "bbox": [ + 174, + 284, + 825, + 347 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "An encoder-decoder architecture for varying inferential structures. To explore performance on more complex reasoning tasks, we generated simple artificial natural-language sentences describing longer chains of relationships on a 10-by-10 grid. For this task we used an encoder-decoder model which emits chains of relation-set following operations. The question is encoded with the final hidden state of an LSTM, written here $ { \\mathbf { h } } ^ { 0 }$ . We then generate a reasoning chain of length up to $T$ using a decoder LSTM. At iteration $t$ , the decoder emits a scalar probability of “stopping”, $p ^ { t }$ , and a distribution over relations to follow $\\mathbf { r } ^ { t }$ , and then, as we did for the KBQA tasks, sets $\\mathbf { \\bar { x } } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } )$ . Finally the decoder updates its hidden state to $\\mathbf { h } ^ { t }$ using an LSTM cell that “reads” the “input” $\\mathbf { r } ^ { i - 1 }$ . For each step $t$ , the model thus contains the steps ", + "bbox": [ + 173, + 353, + 825, + 481 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/deb080a93ae71e3bb73f4ba8b285277a3a537b7b80fd378961cb4dabe7af9688.jpg", + "text": "$$\np ^ { t } = f _ { p } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { r } ^ { t } = f _ { r } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { x } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } ) ; ~ \\mathbf { h } ^ { t } = \\mathrm { L S T M } ( \\mathbf { h } ^ { t - 1 } , \\mathbf { r } ^ { t - 1 } )\n$$", + "text_format": "latex", + "bbox": [ + 222, + 487, + 776, + 506 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The final predicted location is a mixture of all the $\\mathbf { X } _ { t }$ ’s weighted by the probability of stopping $p _ { t }$ at iteration $t$ , i.e., $\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { t = 1 } ^ { T } \\mathbf { x } ^ { t } \\cdot p ^ { t } \\prod _ { t ^ { \\prime } < t } ( 1 - p ^ { t ^ { \\prime } } ) ) } \\end{array}$ . The function $f _ { r }$ is a softmax over a linear projection, and $f _ { p }$ is a logistic function. In the experiments, we trained on 360,000 sentences requiring between 1 and $T$ hops and tested on an additional 12,000 sentences. ", + "bbox": [ + 173, + 512, + 825, + 571 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Experimental results. We next consider the performance of these models relative to strong baselines for each task. We emphasize our goal here is not to challenge the current state of the art on any particular benchmark, and clearly there are many ways the models of this paper could be improved. (For instance, our question encodings are based on word2vec, rather than contextual encodings (Devlin et al., 2018), and likewise relations are predicted with simple linear classifiers, rather than, say, attention queries over some semantically meaningful space, such as might be produced with language models or KB embedding approaches (Bordes et al., 2013)). Rather, our contribution is to present a generally useful scheme for including symbolic KB reasoning into a model, and we have thus focused on describing simple, easily understood models that do this for several tasks. However, it is important to confirm experimentally that the reified KB models “work”—e.g., that they are amenable to use of standard optimizers, etc. ", + "bbox": [ + 173, + 578, + 825, + 731 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Performance (using Hits $@ .$ 1) of our models on the KBQA tasks is shown in Table 3. For the nonsynthetic tasks we also compare to a Key-Value Memory Network (KV-Mem) baseline (Miller et al., 2016). For the smaller MetaQA dataset, KV-Mem is initialized with all facts within 3 hops of the query entities, and for WebQuestionsSP it is initialized by a random-walk process seeded by the query entities (see (Sun et al., 2018; Zhang et al., 2018) for details). ReifKB consistently outperforms the baseline, dramatically so for longer reasoning chains. The synthetic grid task shows that there is very little degradation as chain length increases, with $\\mathrm { H i t s } @ 1$ for 10 hops still $8 9 . 7 \\%$ . It also illustrates the ability to predict entities in a KB, as well as relations. ", + "bbox": [ + 173, + 737, + 825, + 849 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We also compare these results to two much more complex architectures that perform end-to-end question answering in the same setting used here: VRN (Zhang et al., 2018), GRAFT-Net (Sun et al., 2018), and PullNet (Sun et al., 2019). All three systems build question-dependent subgraphs of the ", + "bbox": [ + 176, + 857, + 825, + 898 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/2d58bc39702cd8fde24c41f0874a33e202adac4a997b7377b883bb595691320c.jpg", + "table_caption": [ + "Table 3: Hits $@ 1$ on the KBQA datasets. Results for KV-Mem and VRN on MetaQA are from (Zhang et al., 2018); results for GRAFT-Net, PullNet and KV-Mem on WebQSP are from (Sun et al., 2018) and (Sun et al., 2019). " + ], + "table_footnote": [], + "table_body": "
ReifKB (ours)ReifKB +maskKV-Mem (baseline)VRNGRAFT- NetPullNetnon-differentiable components of architectures
WebQSP MetaQA52.746.767.868.1KV-Meminitial memory retrieval
1-hop96.295.897.597.097.0
2-hop81.195.425.189.994.899.9VRNquestion-specific
3-hop72.379.710.162.577.291.4GRAFTNetsubgraph retrieval
Grid 5-hop98.4PullNetall iterative retrievals
10-hop89.71ReifKB(ours)none
", + "bbox": [ + 173, + 99, + 890, + 231 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "KB, and then use graph CNN-like methods (Kipf & Welling, 2016) to “reason” with these graphs. Although not superior, ReifKB model is competitive with these approaches, especially on the most difficult 3-hop setting. ", + "bbox": [ + 174, + 304, + 825, + 348 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "A small extension to this model is to mask the seed entities out of the answers (see Appendix E). This model (given as ReifKB $^ +$ mask) has better performance than GRAFT-Net on 2-hop and 3-hop questions. ", + "bbox": [ + 174, + 353, + 823, + 396 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For KB completion, we evaluated the model on the NELL-995 dataset (Xiong et al., 2017) which is paired with a KB with $1 5 4 \\mathrm { k }$ facts, $7 5 \\mathrm { k }$ entities, and 200 relations. On the left of Table 4 we compare our model with three popular embedding approaches (results are from Das et al. (2017)). The reified KB model outperforms DistMult (Yang et al., 2014), is slightly worse than ConvE (Dettmers et al., 2018), and is comparable to ComplEx (Trouillon et al., 2017). ", + "bbox": [ + 174, + 402, + 825, + 473 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The competitive performance of the ReifKB model is perhaps surprising, since it has many fewer parameters than the baseline models—only one float and two integers per KB triple, plus a small number of parameters to define the $f _ { i } ^ { t }$ functions for each relation. The ability to use fewer parameters is directly related to the fact that our model directly uses inference on the existing symbolic $K B$ in its model, rather than having to learn embeddings that approximate this inference. Or course, since the KB is incomplete, some learning is still required, but learning is quite different: the system learns logical inference chains in the incomplete KB that approximate a target relation. In this setting for KBC, the ability to perform logical inference “out of the box” appears to be very advantageous. ", + "bbox": [ + 174, + 479, + 825, + 592 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Another relative disadvantage of KB embedding methods is that KB embeddings are generally transductive—they only make predictions for entities seen in training. As a non-transductive baseline, we also compared to the MINERVA model, which uses reinforcement learning (RL) methods to learn how to traverse a KB to find a desired answer. Although RL methods are less suitable as “neural modules”, MINERVA is arguably a plausible competitor to end-to-end learning with a reified KB. ", + "bbox": [ + 174, + 597, + 825, + 667 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "MINERVA slightly outperforms our simple KB completion model on the NELL-995 task. However, unlike our model, MINERVA is trained to find a single answer, rather than trained to infer a set of answers. To explore this difference, we compared to MINERVA on the grid task under two conditions: (1) the KB relations are the grid directions north, south, east and west, so the output of the target chain is always a single grid location, and (2) the KB relations also include a “vertical move” (north or south) and a “horizontal move” (east or west), so the result of the target chain can be a set of locations. As expected MINERVA’s performance drops dramatically in the second case, from $9 9 . 3 \\%$ ", + "bbox": [ + 173, + 674, + 825, + 773 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/c8ee26a6726063bedbf5a7b0491400c80af6719223bc38f75678c771f23ae088.jpg", + "table_caption": [ + "Table 4: Left: Hits $@ 1$ and Hits $@ 1 0$ for KB completion on NELL 995. Starred KB completion methods are transductive, and do not generalize to entities not seen in training. Right: Comparison to MINERVA on several tasks for Hits $@ 1$ . " + ], + "table_footnote": [], + "table_body": "
NELL-995NELL-995ReifKB (Ours) 64.1MINERVA 66.3
H@1H@10
ReifKB (Ours)64.182.4Grid with seed entity
DistMult*61.079.510-hop NSEW98.999.3
ComplEx*61.282.710-hop NSEW-VH73.634.4
ConvE*67.286.4MetaQA 3-hop72.341.7
", + "bbox": [ + 215, + 800, + 781, + 881 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/c8db1f8f580fb260925ea697808c83694bfe6f3550fdd658f4ba94326060deb9.jpg", + "table_caption": [ + "Table 5: Left, time to run 10K examples for KBs of different size. Right, time for 10k examples vs Hits $@ 1$ performance for ReifKB compared to three baselines on MetaQA-3hop questions. " + ], + "table_footnote": [], + "table_body": "
●Reif KB● KV-mem● GRAFT-Net●PulINet
NELL-995MetaQA-3hopWebQuestionsSP100
#Facts154,213196,45343,724,17575
#Entities75,49243,23012,942,79850
#Relations200961625
Time (seconds)44.372.618200 250 500
", + "bbox": [ + 186, + 104, + 812, + 193 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Hits $@ 1$ to $34 . 4 \\%$ , while our model’s performance is more robust. MetaQA answers can also be sets, so we also modified MetaQA so that MINERVA could be used (by making the non-entity part of the sentence the “relation” input and the seed entity the “start node” input) and noted a similarly poor performance for MINERVA. These results are shown on the right of Table 4. ", + "bbox": [ + 174, + 252, + 825, + 308 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In Tables 5 we compare the training time of our model with minibatch size of 10 on NELL-995, MetaQA, and WebQuestionsSP. With over 40 million facts and nearly 13 million entities from Freebase, it takes less than 10 minutes to run one epoch over WebQuestionsSP (with 3097 training examples) on four P100 GPUs. In the accompanying plot, we also summarize the tradeoffs between accuracy and training time for our model and three baselines on the MetaQA 3-hop task. (Here ideal performance is toward the upper left of the plot). The state-of-the-art PullNet Sun et al. (2019) system, which uses a learned method to incrementally retrieve from the KB, is about 15 times slower than the reified KB system. GRAFT-Net is only slightly less accurate, but also only slightly faster: recall that GRAFT-Net uses a heuristically selected subset (of up to 500 triples) from the KB for each query, while our system uses the full KB. Here the full KB is about 400 times as large as the question-specific subset used by GRAFT-Net. A key-value memory baseline including the full KB is nearly three times as slow as our system, while also performing quite poorly. ", + "bbox": [ + 174, + 315, + 825, + 482 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 505, + 344, + 520 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The relation-set following operation using reified KBs is implemented in an open-source package called NQL, for neural query language. NQL implements a broader range of operations for manipulating KBs, which are described in a companion paper (Cohen et al., 2019). This paper focuses on implementation and evaluation of the relation-set following operation with different KB representations, issues not covered in the companion paper. ", + "bbox": [ + 174, + 535, + 825, + 604 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "TensorLog (Cohen et al., 2017), a probabilistic logic which also can be compiled to Tensorflow, and hence is another differentiable approach to neuralizing a KB. TensorLog is also based on sparse matrices, but does not support relation sets, making it unnatural to express the models shown in this paper, and does not use the more efficient reified KB representation. The differentiable theorem prover (DTP) is another differentiable logic (Rocktäschel & Riedel, 2017), but DPT appears to be much less scalable: it has not been applied to KBs larger than a few thousand triples. The Neural ILP system (Yang et al., 2017) uses approaches related to late mixing together with an LSTM controller to perform KB completion and some simple QA tasks, but it is a monolithic architecture focused on rule-learning, while in contrast we propose a re-usable neural component, which can be used in as a component in many different architectures, and a scalable implementation of this. It has also been reported that neural ILP does not scale to the size of the NELL995 task (Das et al., 2017). ", + "bbox": [ + 174, + 611, + 825, + 763 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The goals of this paper are related to KB embedding methods, but distinct. In KB embedding, models are generally fully differentiable, but it is not considered necessary (or even desirable) to accurately match the behavior of inference in the original KB. Being able to construct a learned approximation of a symbolic KB is undeniably useful in some contexts, but embedded KBs also have many disadvantages. In particular, they are much larger than a reified KB, with many more learned parameters—typically a long dense vector for every KB entity. Embedded models are typically evaluated by their ability to score a single triple accurately, and many models are not capable of executing multi-step KB inferences efficiently; further, models that do allow multi-step inference are known to produce cascaded errors on long reasoning chains (Guu et al., 2015; Hamilton et al., 2018). In contrast we focus on accurate models of reasoning in a symbolic KB, which requires consideration of novel scalability issues associated with sparse matrice representations. ", + "bbox": [ + 174, + 771, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mathematically, our definition of relation-set following is much like the bilinear model for path following from Guu et al. (2015); however, we generalize this to path queries that include weighted sets of relations, allowing the relations in paths to be learned. Similar differences apply to the work of Hamilton et al. (2018), which extends the work of Guu et al. (2015) to include intersection operations. The vector representation used here for weighted sets in a reified KB makes intersection trivial to implement, as intersection corresponds to Hadamard product. Conveniently set union also corresponds to vector sum, and the complement of $X$ is ${ \\bf 1 } - { \\bf x }$ , which is perhaps why only a single additional neural operation is needed to support the KB reasoning tasks needed for the five benchmark tasks considered here. ", + "bbox": [ + 174, + 103, + 825, + 228 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Neural architectures like memory networks (Weston et al., 2014), or other architectures that use attention over some data structure approximating assertions (Andreas et al., 2016; Gupta & Lewis, 2018) can be used to build soft versions of relation-set following: however, they also do not scale well to large KBs, so they are typically used either with a non-differentiable ad hoc retrieval mechanism, or else in cases where a small amount of information is relevant to a question (Weston et al., 2015; Zhong et al., 2017). Similarly graph CNNs (Kipf & Welling, 2016) also can be used for reasoning, and often do use sparse matrix multiplication, but again existing implementations have not been scaled to tens of millions of triples/edges or millions of entities/graph nodes. Additionally, while graph CNNs have been used for reasoning tasks, the formal connection between them and logical reasoning remains unclear, whereas there is a precise connection between relation-set following and inference. ", + "bbox": [ + 174, + 236, + 825, + 388 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Reinforcement learning (RL) methods have been used to learn mappings from natural-language questions to non-differentiable logical representations (Liang et al., 2016; 2018) and have also been applied to KB completion tasks (Das et al., 2017; Xiong et al., 2017). Above we compared experimentally to MINERVA, one such method; however, the gradient-based approaches enabled by our methods are generally preferred as being easier to implement and tune on new problems, and easier to combine in a modular way with other architectural elements. ", + "bbox": [ + 174, + 395, + 825, + 478 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 491, + 330, + 507 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We introduced here a novel way of representing a symbolic knowledge base (KB) called a sparsematrix reified KB. This representation enables neural modules that are fully differentiable, faithful to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable enough to use with realistically large KBs. In a reified KB, all KB relations are represented with three sparse matrices, which can be distributed across multiple GPUs, and symbolic reasoning on realistic KBs with many relations is much faster than with naive implementations—more than four orders of magnitude faster on synthetic-data experiments compared to naive sparse-matrix implementations. ", + "bbox": [ + 174, + 512, + 825, + 611 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This new architectural component leads to radically simpler architectures for neural semantic parsing from denotations and KB completion—in particular, they make it possible to learn neural KBQA models in a completely end-to-end way, mapping from text to KB entity sets, for KBs with tens of millions of triples and entities and hundreds of relations. ", + "bbox": [ + 174, + 617, + 825, + 672 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 689, + 326, + 702 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The authors are greatful to comments and suggestions from Fernando Peireira, Bhuwan Dhingra, and many other colleagues on earlier versions of this work. ", + "bbox": [ + 173, + 713, + 825, + 741 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 285, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Martín Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for large-scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and Implementation ({OSDI} 16), pp. 265–283, 2016. ", + "bbox": [ + 173, + 126, + 826, + 183 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48, 2016. ", + "bbox": [ + 174, + 190, + 825, + 233 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from question-answer pairs. In Proceedings of the 2013 Conference on Empirical Methods in Natural Language Processing, pp. 1533–1544, 2013. ", + "bbox": [ + 174, + 242, + 823, + 285 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kurt Bollacker, Colin Evans, Praveen Paritosh, Tim Sturge, and Jamie Taylor. Freebase: a collaboratively created graph database for structuring human knowledge. In Proceedings of the 2008 ACM SIGMOD international conference on Management of data, pp. 1247–1250. AcM, 2008. ", + "bbox": [ + 173, + 292, + 825, + 337 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko. Translating embeddings for modeling multi-relational data. In Advances in neural information processing systems, pp. 2787–2795, 2013. ", + "bbox": [ + 173, + 344, + 826, + 387 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "William W Cohen, Fan Yang, and Kathryn Rivard Mazaitis. Tensorlog: Deep learning meets probabilistic DBs. arXiv preprint arXiv:1707.05390, 2017. ", + "bbox": [ + 173, + 396, + 823, + 425 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "William W. Cohen, Matthew Siegler, and R. Alex Hofer. Neural query language: A knowledge base query language for Tensorflow. CoRR, abs/1905.06209, 2019. URL http://arxiv.org/ abs/1905.06209. ", + "bbox": [ + 174, + 433, + 826, + 476 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishnamurthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning over paths in knowledge bases using reinforcement learning. arXiv preprint arXiv:1711.05851, 2017. ", + "bbox": [ + 174, + 484, + 826, + 540 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Pradeep Dasigi, Matt Gardner, Shikhar Murty, Luke Zettlemoyer, and Eduard Hovy. Iterative search for weakly supervised semantic parsing. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 2669–2680, Minneapolis, Minnesota, June 2019. Association for Computational Linguistics. doi: 10.18653/v1/N19-1273. URL https: //www.aclweb.org/anthology/N19-1273. ", + "bbox": [ + 173, + 549, + 825, + 635 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Luc De Raedt, Angelika Kimmig, and Hannu Toivonen. Problog: A probabilistic Prolog and its application in link discovery. In IJCAI, volume 7, pp. 2462–2467. Hyderabad, 2007. ", + "bbox": [ + 171, + 642, + 825, + 671 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tim Dettmers, Pasquale Minervini, Pontus Stenetorp, and Sebastian Riedel. Convolutional 2d knowledge graph embeddings. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 173, + 679, + 825, + 709 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. ", + "bbox": [ + 171, + 717, + 823, + 747 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Catherine Finegan-Dollak, Jonathan K Kummerfeld, Li Zhang, Karthik Ramanathan, Sesh Sadasivam, Rui Zhang, and Dragomir Radev. Improving text-to-SQL evaluation methodology. arXiv preprint arXiv:1806.09029, 2018. ", + "bbox": [ + 174, + 755, + 823, + 797 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nitish Gupta and Mike Lewis. Neural compositional denotational semantics for question answering. CoRR, abs/1808.09942, 2018. URL http://arxiv.org/abs/1808.09942. ", + "bbox": [ + 174, + 806, + 823, + 835 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. arXiv preprint arXiv:1506.01094, 2015. ", + "bbox": [ + 174, + 843, + 821, + 872 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Will Hamilton, Payal Bajaj, Marinka Zitnik, Dan Jurafsky, and Jure Leskovec. Embedding logical queries on knowledge graphs. In Advances in Neural Information Processing Systems, pp. 2026– 2037, 2018. ", + "bbox": [ + 176, + 881, + 826, + 922 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907, 2016. ", + "bbox": [ + 169, + 103, + 825, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chen Liang, Jonathan Berant, Quoc Le, Kenneth D Forbus, and Ni Lao. Neural symbolic machines: Learning semantic parsers on freebase with weak supervision. arXiv preprint arXiv:1611.00020, 2016. ", + "bbox": [ + 174, + 140, + 823, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented policy optimization for program synthesis and semantic parsing. In Advances in Neural Information Processing Systems, pp. 9994–10006, 2018. ", + "bbox": [ + 176, + 191, + 825, + 236 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations of words and phrases and their compositionality. In Advances in neural information processing systems, pp. 3111–3119, 2013. ", + "bbox": [ + 174, + 243, + 823, + 286 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alexander H. Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason Weston. Key-value memory networks for directly reading documents. CoRR, abs/1606.03126, 2016. URL http://arxiv.org/abs/1606.03126. ", + "bbox": [ + 173, + 295, + 826, + 338 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dipendra Misra, Ming-Wei Chang, Xiaodong He, and Wen-tau Yih. Policy shaping and generalized update equations for semantic parsing from denotations. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 2442–2452, 2018. ", + "bbox": [ + 173, + 345, + 826, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Panupong Pasupat and Percy Liang. Inferring logical forms from denotations. arXiv preprint arXiv:1606.06900, 2016. ", + "bbox": [ + 173, + 397, + 823, + 426 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tim Rocktäschel and Sebastian Riedel. End-to-end differentiable proving. In Advances in Neural Information Processing Systems, pp. 3788–3800, 2017. ", + "bbox": [ + 173, + 434, + 825, + 465 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Peter Shaw, Philip Massey, Angelica Chen, Francesco Piccinno, and Yasemin Altun. Generating logical forms from graph representations of text and entities. arXiv preprint arXiv:1905.08407, 2019. ", + "bbox": [ + 173, + 472, + 826, + 515 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool, Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, Ryan Sepassi, and Blake A. Hechtman. Mesh-tensorflow: Deep learning for supercomputers. CoRR, abs/1811.02084, 2018. URL http://arxiv.org/abs/1811.02084. ", + "bbox": [ + 173, + 523, + 826, + 580 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Haitian Sun, Bhuwan Dhingra, Manzil Zaheer, Kathryn Mazaitis, Ruslan Salakhutdinov, and William W Cohen. Open domain question answering using early fusion of knowledge bases and text. EMNLP, 2018. ", + "bbox": [ + 174, + 588, + 823, + 632 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Haitian Sun, Tania Bedrax-Weiss, and William W Cohen. Pullnet: Open domain question answering with iterative retrieval on knowledge bases and text. arXiv preprint arXiv:1904.09537, 2019. ", + "bbox": [ + 169, + 640, + 825, + 670 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Théo Trouillon, Christopher R Dance, Éric Gaussier, Johannes Welbl, Sebastian Riedel, and Guillaume Bouchard. Knowledge graph completion via complex tensor factorization. The Journal of Machine Learning Research, 18(1):4735–4772, 2017. ", + "bbox": [ + 174, + 679, + 825, + 723 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint arXiv:1410.3916, 2014. ", + "bbox": [ + 169, + 731, + 826, + 761 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jason Weston, Antoine Bordes, Sumit Chopra, Alexander M Rush, Bart van Merriënboer, Armand Joulin, and Tomas Mikolov. Towards ai-complete question answering: A set of prerequisite toy tasks. arXiv preprint arXiv:1502.05698, 2015. ", + "bbox": [ + 173, + 768, + 825, + 811 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Wenhan Xiong, Thien Hoang, and William Yang Wang. Deeppath: A reinforcement learning method for knowledge graph reasoning. arXiv preprint arXiv:1707.06690, 2017. ", + "bbox": [ + 173, + 820, + 823, + 849 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Bishan Yang, Wen-tau Yih, Xiaodong He, Jianfeng Gao, and Li Deng. Embedding entities and relations for learning and inference in knowledge bases. arXiv preprint arXiv:1412.6575, 2014. ", + "bbox": [ + 173, + 857, + 821, + 887 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge base reasoning. In Advances in Neural Information Processing Systems, pp. 2319–2328, 2017. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Wen-tau Yih, Ming-Wei Chang, Xiaodong He, and Jianfeng Gao. Semantic parsing via staged query graph generation: Question answering with knowledge base. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), volume 1, pp. 1321–1331, 2015. ", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Wen-tau Yih, Matthew Richardson, Chris Meek, Ming-Wei Chang, and Jina Suh. The value of semantic parse labeling for knowledge base question answering. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), volume 2, pp. 201–206, 2016. ", + "bbox": [ + 174, + 181, + 825, + 238 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yuyu Zhang, Hanjun Dai, Zornitsa Kozareva, Alexander J Smola, and Le Song. Variational reasoning for question answering with knowledge graph. In AAAI, 2018. ", + "bbox": [ + 176, + 247, + 823, + 276 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from natural language using reinforcement learning. arXiv preprint arXiv:1709.00103, 2017. ", + "bbox": [ + 174, + 285, + 825, + 314 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A ADDITIONAL BACKGROUND AND EXTENSIONS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 596, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "KBs, entities, and relations, and types. In the more general case, a KB consists of entities, relations, and types. Again use $x$ to denote an entity and $r$ to denote a relation. We also assume each entity $x$ has a type, written $t y p e ( x )$ , and let $N _ { \\tau }$ denote the number of entities of type $\\tau$ . Each entity $x$ in type $\\tau$ has a unique index $i n d e x _ { \\tau } ( x )$ , which is an integer between 1 and $N _ { \\tau }$ . We write $x _ { \\tau , i }$ for the entity that has index $i$ in type $\\tau$ , or $x _ { i }$ if the type is clear from context. ", + "bbox": [ + 173, + 137, + 825, + 208 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Every relation $r$ has a subject type $\\tau _ { s u b j }$ and an object type $\\tau _ { o b j }$ , which constrain the types of $x$ and $x ^ { \\prime }$ for any pair $( x , x ^ { \\prime } ) \\in r$ . Hence $r$ can be encoded as a subset of $\\{ 1 , \\dots , N _ { \\tau _ { s u b j } } \\} \\times \\{ 1 , \\dots , N _ { \\tau _ { o b j } } \\}$ Relations with the same subject and object types are called type-compatible. ", + "bbox": [ + 174, + 214, + 823, + 257 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Our differentiable operations are based on typed weighted sets, where again each element $x$ of weighted set $X$ is associated with a non-negative real number, written $\\omega \\| x \\in X ]$ , and we define $\\omega \\bar { \\left\\| { \\boldsymbol { x } } \\in { \\boldsymbol { X } } \\right\\| } \\equiv 0$ for all $x \\not \\in X$ . A set $X$ has a type $t y p e ( X ) = \\tau$ , and all members of $X$ must be entities of type $\\tau$ . ", + "bbox": [ + 174, + 263, + 825, + 319 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We also assume every relation $r$ in a KB is associated with an entity $x _ { r }$ , and hence, an index and a type. Sets of relations $R$ are allowed only if all members are type-compatible. For example $R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}$ might be a set of type-compatible relations. ", + "bbox": [ + 174, + 327, + 823, + 369 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A weighted set $X$ of type $\\tau$ can be encoded as an entity-set vector $\\mathbf { x } \\in \\mathbb { R } ^ { N _ { \\tau } }$ , where the $i$ -th component of $\\mathbf { X }$ is the weight of the $i$ -th entity of that type in the set $X$ : e.g., $\\mathbf { x } [ i n d e x _ { \\tau } ( x ) ] = { \\boldsymbol { \\omega } } [ x \\in X ]$ . We also use $t y p e ( \\mathbf { x } )$ to denote the type $\\tau$ of the set encoded by $\\mathbf { X }$ . ", + "bbox": [ + 173, + 375, + 825, + 417 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A relation $r$ with subject type $\\tau _ { 1 }$ and object type $\\tau _ { 2 }$ can be encoded as a relation matrix ${ \\mathbf { M } } _ { r } \\in { \\mathbf { \\Omega } }$ $\\mathbb { R } ^ { N _ { \\tau _ { 1 } } \\times N _ { \\tau _ { 2 } } }$ . ", + "bbox": [ + 174, + 424, + 823, + 452 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Background on sparse matrices. A COO encoding consists of a $N _ { r } \\times 2$ matrix $\\mathbf { I n d } _ { r }$ containing pairs of entity indices, and a parallel vector $\\mathbf { w } _ { r } \\in \\mathbb { R } ^ { \\widetilde { N } _ { r } }$ containing the weights of the corresponding entity pairs. In this encoding, if $( i , j )$ is row $k$ of Ind, then $\\mathbf { M } _ { r } [ i , j ] = \\mathbf { w } _ { r } [ k ]$ , and if $( i , j )$ does not appear in $\\mathbf { I n d } _ { r }$ , then $\\mathbf { M } [ i , j ]$ is zero. ", + "bbox": [ + 174, + 459, + 825, + 517 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Extension to soft KBs. In the paper, we assume the non-zero weights in a relation matrix ${ { \\bf { M } } _ { r } }$ are all equal to 1.0. This can be relaxed: if assertions in a KB are associated with confidences, then this confidence can be stored in ${ { \\bf { M } } _ { r } }$ . In this case, the reified KB must be extended to encode the weight for a triple: we find it convenient to redefine ${ { \\bf { M } } _ { r e l } }$ to hold that weight. In particular if the weight for the the $\\ell$ -th triple $r _ { k } ( x _ { i } , x _ { j } )$ is $w _ { \\ell }$ , then we let ", + "bbox": [ + 173, + 522, + 825, + 593 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e37e7ae19e89b9fe7b9f8de705b8d88c9025c1d528dc117996127546a0c963c6.jpg", + "text": "$$\n\\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv { \\left\\{ \\begin{array} { l l } { w _ { \\ell } \\ \\mathrm { i f } \\ m = k _ { \\ell } } \\\\ { 0 \\ \\mathrm { e l s e } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 390, + 606, + 598, + 641 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B PROOF OF CLAIM 1 ", + "text_level": 1, + "bbox": [ + 176, + 664, + 369, + 680 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Claim 1 The support of follow $\\scriptstyle ( \\mathbf { x } , \\pmb { r } )$ is exactly the set of R-neighbors( $X )$ . ", + "bbox": [ + 173, + 699, + 656, + 715 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To better understand this claim, let $\\mathbf { z } = f o l l o w ( \\mathbf { x } , \\mathbf { r } )$ . The claim states $\\mathbf { z }$ can approximate the $R$ neighborhood of any hard sets $R , X$ by setting to zero the appropriate components of $\\mathbf { X }$ and $\\mathbf { r }$ . It is also clear that $\\mathbf { z } [ j ]$ decreases when one decreases the weights in r of the relations that link $x _ { j }$ to entities in $X$ , and likewise, $\\mathbf { z } [ j ]$ decreases if one decreases the weights of the entities in $X$ that are linked to $x _ { j }$ via relations in $R$ , so there is a smooth, differentiable path to reach this approximation. ", + "bbox": [ + 173, + 732, + 825, + 803 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "More formally, consider first a matrix ${ { \\bf { M } } _ { r } }$ encoding a single binary relation $r$ , and consider the vector $\\mathbf { x } ^ { \\prime } = \\mathbf { x } \\mathbf { M } _ { r }$ . As weighted sets, $X$ and $r$ have non-negative entries, so clearly for all $i$ , ", + "bbox": [ + 171, + 809, + 823, + 838 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/790d2fa9b05e4f281adca5a49a2a88e84a05c2231fa20e06b0fd8a0cc52f8c62.jpg", + "text": "$$\n\\mathbf { x } ^ { \\prime } [ j ] \\neq 0 \\mathrm { ~ i f f ~ } \\exists j : \\mathbf { M } _ { r } [ i , j ] \\neq 0 \\land \\mathbf { x } [ i ] \\neq 0\n$$", + "text_format": "latex", + "bbox": [ + 250, + 851, + 531, + 868 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and so if $\\mathbf { r }$ is a one-hot vector for the set $\\{ r \\}$ , then the support of $f o l l o w ( \\mathbf { x } , \\mathbf { r } )$ is exactly the set $r$ -neighbors $( X )$ . Finally note that the mixture $\\mathbf { M } _ { R }$ has the property that ${ \\bf M } _ { R } [ i ( e _ { 1 } ) , i ( e _ { 2 } ) ] > 0$ exactly when $e _ { 1 }$ is related to $e _ { 2 }$ by some relation $r \\in R$ . ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The major problem with naive mixing is that, in the absence of general sparse tensor contractions, it is difficult to adapt to mini-batches—i.e., a setting in which $\\mathbf { X }$ and $\\mathbf { r }$ are replaced with matrices $\\mathbf { X }$ and $\\mathbf { R }$ with minibatch size $b$ . An alternative strategy is late mixing, which mixes the output of many single-relation following steps, rather than mixing the KB itself: ", + "bbox": [ + 173, + 132, + 825, + 189 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/5fd9da30082a9c8d474b329e2d980546fdd5067c5dbfa7bb2c53bcb814075e10.jpg", + "text": "$$\nf o l l o w ( { \\mathbf { X } } , { \\mathbf { R } } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( { \\mathbf { R } } [ : , k ] \\cdot { \\mathbf { X } } { \\mathbf { M } } _ { k } )\n$$", + "text_format": "latex", + "bbox": [ + 379, + 194, + 616, + 238 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Here $\\mathbf { R } [ : , k ]$ , the $k$ -th column of $\\mathbf { R }$ , is “broadcast” to element of the matrix $\\mathbf { X M } _ { k }$ . As noted in the body of the text, while there are $N _ { R }$ matrices $\\mathbf { X M } _ { k }$ , each of size $O ( b N _ { E } )$ , they need not all be stored at once, so the space complexity becomes $O ( b N _ { E } + b N _ { R } + N _ { T } )$ ; however we must now sum up $N _ { R }$ dense matrices. ", + "bbox": [ + 173, + 243, + 825, + 299 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The implementation of relation-set following for the reified KB can be straightforwardedly extended to a minibatch: ", + "bbox": [ + 171, + 305, + 823, + 333 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/adf5729b59dbf1ae158cc89bfe0704d02036f5cf54735c05cd231229711d6b21.jpg", + "text": "$$\nf o l l o w ( \\mathbf { X } , \\mathbf { R } ) = ( \\mathbf { X } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { R } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }\n$$", + "text_format": "latex", + "bbox": [ + 357, + 330, + 635, + 352 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D DISTRIBUTED MATRIX MULTIPLICATION ", + "text_level": 1, + "bbox": [ + 173, + 369, + 545, + 386 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Matrix multiplication $\\mathbf { x M }$ was distributed as follows: $\\mathbf { X }$ can be split into a “horizontal stacking” of $m$ submatrices, which we write as $\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { m } \\right]$ , and $\\mathbf { M }$ can be similarly partitioned into $m ^ { 2 }$ submatrices. We then have the result that ", + "bbox": [ + 173, + 398, + 826, + 441 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/7a710c684b53bfed47f68fa5155755cd9dffead3f8f8bcb45d57e9ca0943e93f.jpg", + "text": "$$\n\\mathbf { x M } = [ \\mathbf { x } _ { 1 } ; \\mathbf { x } _ { 2 } ; \\ldots ; \\mathbf { x } _ { m } ] \\left[ { \\begin{array} { c c c c } { \\mathbf { M } _ { 1 , 1 } } & { \\mathbf { M } _ { 1 , 2 } } & { \\ldots } & { \\mathbf { M } _ { 1 , m } } \\\\ { \\vdots } & { \\vdots } & { } & { \\vdots } \\\\ { \\mathbf { M } _ { m , 1 } } & { \\mathbf { M } _ { m , 2 } } & { \\ldots } & { \\mathbf { M } _ { m , m } } \\end{array} } \\right] = \\left[ ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { 1 } \\mathbf { M } _ { i , 1 } ) ; \\ldots ; ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { m } \\mathbf { M } _ { i , m } ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 181, + 444, + 820, + 502 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This can be computed without storing either $\\mathbf { X }$ or $\\mathbf { M }$ on a single machine, and mathematically applies to both dense and sparse matrices. In our experiments we distibuted the matrices that define a reified KB “horizontally”, so that different triple ids $\\ell$ are stored on different GPUs. ", + "bbox": [ + 173, + 506, + 823, + 549 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Specifically, we shard the “triple index” dimension $N _ { T }$ of matrices $\\mathbf { M } _ { s u b j }$ , ${ { \\bf { M } } _ { r e l } }$ and $\\mathbf { M } _ { o b j }$ in Eq. 4 to perform a distributed relation-set following on the reified KB. Let $\\mathbf { M } _ { s u b j , i }$ be the $\\overrightarrow { \\imath } ^ { \\prime }$ th shard of matrix $\\mathbf { M } _ { s u b j }$ , and thus $\\mathbf { M } _ { s u b j } = [ \\mathbf { M } _ { s u b j , 1 } ^ { T } ; . . . ; \\mathbf { M } _ { s u b j , m } ^ { T } ] _ { . } ^ { T } \\in \\mathbb { R } ^ { N _ { T } \\times N _ { E } }$ . $\\mathbf { M } _ { o b j }$ and ${ { \\bf { M } } _ { r e l } }$ are represented in the similar way. A distributed relation-set following is computed as a combination of relation-set following results on all shards of the KB. ", + "bbox": [ + 174, + 554, + 825, + 628 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/0b5e59de4740a902b50e82441c19aa176665e564ed30a29bae3358f76c2e650b.jpg", + "text": "$$\n\\begin{array} { l } { f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = ( \\mathbf { x } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j } } \\\\ { \\quad \\quad = \\left( [ \\mathbf { x } \\mathbf { M } _ { s u b j , 1 } ^ { T } ; \\dots ; \\mathbf { x } \\mathbf { M } _ { s u b j , m } ^ { T } ] \\odot [ \\mathbf { r } \\mathbf { M } _ { r e l , 1 } ^ { T } ; \\dots ; \\mathbf { r } \\mathbf { M } _ { r e l , m } ^ { T } ] \\right) \\left[ \\begin{array} { c } { \\mathbf { M } _ { o b j , 1 } } \\\\ { \\vdots } \\\\ { \\mathbf { M } _ { o b j , m } } \\end{array} \\right] } \\\\ { \\quad \\quad = \\displaystyle \\sum _ { i = 1 } ^ { m } ( \\mathbf { x } \\mathbf { M } _ { s u b j , i } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l , i } ^ { T } ) \\mathbf { M } _ { o b j , i } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 218, + 631, + 774, + 755 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This method can be easily extended to a mini-batch of examples $\\mathbf { X }$ . ", + "bbox": [ + 173, + 765, + 614, + 780 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E EXPERIMENTAL DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 799, + 419, + 816 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Reproducing experiments. To reproduce these experiments, first download and install the Google language package5. Many of the experiments in this paper can be reproduced using scripts stored in the some subdirectory of the source directory language/nql/demos: for example, the scalability experiments of Figure 1 can be performed using scripts in language/nql/demos/gridworld_scaling/. ", + "bbox": [ + 173, + 830, + 826, + 902 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Grid experiments. In the grid experiments, the entity vector $\\mathbf { X }$ is a randomly-chosen singleton set, and the relation vector r weights relations roughly uniformly—more specifically, each relation has weight $1 { + } \\epsilon$ where $\\epsilon$ is a drawn uniformly at random between 0 and 0.001.6 We vary the number of relations by inventing $m$ new relation names and assigning existing grid edges to each new relation. These experiments were conducted on a Titan $\\mathrm { X p }$ GPU with 12Gb of memory. ", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For key-value networks, the key is the concatenation of a relation and a subject entity, and the value is the object entity. We considered only the run-time for queries on an untrained randomly-initialized network (since run-time performance on a trained network would be the same); however, it should be noted that considerable time that might be needed to train the key-value memory to approximate the KB. (In fact, it is not obvious under what conditions a KB can be approximated well by the key-value memory.) ", + "bbox": [ + 174, + 180, + 825, + 263 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We do not show results on the grid task for smaller minibatch sizes, but both reified and late mixing are about $4 0 \\mathrm { x }$ slower with $b = 1$ than with $b = 1 2 8$ . ", + "bbox": [ + 174, + 270, + 821, + 299 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "WebQuestionsSP experiments. For efficiency, on this problem we exploit the type structure of the problem (see Appendix A). Our model uses two types of nodes, CVT and entity nodes. The model also uses three types of relations: relations mapping entities to entities, relations mapping entities to CVT nodes; and relations mapping CVT nodes to entity nodes. ", + "bbox": [ + 174, + 306, + 825, + 362 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "MetaQA experiments. An example of a 2-hop question in MetaQA could be “Who co-starred with Robert Downey Jr. in their movies?”, and the answer would be a set of actor entities, e.g., “Chris Hemsworth”, “Thomas Stanley”, etc. Triples in the knowledge base are represented as (subject, relation, object) triples, e.g., (“Robert Downey Jr.”, “act_in”, “Avengers: Endgame”), (“Avengers: Endgame”, “stars”, “Thomas Stanley”), etc. The quoted strings here all indicate KB entities. ", + "bbox": [ + 174, + 369, + 825, + 439 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We also observed that in the MetaQA 2-hop and 3-hop questions, the questions often exclude the seed entities (e.g., “other movies with the same director as Pulp Fiction”). This can be modeled by masking out seed entities from the predictions after the second hop (ReifKB $^ +$ mask in the table). ", + "bbox": [ + 174, + 445, + 825, + 488 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/26afe5533113bd17da255f42714bc55be0ea3cf57ffd5b77200921796a37e0d4.jpg", + "table_caption": [ + "Timing on MetaQA and other natural problems. The raw data for the bubble plot of Table 5 is below. " + ], + "table_footnote": [ + "Discussion of the KB completion model. The KB completion model is " + ], + "table_body": "
Time (seconds)Accuracy (hits@1)Method
72.679.7ReifKB
189.810.1KV-mem
28.977.2GRAFT-Net
1131.091.4PullNet
", + "bbox": [ + 316, + 535, + 684, + 609 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/99fea0cb2f46b12e261d245e1ed9b28bc781b4c5692f155c4ee54c39339175ba.jpg", + "text": "$$\nt = 1 , \\dots , T \\colon \\ \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\ \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 375, + 645, + 761, + 662 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "It may not be immediately obvious why we used ", + "bbox": [ + 173, + 678, + 493, + 693 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/59233240114df4037089620f17c83d4b131874be5f56444d1f775551db5f85a7.jpg", + "text": "$$\n\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 400, + 707, + 596, + 727 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "instead of the simpler ", + "bbox": [ + 173, + 741, + 318, + 756 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e8cddb7f9993360fa8ca5ebde7b42f398cf7beb225c6f4d0dda47838dba58fa5.jpg", + "text": "$$\n\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 426, + 765, + 570, + 785 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In the main text, we say that this “gives the model access to outputs of all chains of length less than $t ^ { \\ast }$ This statement is probably easiest to understand by considering a concete example. Let us simplify notation slightly by dropping the subscripts and writing follow $( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )$ as $f ^ { t } ( \\mathbf { \\bar { x } } ^ { t - 1 } )$ . Now expand the definition of $\\mathbf { x } ^ { t }$ for a few small values of $t$ , using the linearity of the definition of relation-set ", + "bbox": [ + 173, + 800, + 825, + 857 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "following where appropriate to simplify: ", + "bbox": [ + 174, + 103, + 441, + 119 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/7c7a23e29df4774f88ec352ade65abc1e34a183fc9216d6202cf89fb7e01f791.jpg", + "text": "$$\n{ \\begin{array} { r c l } { \\mathbf { x } ^ { 1 } } & { = } & { f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ { \\mathbf { x } ^ { 2 } } & { = } & { f ^ { 2 } ( \\mathbf { x } ^ { 1 } ) + \\mathbf { x } ^ { 1 } } \\\\ & { = } & { f ^ { 2 } \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) \\right. \\right. } \\\\ & { = } & { \\left. f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right. } \\\\ { \\mathbf { x } ^ { 3 } } & { = } & { f ^ { 3 } ( \\mathbf { x } ^ { 2 } ) + \\mathbf { x } ^ { 2 } } \\\\ & { = } & { f ^ { 3 } \\left( \\left( f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) \\right) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ & { = } & { f ^ { 3 } { \\big ( } f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) \\big ) } + f ^ { 3 } { \\big ( } f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 3 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) } \\end{array} }\n$$", + "text_format": "latex", + "bbox": [ + 168, + 122, + 816, + 262 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "A pattern is now clear: with this recursive definition $\\mathbf { x } ^ { t }$ expands to a mixture of many paths, each of which applies a different subset of $f ^ { 1 }$ , . . . , $f ^ { t }$ to the initial input $\\mathbf { X }$ . Since the weights of the mixture can to a large extent be controlled by varying the norm of the relation vectors $\\mathbf { r } ^ { 1 } , \\ldots . . . ^ { t }$ , this “kernel-like trick” increases the expressive power of the model without introducing new parameters. The final mixture of the $\\mathbf { x } ^ { t }$ ’s seems to provide a bias towards accepting the output of shorter paths, which appears to be useful in practice. ", + "bbox": [ + 173, + 282, + 826, + 367 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/BJlguT4YPr/BJlguT4YPr_middle.json b/parse/train/BJlguT4YPr/BJlguT4YPr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..522e465fd87aec25504645e6f10395ba6cd54487 --- /dev/null +++ b/parse/train/BJlguT4YPr/BJlguT4YPr_middle.json @@ -0,0 +1,55372 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 490, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 370, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 370, + 98 + ], + "score": 1.0, + "content": "SCALABLE NEURAL METHODS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 492, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 492, + 117 + ], + "score": 1.0, + "content": "REASONING WITH A SYMBOLIC KNOWLEDGE BASE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 109, + 134, + 415, + 168 + ], + "lines": [ + { + "bbox": [ + 112, + 134, + 413, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 134, + 413, + 148 + ], + "score": 1.0, + "content": "William W. Cohen & Haitian Sun & R. Alex Hofer & Matthew Siegler", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 163, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 163, + 159 + ], + "score": 1.0, + "content": "Google, Inc", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 156, + 384, + 171 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 384, + 171 + ], + "score": 1.0, + "content": "{wcohen,haitiansun,rofer,msiegler}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 223, + 469, + 333 + ], + "lines": [ + { + "bbox": [ + 142, + 223, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 223, + 470, + 236 + ], + "score": 1.0, + "content": "We describe a novel way of representing a symbolic knowledge base (KB) called a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 140, + 233, + 225, + 246 + ], + "score": 1.0, + "content": "sparse-matrix reified", + "type": "text" + }, + { + "bbox": [ + 226, + 234, + 240, + 244 + ], + "score": 0.28, + "content": "K B", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 233, + 470, + 246 + ], + "score": 1.0, + "content": ". This representation enables neural KB inference modules", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "that are fully differentiable, faithful to the original semantics of the KB, expressive", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 469, + 268 + ], + "score": 1.0, + "content": "enough to model multi-hop inferences, and scalable enough to use with realistically", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "large KBs. The sparse-matrix reified KB can be distributed across multiple GPUs,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "can scale to tens of millions of entities and facts, and is orders of magnitude faster", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "score": 1.0, + "content": "than naive sparse-matrix implementations. The reified KB enables very simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "score": 1.0, + "content": "end-to-end architectures to obtain competitive performance on several benchmarks", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "score": 1.0, + "content": "representing two families of tasks: KB completion, and learning semantic parsers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 215, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 215, + 333 + ], + "score": 1.0, + "content": "from denotations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 108, + 352, + 206, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 208, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 208, + 368 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "There has been much prior work on using neural networks to generalize the contents of a KB (Xiong", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "et al., 2017; Bordes et al., 2013; Dettmers et al., 2018), typically by constructing low-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "embeddings of the entities and relations in the KB, which are then used to score potential triples", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "as plausible or implausible elements of the KB. We consider here the related but different problem", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "score": 1.0, + "content": "of incorporating a symbolic KB into a neural system, so as to inject knowledge from an existing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "KB directly into a neural model. More precisely, we consider the problem of designing neural KB", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "inference modules that are (1) fully differentiable, so that any loss based on their outputs can be", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "backpropagated to their inputs; (2) accurate, in that they are faithful to the original semantics of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "KB; (3) expressive, so they can perform non-trivial inferences; and (4) scalable, so that realistically", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 312, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 312, + 482 + ], + "score": 1.0, + "content": "large KBs can be incorporated into a neural model.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "To motivate the goal of incorporating a symbolic KB into a neural network, consider the task of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 498, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 509 + ], + "score": 1.0, + "content": "learning neural semantic parsers from denotations. Many questions—e.g., what’s the most recent", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "movie that Quentin Tarantino directed? or which nearby restaurants have vegetarian entrees and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "take reservations?—are best answered by knowledge-based question-answering (KBQA) methods,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "where an answer is found by accessing a KB. Within KBQA, a common approach is neural semantic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 541, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 506, + 555 + ], + "score": 1.0, + "content": "parsing—i.e., using neural methods to translate a natural-language question into a structured query", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "against the KB (Zhong et al., 2017; Finegan-Dollak et al., 2018; Shaw et al., 2019), which is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "subsequently executed with a symbolic KB query engine. While this approach can be effective, it", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "requires training data pairing natural-language questions with structured queries, which is difficult", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "to obtain. Hence researchers have also considered learning semantic parsers from denotations", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 421, + 609 + ], + "score": 1.0, + "content": "(Berant et al., 2013; Yih et al., 2015), where training data consists of pairs", + "type": "text" + }, + { + "bbox": [ + 421, + 596, + 446, + 608 + ], + "score": 0.91, + "content": "( q , A )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 595, + 479, + 609 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 480, + 598, + 486, + 608 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 228, + 621 + ], + "score": 1.0, + "content": "natural-language question and", + "type": "text" + }, + { + "bbox": [ + 228, + 607, + 237, + 617 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 606, + 365, + 621 + ], + "score": 1.0, + "content": "is the desired answer. Typically", + "type": "text" + }, + { + "bbox": [ + 365, + 607, + 374, + 617 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 606, + 497, + 621 + ], + "score": 1.0, + "content": "is a set of KB entities—e.g., if", + "type": "text" + }, + { + "bbox": [ + 498, + 609, + 504, + 618 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 247, + 631 + ], + "score": 1.0, + "content": "is the first sample question above,", + "type": "text" + }, + { + "bbox": [ + 247, + 618, + 256, + 628 + ], + "score": 0.5, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "would be1 the singleton set containing Once Upon a Time in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 155, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 155, + 642 + ], + "score": 1.0, + "content": "Hollywood.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "Learning semantic parsers from denotations is difficult because the end-to-end process to be learned", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "includes a non-differentiable operation—i.e., reasoning with the symbolic KB that contains the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "answers. To circumvent this difficulty, prior systems have used three different approaches. Some", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "have used heuristic search to infer structured queries from denotations (Pasupat & Liang, 2016;", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "score": 1.0, + "content": "Dasigi et al., 2019): this works in some cases but often an answer could be associated with many", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "possible structured queries, introducing noise. Others have supplemented gradient approaches with", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 721, + 219, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 221, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 221, + 734 + ], + "score": 1.0, + "content": "1At the time of this writing.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 490, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 370, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 370, + 98 + ], + "score": 1.0, + "content": "SCALABLE NEURAL METHODS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 98, + 492, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 492, + 117 + ], + "score": 1.0, + "content": "REASONING WITH A SYMBOLIC KNOWLEDGE BASE", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 109, + 134, + 415, + 168 + ], + "lines": [ + { + "bbox": [ + 112, + 134, + 413, + 148 + ], + "spans": [ + { + "bbox": [ + 112, + 134, + 413, + 148 + ], + "score": 1.0, + "content": "William W. Cohen & Haitian Sun & R. Alex Hofer & Matthew Siegler", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 163, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 163, + 159 + ], + "score": 1.0, + "content": "Google, Inc", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 156, + 384, + 171 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 384, + 171 + ], + "score": 1.0, + "content": "{wcohen,haitiansun,rofer,msiegler}@google.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 112, + 134, + 413, + 171 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 209 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 210 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 223, + 469, + 333 + ], + "lines": [ + { + "bbox": [ + 142, + 223, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 142, + 223, + 470, + 236 + ], + "score": 1.0, + "content": "We describe a novel way of representing a symbolic knowledge base (KB) called a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 233, + 470, + 246 + ], + "spans": [ + { + "bbox": [ + 140, + 233, + 225, + 246 + ], + "score": 1.0, + "content": "sparse-matrix reified", + "type": "text" + }, + { + "bbox": [ + 226, + 234, + 240, + 244 + ], + "score": 0.28, + "content": "K B", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 233, + 470, + 246 + ], + "score": 1.0, + "content": ". This representation enables neural KB inference modules", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "that are fully differentiable, faithful to the original semantics of the KB, expressive", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 256, + 469, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 469, + 268 + ], + "score": 1.0, + "content": "enough to model multi-hop inferences, and scalable enough to use with realistically", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 279 + ], + "score": 1.0, + "content": "large KBs. The sparse-matrix reified KB can be distributed across multiple GPUs,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "can scale to tens of millions of entities and facts, and is orders of magnitude faster", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 301 + ], + "score": 1.0, + "content": "than naive sparse-matrix implementations. The reified KB enables very simple", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 300, + 469, + 312 + ], + "score": 1.0, + "content": "end-to-end architectures to obtain competitive performance on several benchmarks", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 469, + 323 + ], + "score": 1.0, + "content": "representing two families of tasks: KB completion, and learning semantic parsers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 215, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 215, + 333 + ], + "score": 1.0, + "content": "from denotations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 140, + 223, + 470, + 333 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 352, + 206, + 365 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 208, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 208, + 368 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 370, + 505, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "There has been much prior work on using neural networks to generalize the contents of a KB (Xiong", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "et al., 2017; Bordes et al., 2013; Dettmers et al., 2018), typically by constructing low-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "embeddings of the entities and relations in the KB, which are then used to score potential triples", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 403, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 415 + ], + "score": 1.0, + "content": "as plausible or implausible elements of the KB. We consider here the related but different problem", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "score": 1.0, + "content": "of incorporating a symbolic KB into a neural system, so as to inject knowledge from an existing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 438 + ], + "score": 1.0, + "content": "KB directly into a neural model. More precisely, we consider the problem of designing neural KB", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "inference modules that are (1) fully differentiable, so that any loss based on their outputs can be", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "backpropagated to their inputs; (2) accurate, in that they are faithful to the original semantics of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "KB; (3) expressive, so they can perform non-trivial inferences; and (4) scalable, so that realistically", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 312, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 312, + 482 + ], + "score": 1.0, + "content": "large KBs can be incorporated into a neural model.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 369, + 506, + 482 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "To motivate the goal of incorporating a symbolic KB into a neural network, consider the task of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 498, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 506, + 509 + ], + "score": 1.0, + "content": "learning neural semantic parsers from denotations. Many questions—e.g., what’s the most recent", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "movie that Quentin Tarantino directed? or which nearby restaurants have vegetarian entrees and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 532 + ], + "score": 1.0, + "content": "take reservations?—are best answered by knowledge-based question-answering (KBQA) methods,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 506, + 543 + ], + "score": 1.0, + "content": "where an answer is found by accessing a KB. Within KBQA, a common approach is neural semantic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 541, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 104, + 541, + 506, + 555 + ], + "score": 1.0, + "content": "parsing—i.e., using neural methods to translate a natural-language question into a structured query", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "against the KB (Zhong et al., 2017; Finegan-Dollak et al., 2018; Shaw et al., 2019), which is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "subsequently executed with a symbolic KB query engine. While this approach can be effective, it", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "requires training data pairing natural-language questions with structured queries, which is difficult", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "to obtain. Hence researchers have also considered learning semantic parsers from denotations", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 421, + 609 + ], + "score": 1.0, + "content": "(Berant et al., 2013; Yih et al., 2015), where training data consists of pairs", + "type": "text" + }, + { + "bbox": [ + 421, + 596, + 446, + 608 + ], + "score": 0.91, + "content": "( q , A )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 595, + 479, + 609 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 480, + 598, + 486, + 608 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 228, + 621 + ], + "score": 1.0, + "content": "natural-language question and", + "type": "text" + }, + { + "bbox": [ + 228, + 607, + 237, + 617 + ], + "score": 0.73, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 606, + 365, + 621 + ], + "score": 1.0, + "content": "is the desired answer. Typically", + "type": "text" + }, + { + "bbox": [ + 365, + 607, + 374, + 617 + ], + "score": 0.75, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 606, + 497, + 621 + ], + "score": 1.0, + "content": "is a set of KB entities—e.g., if", + "type": "text" + }, + { + "bbox": [ + 498, + 609, + 504, + 618 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 617, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 247, + 631 + ], + "score": 1.0, + "content": "is the first sample question above,", + "type": "text" + }, + { + "bbox": [ + 247, + 618, + 256, + 628 + ], + "score": 0.5, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 617, + 505, + 631 + ], + "score": 1.0, + "content": "would be1 the singleton set containing Once Upon a Time in", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 628, + 155, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 155, + 642 + ], + "score": 1.0, + "content": "Hollywood.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 486, + 506, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 658 + ], + "score": 1.0, + "content": "Learning semantic parsers from denotations is difficult because the end-to-end process to be learned", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 669 + ], + "score": 1.0, + "content": "includes a non-differentiable operation—i.e., reasoning with the symbolic KB that contains the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "answers. To circumvent this difficulty, prior systems have used three different approaches. Some", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "have used heuristic search to infer structured queries from denotations (Pasupat & Liang, 2016;", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 703 + ], + "score": 1.0, + "content": "Dasigi et al., 2019): this works in some cases but often an answer could be associated with many", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "possible structured queries, introducing noise. Others have supplemented gradient approaches with", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 113, + 79, + 500, + 92 + ], + "spans": [ + { + "bbox": [ + 113, + 83, + 119, + 89 + ], + "score": 0.34, + "content": "x", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 119, + 81, + 156, + 92 + ], + "score": 1.0, + "content": ": an entity", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 185, + 81, + 194, + 90 + ], + "score": 0.64, + "content": "X", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 195, + 79, + 285, + 92 + ], + "score": 1.0, + "content": ": weighted set of entities", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 331, + 81, + 401, + 91 + ], + "score": 1.0, + "content": "x: vector encoding", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 402, + 81, + 411, + 90 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 422, + 81, + 437, + 90 + ], + "score": 0.84, + "content": "N _ { E }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 437, + 81, + 500, + 91 + ], + "score": 1.0, + "content": ": # entities in KB", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 90, + 504, + 101 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 118, + 99 + ], + "score": 0.6, + "content": "r", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 118, + 90, + 163, + 100 + ], + "score": 1.0, + "content": ": an relation", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 185, + 91, + 193, + 99 + ], + "score": 0.64, + "content": "R", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 194, + 90, + 288, + 101 + ], + "score": 1.0, + "content": ": weighted set of relations", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 330, + 90, + 401, + 101 + ], + "score": 1.0, + "content": "r: vector encoding", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 401, + 91, + 410, + 99 + ], + "score": 0.77, + "content": "R", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 422, + 91, + 437, + 100 + ], + "score": 0.82, + "content": "N _ { R }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 437, + 90, + 504, + 101 + ], + "score": 1.0, + "content": ": # relations in KB", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 112, + 100, + 496, + 112 + ], + "spans": [ + { + "bbox": [ + 112, + 100, + 126, + 110 + ], + "score": 0.82, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 126, + 100, + 168, + 110 + ], + "score": 1.0, + "content": ": matrix for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 169, + 102, + 175, + 109 + ], + "score": 0.69, + "content": "r", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 185, + 100, + 201, + 110 + ], + "score": 0.84, + "content": "{ \\bf { M } } _ { R }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 201, + 100, + 266, + 112 + ], + "score": 1.0, + "content": ": weighted sum of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 267, + 100, + 280, + 110 + ], + "score": 0.86, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 281, + 100, + 331, + 112 + ], + "score": 1.0, + "content": "’s, see Eq 1", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 331, + 100, + 375, + 111 + ], + "score": 0.29, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 376, + 100, + 414, + 112 + ], + "score": 1.0, + "content": ": see Eq 2", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 422, + 101, + 436, + 110 + ], + "score": 0.82, + "content": "N _ { T }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 437, + 100, + 496, + 111 + ], + "score": 1.0, + "content": ": # triples in KB", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 110, + 507, + 122 + ], + "spans": [ + { + "bbox": [ + 112, + 111, + 135, + 121 + ], + "score": 0.71, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 123, + 110, + 180, + 121 + ], + "score": 0.42, + "content": "\\mathbf { \\tau } _ { s u b j } , \\mathbf { M } _ { o b j } , \\mathbf { M } _ { r e l }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 180, + 110, + 378, + 122 + ], + "score": 1.0, + "content": ": the reified KB, encoded as matrices mapping triple id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 378, + 111, + 383, + 119 + ], + "score": 0.72, + "content": "\\ell", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 383, + 110, + 507, + 122 + ], + "score": 1.0, + "content": "to subject, object, and relation ids", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 645, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 112, + 80, + 506, + 121 + ], + "lines": [ + { + "bbox": [ + 113, + 79, + 500, + 92 + ], + "spans": [ + { + "bbox": [ + 113, + 83, + 119, + 89 + ], + "score": 0.34, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 81, + 156, + 92 + ], + "score": 1.0, + "content": ": an entity", + "type": "text" + }, + { + "bbox": [ + 185, + 81, + 194, + 90 + ], + "score": 0.64, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 79, + 285, + 92 + ], + "score": 1.0, + "content": ": weighted set of entities", + "type": "text" + }, + { + "bbox": [ + 331, + 81, + 401, + 91 + ], + "score": 1.0, + "content": "x: vector encoding", + "type": "text" + }, + { + "bbox": [ + 402, + 81, + 411, + 90 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 81, + 437, + 90 + ], + "score": 0.84, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 81, + 500, + 91 + ], + "score": 1.0, + "content": ": # entities in KB", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 113, + 90, + 504, + 101 + ], + "spans": [ + { + "bbox": [ + 113, + 92, + 118, + 99 + ], + "score": 0.6, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 90, + 163, + 100 + ], + "score": 1.0, + "content": ": an relation", + "type": "text" + }, + { + "bbox": [ + 185, + 91, + 193, + 99 + ], + "score": 0.64, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 90, + 288, + 101 + ], + "score": 1.0, + "content": ": weighted set of relations", + "type": "text" + }, + { + "bbox": [ + 330, + 90, + 401, + 101 + ], + "score": 1.0, + "content": "r: vector encoding", + "type": "text" + }, + { + "bbox": [ + 401, + 91, + 410, + 99 + ], + "score": 0.77, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 91, + 437, + 100 + ], + "score": 0.82, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 90, + 504, + 101 + ], + "score": 1.0, + "content": ": # relations in KB", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 112, + 100, + 496, + 112 + ], + "spans": [ + { + "bbox": [ + 112, + 100, + 126, + 110 + ], + "score": 0.82, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 100, + 168, + 110 + ], + "score": 1.0, + "content": ": matrix for", + "type": "text" + }, + { + "bbox": [ + 169, + 102, + 175, + 109 + ], + "score": 0.69, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 100, + 201, + 110 + ], + "score": 0.84, + "content": "{ \\bf { M } } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 100, + 266, + 112 + ], + "score": 1.0, + "content": ": weighted sum of", + "type": "text" + }, + { + "bbox": [ + 267, + 100, + 280, + 110 + ], + "score": 0.86, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 100, + 331, + 112 + ], + "score": 1.0, + "content": "’s, see Eq 1", + "type": "text" + }, + { + "bbox": [ + 331, + 100, + 375, + 111 + ], + "score": 0.29, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 100, + 414, + 112 + ], + "score": 1.0, + "content": ": see Eq 2", + "type": "text" + }, + { + "bbox": [ + 422, + 101, + 436, + 110 + ], + "score": 0.82, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 100, + 496, + 111 + ], + "score": 1.0, + "content": ": # triples in KB", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 110, + 507, + 122 + ], + "spans": [ + { + "bbox": [ + 112, + 111, + 135, + 121 + ], + "score": 0.71, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 110, + 180, + 121 + ], + "score": 0.42, + "content": "\\mathbf { \\tau } _ { s u b j } , \\mathbf { M } _ { o b j } , \\mathbf { M } _ { r e l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 110, + 378, + 122 + ], + "score": 1.0, + "content": ": the reified KB, encoded as matrices mapping triple id", + "type": "text" + }, + { + "bbox": [ + 378, + 111, + 383, + 119 + ], + "score": 0.72, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 110, + 507, + 122 + ], + "score": 1.0, + "content": "to subject, object, and relation ids", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "Table 1: Summary of notation used in the paper. (This excludes notation used in defining models for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 145, + 298, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 298, + 158 + ], + "score": 1.0, + "content": "the KB completion and QA tasks of Section 3.)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 180, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 507, + 194 + ], + "score": 1.0, + "content": "reinforcement learning (e.g., (Misra et al., 2018)). Some systems have also “neuralized” KB reasoning,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 192, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 204 + ], + "score": 1.0, + "content": "but to date only over small KBs: this approach is natural when answers are naturally constrained to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "depend on a small set of facts (e.g., a single table (Zhong et al., 2017; Gupta & Lewis, 2018)), but", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "more generally requires coupling a learner with some (non-differentiable) mechanism to retrieve an", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 224, + 448, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 448, + 237 + ], + "score": 1.0, + "content": "appropriate small question-dependent subset of the KB as in (Sun et al., 2018; 2019).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "In this paper, we introduce a novel scheme for incorporating reasoning on a large question-independent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "KB into a neural network, by representing a symbolic KB with an encoding called a sparse-matrix", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "reified KB. A sparse-matrix reified KB is very compact, can be distributed across multiple GPUs if", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "necessary, and is well-suited to modern GPU architecture. For KBs with many relations, a reified", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "KB can be up to four orders of magnitude faster than alternative implementations (even alternatives", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "based on sparse-matrix representations), and in our experiments we demonstrate scalability to a KB", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 504, + 320 + ], + "score": 1.0, + "content": "with over 13 million entities and nearly 44 million facts. This new architectural component leads to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "radically simpler architectures for neural semantic parsing from denotations—architectures based on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 491, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 491, + 342 + ], + "score": 1.0, + "content": "a single end-to-end differentiable process, rather than cascades of retrieval and neural processes.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "We show that very simple instantiations of these architectures are still highly competitive with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "the state of the art for several benchmark tasks. To our knowledge these models are the first fully", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 504, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 504, + 380 + ], + "score": 1.0, + "content": "end-to-end neural parsers from denotations that have been applied to these benchmark tasks. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "also demonstrate that these architectures scale to long chains of reasoning on synthetic tasks, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 390, + 415, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 415, + 402 + ], + "score": 1.0, + "content": "demonstrate similarly simple architectures for a second task, KB completion.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 414, + 352, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 353, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 353, + 428 + ], + "score": 1.0, + "content": "2 NEURAL REASONING WITH A SYMBOLIC KB", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 433, + 193, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 195, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 195, + 446 + ], + "score": 1.0, + "content": "2.1 BACKGROUND", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 506, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 419, + 465 + ], + "score": 1.0, + "content": "KBs, entities, and relations. A KB consists of entities and relations. We use", + "type": "text" + }, + { + "bbox": [ + 420, + 455, + 427, + 462 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "to denote an entity", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 124, + 475 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 465, + 130, + 474 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 464, + 415, + 475 + ], + "score": 1.0, + "content": "to denote a relation. Each entity has an integer index between 1 and", + "type": "text" + }, + { + "bbox": [ + 415, + 464, + 430, + 475 + ], + "score": 0.89, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 464, + 462, + 475 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 463, + 464, + 479, + 475 + ], + "score": 0.9, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 273, + 486 + ], + "score": 1.0, + "content": "number of entities in the KB, and we write", + "type": "text" + }, + { + "bbox": [ + 273, + 476, + 283, + 486 + ], + "score": 0.87, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 474, + 392, + 486 + ], + "score": 1.0, + "content": "for the entity that has index", + "type": "text" + }, + { + "bbox": [ + 392, + 475, + 397, + 484 + ], + "score": 0.6, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 474, + 505, + 486 + ], + "score": 1.0, + "content": ". A relation is a set of entity", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 371, + 498 + ], + "score": 1.0, + "content": "pairs, and represents a relationship between entities: for instance, if", + "type": "text" + }, + { + "bbox": [ + 371, + 487, + 381, + 497 + ], + "score": 0.86, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 486, + 507, + 498 + ], + "score": 1.0, + "content": "represents “Quentin Tarantino”", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 123, + 509 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 498, + 135, + 509 + ], + "score": 0.85, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 496, + 262, + 509 + ], + "score": 1.0, + "content": "represents “Pulp Fiction” then", + "type": "text" + }, + { + "bbox": [ + 263, + 497, + 294, + 509 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "would be an member of the relation director_of. A", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 139, + 521 + ], + "score": 1.0, + "content": "relation", + "type": "text" + }, + { + "bbox": [ + 139, + 510, + 145, + 518 + ], + "score": 0.69, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 507, + 297, + 521 + ], + "score": 1.0, + "content": "can thus be represented as a subset of", + "type": "text" + }, + { + "bbox": [ + 297, + 507, + 414, + 520 + ], + "score": 0.94, + "content": "\\left\\{ 1 , \\dots , N _ { E } \\right\\} \\times \\left\\{ 1 , \\dots , N _ { E } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 507, + 506, + 521 + ], + "score": 1.0, + "content": ". Finally a KB consists", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 519, + 257, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 257, + 530 + ], + "score": 1.0, + "content": "a set of relations and a set of entities.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 178, + 547 + ], + "score": 1.0, + "content": "Weighted sets as", + "type": "text" + }, + { + "bbox": [ + 178, + 536, + 190, + 546 + ], + "score": 0.82, + "content": "^ { 6 6 } k", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "-hot” vectors. Our differentiable operations are based on weighted sets, where", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 161, + 559 + ], + "score": 1.0, + "content": "each element", + "type": "text" + }, + { + "bbox": [ + 162, + 549, + 168, + 556 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 547, + 233, + 559 + ], + "score": 1.0, + "content": "of weighted set", + "type": "text" + }, + { + "bbox": [ + 233, + 547, + 243, + 556 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "is associated with a non-negative real number. It is convenient to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 245, + 569 + ], + "score": 1.0, + "content": "define this weight to be zero for all", + "type": "text" + }, + { + "bbox": [ + 246, + 558, + 273, + 569 + ], + "score": 0.91, + "content": "x \\not \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 558, + 316, + 569 + ], + "score": 1.0, + "content": ", while for", + "type": "text" + }, + { + "bbox": [ + 316, + 558, + 344, + 568 + ], + "score": 0.9, + "content": "x \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 558, + 506, + 569 + ], + "score": 1.0, + "content": ", a weight less than 1 is a confidence that", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 171, + 581 + ], + "score": 1.0, + "content": "the set contains", + "type": "text" + }, + { + "bbox": [ + 171, + 570, + 178, + 578 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 568, + 306, + 581 + ], + "score": 1.0, + "content": ", and weights more than 1 make", + "type": "text" + }, + { + "bbox": [ + 307, + 569, + 317, + 578 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 568, + 434, + 581 + ], + "score": 1.0, + "content": "a multiset. If all elements of", + "type": "text" + }, + { + "bbox": [ + 434, + 569, + 444, + 578 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "have weight 1,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 578, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 137, + 591 + ], + "score": 1.0, + "content": "we say", + "type": "text" + }, + { + "bbox": [ + 137, + 581, + 147, + 589 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 578, + 267, + 591 + ], + "score": 1.0, + "content": "is a hard set. A weighted set", + "type": "text" + }, + { + "bbox": [ + 267, + 580, + 277, + 589 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 578, + 435, + 591 + ], + "score": 1.0, + "content": "can be encoded as an entity-set vector", + "type": "text" + }, + { + "bbox": [ + 435, + 578, + 473, + 590 + ], + "score": 0.92, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 578, + 506, + 591 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 121, + 602 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 591, + 126, + 600 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 590, + 195, + 602 + ], + "score": 1.0, + "content": "-th component of", + "type": "text" + }, + { + "bbox": [ + 196, + 592, + 202, + 600 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 590, + 266, + 602 + ], + "score": 1.0, + "content": "is the weight of", + "type": "text" + }, + { + "bbox": [ + 267, + 592, + 277, + 601 + ], + "score": 0.87, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 590, + 288, + 602 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 289, + 591, + 299, + 600 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 590, + 312, + 602 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 312, + 591, + 322, + 600 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 590, + 478, + 602 + ], + "score": 1.0, + "content": "is a hard entity set, then this will be a “", + "type": "text" + }, + { + "bbox": [ + 478, + 591, + 485, + 600 + ], + "score": 0.54, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 590, + 507, + 602 + ], + "score": 1.0, + "content": "-hot”", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 469, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 150, + 614 + ], + "score": 1.0, + "content": "vector, for", + "type": "text" + }, + { + "bbox": [ + 150, + 602, + 184, + 613 + ], + "score": 0.91, + "content": "k = | X |", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 601, + 272, + 614 + ], + "score": 1.0, + "content": ". The set of indices of", + "type": "text" + }, + { + "bbox": [ + 272, + 603, + 279, + 611 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 601, + 458, + 614 + ], + "score": 1.0, + "content": "with non-zero values is called the support of", + "type": "text" + }, + { + "bbox": [ + 459, + 603, + 465, + 612 + ], + "score": 0.65, + "content": "\\dot { \\boldsymbol { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 601, + 469, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 506, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "Sets of relations, and relations as matrices Often we would like to reason about sets of relations2,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 241, + 640 + ], + "score": 1.0, + "content": "so we also assume every relation", + "type": "text" + }, + { + "bbox": [ + 241, + 631, + 248, + 639 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 630, + 506, + 640 + ], + "score": 1.0, + "content": "in a KB is associated with an entity and hence an integer index.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 145, + 652 + ], + "score": 1.0, + "content": "We write", + "type": "text" + }, + { + "bbox": [ + 145, + 641, + 156, + 651 + ], + "score": 0.85, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 640, + 264, + 652 + ], + "score": 1.0, + "content": "for the relation with index", + "type": "text" + }, + { + "bbox": [ + 265, + 641, + 272, + 650 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 640, + 505, + 652 + ], + "score": 1.0, + "content": ", and we assume that relation entities are listed first in the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 225, + 663 + ], + "score": 1.0, + "content": "index of entities, so the index", + "type": "text" + }, + { + "bbox": [ + 225, + 651, + 232, + 661 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 650, + 247, + 663 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 247, + 652, + 258, + 662 + ], + "score": 0.85, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 650, + 328, + 663 + ], + "score": 1.0, + "content": "is between 1 and", + "type": "text" + }, + { + "bbox": [ + 328, + 651, + 344, + 662 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 650, + 374, + 663 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 374, + 651, + 390, + 662 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "is the number of relations in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 172, + 674 + ], + "score": 1.0, + "content": "the KB. We use", + "type": "text" + }, + { + "bbox": [ + 172, + 663, + 181, + 672 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 662, + 286, + 674 + ], + "score": 1.0, + "content": "for a set of relations, e.g.,", + "type": "text" + }, + { + "bbox": [ + 286, + 662, + 405, + 674 + ], + "score": 0.38, + "content": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "might be such a set, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 672, + 121, + 685 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 122, + 675, + 128, + 683 + ], + "score": 0.27, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 672, + 289, + 685 + ], + "score": 1.0, + "content": "for a vector encoding of a set. A relation", + "type": "text" + }, + { + "bbox": [ + 289, + 676, + 295, + 683 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 672, + 437, + 685 + ], + "score": 1.0, + "content": "can be encoded as a relation matrix", + "type": "text" + }, + { + "bbox": [ + 437, + 672, + 502, + 684 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { r } \\in \\mathbb { R } ^ { N _ { E } \\times N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 672, + 506, + 685 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 188, + 697 + ], + "score": 1.0, + "content": "where the value for", + "type": "text" + }, + { + "bbox": [ + 188, + 684, + 221, + 696 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 684, + 394, + 697 + ], + "score": 1.0, + "content": "is (in general) the weight of the assertion", + "type": "text" + }, + { + "bbox": [ + 395, + 684, + 431, + 696 + ], + "score": 0.91, + "content": "r ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 684, + 506, + 697 + ], + "score": 1.0, + "content": "in the KB. In the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 695, + 417, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 344, + 708 + ], + "score": 1.0, + "content": "experiments of this paper, all KB relations are hard sets, so", + "type": "text" + }, + { + "bbox": [ + 344, + 695, + 413, + 707 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ] \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 695, + 417, + 708 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 288, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 718, + 290, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 718, + 290, + 734 + ], + "score": 1.0, + "content": "2This is usually called second-order reasoning.", + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 112, + 80, + 506, + 121 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 112, + 79, + 507, + 122 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 134, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "Table 1: Summary of notation used in the paper. (This excludes notation used in defining models for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 145, + 298, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 298, + 158 + ], + "score": 1.0, + "content": "the KB completion and QA tasks of Section 3.)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 134, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 180, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 507, + 194 + ], + "score": 1.0, + "content": "reinforcement learning (e.g., (Misra et al., 2018)). Some systems have also “neuralized” KB reasoning,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 192, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 204 + ], + "score": 1.0, + "content": "but to date only over small KBs: this approach is natural when answers are naturally constrained to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "depend on a small set of facts (e.g., a single table (Zhong et al., 2017; Gupta & Lewis, 2018)), but", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "more generally requires coupling a learner with some (non-differentiable) mechanism to retrieve an", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 224, + 448, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 448, + 237 + ], + "score": 1.0, + "content": "appropriate small question-dependent subset of the KB as in (Sun et al., 2018; 2019).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 179, + 507, + 237 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 254 + ], + "score": 1.0, + "content": "In this paper, we introduce a novel scheme for incorporating reasoning on a large question-independent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 506, + 266 + ], + "score": 1.0, + "content": "KB into a neural network, by representing a symbolic KB with an encoding called a sparse-matrix", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "reified KB. A sparse-matrix reified KB is very compact, can be distributed across multiple GPUs if", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "necessary, and is well-suited to modern GPU architecture. For KBs with many relations, a reified", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "KB can be up to four orders of magnitude faster than alternative implementations (even alternatives", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "based on sparse-matrix representations), and in our experiments we demonstrate scalability to a KB", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 504, + 320 + ], + "score": 1.0, + "content": "with over 13 million entities and nearly 44 million facts. This new architectural component leads to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "radically simpler architectures for neural semantic parsing from denotations—architectures based on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 330, + 491, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 491, + 342 + ], + "score": 1.0, + "content": "a single end-to-end differentiable process, rather than cascades of retrieval and neural processes.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 240, + 506, + 342 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "We show that very simple instantiations of these architectures are still highly competitive with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 370 + ], + "score": 1.0, + "content": "the state of the art for several benchmark tasks. To our knowledge these models are the first fully", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 504, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 504, + 380 + ], + "score": 1.0, + "content": "end-to-end neural parsers from denotations that have been applied to these benchmark tasks. We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "also demonstrate that these architectures scale to long chains of reasoning on synthetic tasks, and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 390, + 415, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 415, + 402 + ], + "score": 1.0, + "content": "demonstrate similarly simple architectures for a second task, KB completion.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 346, + 505, + 402 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 414, + 352, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 412, + 353, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 353, + 428 + ], + "score": 1.0, + "content": "2 NEURAL REASONING WITH A SYMBOLIC KB", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 433, + 193, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 195, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 195, + 446 + ], + "score": 1.0, + "content": "2.1 BACKGROUND", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 506, + 529 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 419, + 465 + ], + "score": 1.0, + "content": "KBs, entities, and relations. A KB consists of entities and relations. We use", + "type": "text" + }, + { + "bbox": [ + 420, + 455, + 427, + 462 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "to denote an entity", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 464, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 124, + 475 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 465, + 130, + 474 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 464, + 415, + 475 + ], + "score": 1.0, + "content": "to denote a relation. Each entity has an integer index between 1 and", + "type": "text" + }, + { + "bbox": [ + 415, + 464, + 430, + 475 + ], + "score": 0.89, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 464, + 462, + 475 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 463, + 464, + 479, + 475 + ], + "score": 0.9, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 464, + 505, + 475 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 273, + 486 + ], + "score": 1.0, + "content": "number of entities in the KB, and we write", + "type": "text" + }, + { + "bbox": [ + 273, + 476, + 283, + 486 + ], + "score": 0.87, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 474, + 392, + 486 + ], + "score": 1.0, + "content": "for the entity that has index", + "type": "text" + }, + { + "bbox": [ + 392, + 475, + 397, + 484 + ], + "score": 0.6, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 474, + 505, + 486 + ], + "score": 1.0, + "content": ". A relation is a set of entity", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 486, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 371, + 498 + ], + "score": 1.0, + "content": "pairs, and represents a relationship between entities: for instance, if", + "type": "text" + }, + { + "bbox": [ + 371, + 487, + 381, + 497 + ], + "score": 0.86, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 486, + 507, + 498 + ], + "score": 1.0, + "content": "represents “Quentin Tarantino”", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 123, + 509 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 498, + 135, + 509 + ], + "score": 0.85, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 496, + 262, + 509 + ], + "score": 1.0, + "content": "represents “Pulp Fiction” then", + "type": "text" + }, + { + "bbox": [ + 263, + 497, + 294, + 509 + ], + "score": 0.92, + "content": "( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "would be an member of the relation director_of. A", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 507, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 139, + 521 + ], + "score": 1.0, + "content": "relation", + "type": "text" + }, + { + "bbox": [ + 139, + 510, + 145, + 518 + ], + "score": 0.69, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 507, + 297, + 521 + ], + "score": 1.0, + "content": "can thus be represented as a subset of", + "type": "text" + }, + { + "bbox": [ + 297, + 507, + 414, + 520 + ], + "score": 0.94, + "content": "\\left\\{ 1 , \\dots , N _ { E } \\right\\} \\times \\left\\{ 1 , \\dots , N _ { E } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 507, + 506, + 521 + ], + "score": 1.0, + "content": ". Finally a KB consists", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 519, + 257, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 257, + 530 + ], + "score": 1.0, + "content": "a set of relations and a set of entities.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 452, + 507, + 530 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 535, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 178, + 547 + ], + "score": 1.0, + "content": "Weighted sets as", + "type": "text" + }, + { + "bbox": [ + 178, + 536, + 190, + 546 + ], + "score": 0.82, + "content": "^ { 6 6 } k", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "-hot” vectors. Our differentiable operations are based on weighted sets, where", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 161, + 559 + ], + "score": 1.0, + "content": "each element", + "type": "text" + }, + { + "bbox": [ + 162, + 549, + 168, + 556 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 547, + 233, + 559 + ], + "score": 1.0, + "content": "of weighted set", + "type": "text" + }, + { + "bbox": [ + 233, + 547, + 243, + 556 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "is associated with a non-negative real number. It is convenient to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 245, + 569 + ], + "score": 1.0, + "content": "define this weight to be zero for all", + "type": "text" + }, + { + "bbox": [ + 246, + 558, + 273, + 569 + ], + "score": 0.91, + "content": "x \\not \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 558, + 316, + 569 + ], + "score": 1.0, + "content": ", while for", + "type": "text" + }, + { + "bbox": [ + 316, + 558, + 344, + 568 + ], + "score": 0.9, + "content": "x \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 558, + 506, + 569 + ], + "score": 1.0, + "content": ", a weight less than 1 is a confidence that", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 171, + 581 + ], + "score": 1.0, + "content": "the set contains", + "type": "text" + }, + { + "bbox": [ + 171, + 570, + 178, + 578 + ], + "score": 0.75, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 568, + 306, + 581 + ], + "score": 1.0, + "content": ", and weights more than 1 make", + "type": "text" + }, + { + "bbox": [ + 307, + 569, + 317, + 578 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 568, + 434, + 581 + ], + "score": 1.0, + "content": "a multiset. If all elements of", + "type": "text" + }, + { + "bbox": [ + 434, + 569, + 444, + 578 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "have weight 1,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 578, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 137, + 591 + ], + "score": 1.0, + "content": "we say", + "type": "text" + }, + { + "bbox": [ + 137, + 581, + 147, + 589 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 578, + 267, + 591 + ], + "score": 1.0, + "content": "is a hard set. A weighted set", + "type": "text" + }, + { + "bbox": [ + 267, + 580, + 277, + 589 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 578, + 435, + 591 + ], + "score": 1.0, + "content": "can be encoded as an entity-set vector", + "type": "text" + }, + { + "bbox": [ + 435, + 578, + 473, + 590 + ], + "score": 0.92, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 578, + 506, + 591 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 507, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 121, + 602 + ], + "score": 1.0, + "content": "the", + "type": "text" + }, + { + "bbox": [ + 121, + 591, + 126, + 600 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 590, + 195, + 602 + ], + "score": 1.0, + "content": "-th component of", + "type": "text" + }, + { + "bbox": [ + 196, + 592, + 202, + 600 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 590, + 266, + 602 + ], + "score": 1.0, + "content": "is the weight of", + "type": "text" + }, + { + "bbox": [ + 267, + 592, + 277, + 601 + ], + "score": 0.87, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 590, + 288, + 602 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 289, + 591, + 299, + 600 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 590, + 312, + 602 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 312, + 591, + 322, + 600 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 590, + 478, + 602 + ], + "score": 1.0, + "content": "is a hard entity set, then this will be a “", + "type": "text" + }, + { + "bbox": [ + 478, + 591, + 485, + 600 + ], + "score": 0.54, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 590, + 507, + 602 + ], + "score": 1.0, + "content": "-hot”", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 469, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 150, + 614 + ], + "score": 1.0, + "content": "vector, for", + "type": "text" + }, + { + "bbox": [ + 150, + 602, + 184, + 613 + ], + "score": 0.91, + "content": "k = | X |", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 601, + 272, + 614 + ], + "score": 1.0, + "content": ". The set of indices of", + "type": "text" + }, + { + "bbox": [ + 272, + 603, + 279, + 611 + ], + "score": 0.72, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 601, + 458, + 614 + ], + "score": 1.0, + "content": "with non-zero values is called the support of", + "type": "text" + }, + { + "bbox": [ + 459, + 603, + 465, + 612 + ], + "score": 0.65, + "content": "\\dot { \\boldsymbol { x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 601, + 469, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 535, + 507, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 506, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "Sets of relations, and relations as matrices Often we would like to reason about sets of relations2,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 241, + 640 + ], + "score": 1.0, + "content": "so we also assume every relation", + "type": "text" + }, + { + "bbox": [ + 241, + 631, + 248, + 639 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 630, + 506, + 640 + ], + "score": 1.0, + "content": "in a KB is associated with an entity and hence an integer index.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 145, + 652 + ], + "score": 1.0, + "content": "We write", + "type": "text" + }, + { + "bbox": [ + 145, + 641, + 156, + 651 + ], + "score": 0.85, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 640, + 264, + 652 + ], + "score": 1.0, + "content": "for the relation with index", + "type": "text" + }, + { + "bbox": [ + 265, + 641, + 272, + 650 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 640, + 505, + 652 + ], + "score": 1.0, + "content": ", and we assume that relation entities are listed first in the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 225, + 663 + ], + "score": 1.0, + "content": "index of entities, so the index", + "type": "text" + }, + { + "bbox": [ + 225, + 651, + 232, + 661 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 650, + 247, + 663 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 247, + 652, + 258, + 662 + ], + "score": 0.85, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 650, + 328, + 663 + ], + "score": 1.0, + "content": "is between 1 and", + "type": "text" + }, + { + "bbox": [ + 328, + 651, + 344, + 662 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 650, + 374, + 663 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 374, + 651, + 390, + 662 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "is the number of relations in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 172, + 674 + ], + "score": 1.0, + "content": "the KB. We use", + "type": "text" + }, + { + "bbox": [ + 172, + 663, + 181, + 672 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 662, + 286, + 674 + ], + "score": 1.0, + "content": "for a set of relations, e.g.,", + "type": "text" + }, + { + "bbox": [ + 286, + 662, + 405, + 674 + ], + "score": 0.38, + "content": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "might be such a set, and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 672, + 121, + 685 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 122, + 675, + 128, + 683 + ], + "score": 0.27, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 672, + 289, + 685 + ], + "score": 1.0, + "content": "for a vector encoding of a set. A relation", + "type": "text" + }, + { + "bbox": [ + 289, + 676, + 295, + 683 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 672, + 437, + 685 + ], + "score": 1.0, + "content": "can be encoded as a relation matrix", + "type": "text" + }, + { + "bbox": [ + 437, + 672, + 502, + 684 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { r } \\in \\mathbb { R } ^ { N _ { E } \\times N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 672, + 506, + 685 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 188, + 697 + ], + "score": 1.0, + "content": "where the value for", + "type": "text" + }, + { + "bbox": [ + 188, + 684, + 221, + 696 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 684, + 394, + 697 + ], + "score": 1.0, + "content": "is (in general) the weight of the assertion", + "type": "text" + }, + { + "bbox": [ + 395, + 684, + 431, + 696 + ], + "score": 0.91, + "content": "r ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 684, + 506, + 697 + ], + "score": 1.0, + "content": "in the KB. In the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 695, + 417, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 344, + 708 + ], + "score": 1.0, + "content": "experiments of this paper, all KB relations are hard sets, so", + "type": "text" + }, + { + "bbox": [ + 344, + 695, + 413, + 707 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ] \\in \\{ 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 695, + 417, + 708 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 617, + 506, + 708 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Sparse vs. dense matrices for relations. Scalably representing a large KB requires careful consid-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "eration of the implementation. One important issue is that for all but the smallest KBs, a relation", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 460, + 117 + ], + "score": 1.0, + "content": "matrix must be implemented using a sparse matrix data structure, as explicitly storing all", + "type": "text" + }, + { + "bbox": [ + 460, + 104, + 476, + 117 + ], + "score": 0.9, + "content": "N _ { E } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "values", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "is impractical. For instance, consider a KB containing 10,000 movie entities and 100,000 person", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "entities. A relationship like writer_of would have only a few tens of thousands of facts (since most", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 450, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 450, + 150 + ], + "score": 1.0, + "content": "movies have only one or two writers), but a dense matrix would have 1 billion values.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 308, + 167 + ], + "score": 1.0, + "content": "We thus model relations as sparse matrices. Let", + "type": "text" + }, + { + "bbox": [ + 308, + 154, + 321, + 165 + ], + "score": 0.88, + "content": "N _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "be the number of entity pairs in the relation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 107, + 168, + 113, + 175 + ], + "score": 0.38, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 165, + 334, + 177 + ], + "score": 1.0, + "content": ": common sparse matrix data structures require space", + "type": "text" + }, + { + "bbox": [ + 334, + 165, + 363, + 177 + ], + "score": 0.92, + "content": "O ( N _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 165, + 505, + 177 + ], + "score": 1.0, + "content": ". One common sparse matrix data", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 253, + 188 + ], + "score": 1.0, + "content": "structure is a sparse coordinate pair", + "type": "text" + }, + { + "bbox": [ + 253, + 177, + 281, + 187 + ], + "score": 0.25, + "content": "( C O O )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "encoding: with a COO encoding, each KB fact requires", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 264, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 264, + 199 + ], + "score": 1.0, + "content": "storing only two integers and one float.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "Our implementations are based on Tensorflow (Abadi et al., 2016), which offers limited support for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "sparse matrices. In particular, driven by the limitations of GPU architecture, Tensorflow only supports", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "matrix multiplication between a sparse matrix COO and a dense matrix, but not between two sparse", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 374, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 374, + 249 + ], + "score": 1.0, + "content": "matrices, or between sparse higher-rank tensors and dense tensors.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "Entity types. It is often possible to easily group entities into disjoint sets by some notion of “type”:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 265, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 506, + 277 + ], + "score": 1.0, + "content": "for example, in a movie domain, all entities might be either of the type “movie”, “person”, or “movie", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 504, + 288 + ], + "score": 1.0, + "content": "studio”. It is straightforward to extend the formalism above to typed sets of entities, and doing this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "can lead to some useful optimizations. We use these optimizations below where appropriate: in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 301, + 310 + ], + "score": 1.0, + "content": "particular, relation-set vectors r are of dimension", + "type": "text" + }, + { + "bbox": [ + 301, + 298, + 317, + 309 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 298, + 335, + 310 + ], + "score": 1.0, + "content": ", not", + "type": "text" + }, + { + "bbox": [ + 336, + 298, + 351, + 309 + ], + "score": 0.89, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 298, + 506, + 310 + ], + "score": 1.0, + "content": ", in the sections below. The full formal", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 365, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 365, + 321 + ], + "score": 1.0, + "content": "extension to typed entities and relations is given in Appendix A.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 221, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 223, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 223, + 343 + ], + "score": 1.0, + "content": "2.2 REASONING IN A KB", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 506, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "The relation-set following operation. Note that relations can also be viewed as labeled edges", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 507, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 496, + 372 + ], + "score": 1.0, + "content": "in a knowledge graph, the vertices of which are entities. Adopting this view, we define the", + "type": "text" + }, + { + "bbox": [ + 496, + 362, + 502, + 370 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 360, + 507, + 372 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 370, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 194, + 384 + ], + "score": 1.0, + "content": "neighbors of an entity", + "type": "text" + }, + { + "bbox": [ + 195, + 372, + 204, + 381 + ], + "score": 0.83, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 370, + 296, + 384 + ], + "score": 1.0, + "content": "to be the set of entities", + "type": "text" + }, + { + "bbox": [ + 297, + 372, + 308, + 383 + ], + "score": 0.88, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 370, + 392, + 384 + ], + "score": 1.0, + "content": "that are connected to", + "type": "text" + }, + { + "bbox": [ + 393, + 372, + 403, + 382 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 370, + 479, + 384 + ], + "score": 1.0, + "content": "by an edge labeled", + "type": "text" + }, + { + "bbox": [ + 480, + 373, + 486, + 381 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 370, + 507, + 384 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 382, + 426, + 394 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 112, + 392 + ], + "score": 0.61, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 382, + 114, + 394 + ], + "score": 1.0, + "content": "-", + "type": "text" + }, + { + "bbox": [ + 114, + 382, + 257, + 394 + ], + "score": 0.78, + "content": "{ \\cdot } n e i g h b o r s ( x ) \\equiv \\left\\{ x _ { j } : ( x _ { i } , x _ { j } ) \\in r \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 382, + 426, + 394 + ], + "score": 1.0, + "content": ". Extending this to relation sets, we define", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 396, + 433, + 411 + ], + "lines": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "spans": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "score": 0.27, + "content": "R \\neg n e i g h b o r s ( X ) \\equiv \\left\\{ x _ { j } : \\exists r \\in R , x _ { i } \\in X \\mathrm { ~ s o ~ t h a t ~ } ( x _ { i } , x _ { j } ) \\in r \\right\\}", + "type": "interline_equation", + "image_path": "9cb092bdc7e564235443a1a50296fe508c4ec9ab08b37605ca24712668fdb14d.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 506, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 171, + 425 + ], + "score": 1.0, + "content": "Computing the", + "type": "text" + }, + { + "bbox": [ + 171, + 414, + 180, + 423 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "-neighbors of an entity is a single-step reasoning operation: e.g., the answer to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "the question q =“what movies were produced or directed by Quentin Tarantino” is precisely the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 120, + 448 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 435, + 129, + 445 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 434, + 172, + 448 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 172, + 436, + 186, + 446 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 434, + 200, + 448 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 201, + 435, + 325, + 447 + ], + "score": 0.56, + "content": "R = \\{ p r o d u c e r \\_ o f , w r i t e r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 434, + 342, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 435, + 452, + 446 + ], + "score": 0.8, + "content": "X = \\{ Q u e n t i n \\_ T a r a n t i n o \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 434, + 506, + 448 + ], + "score": 1.0, + "content": ". “Multi-hop”", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 446, + 507, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 248, + 458 + ], + "score": 1.0, + "content": "reasoning operations require nested", + "type": "text" + }, + { + "bbox": [ + 248, + 447, + 257, + 456 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 446, + 348, + 458 + ], + "score": 1.0, + "content": "-neighborhoods, e.g. if", + "type": "text" + }, + { + "bbox": [ + 349, + 447, + 417, + 458 + ], + "score": 0.89, + "content": "R ^ { \\prime } = \\{ a c t o r { \\_ } o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 446, + 437, + 458 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 438, + 447, + 449, + 456 + ], + "score": 0.85, + "content": "R ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 446, + 493, + 458 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 494, + 447, + 502, + 456 + ], + "score": 0.65, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 446, + 507, + 458 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 457, + 459, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 146, + 470 + ], + "score": 1.0, + "content": "neighbors", + "type": "text" + }, + { + "bbox": [ + 147, + 457, + 164, + 469 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 457, + 459, + 470 + ], + "score": 1.0, + "content": ") is the set of actors in movies produced or directed by Quentin Tarantino.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 240, + 486 + ], + "score": 1.0, + "content": "We would like to approximate the", + "type": "text" + }, + { + "bbox": [ + 240, + 474, + 249, + 484 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "-neighbors computation with differentiable operations that can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 278, + 497 + ], + "score": 1.0, + "content": "performed on the vectors encoding the sets", + "type": "text" + }, + { + "bbox": [ + 279, + 486, + 289, + 495 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 485, + 307, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 486, + 316, + 495 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 485, + 335, + 497 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 335, + 487, + 342, + 495 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 485, + 474, + 497 + ], + "score": 1.0, + "content": "encode a weighted set of entities", + "type": "text" + }, + { + "bbox": [ + 474, + 486, + 484, + 495 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 485, + 506, + 497 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 326, + 508 + ], + "score": 1.0, + "content": "let r encode a weighted set of relations. We first define", + "type": "text" + }, + { + "bbox": [ + 326, + 496, + 344, + 507 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "to be a weighted mixture of the relation", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 244, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 216, + 519 + ], + "score": 1.0, + "content": "matrices for all relations in", + "type": "text" + }, + { + "bbox": [ + 217, + 507, + 225, + 516 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 506, + 244, + 519 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 520, + 354, + 555 + ], + "lines": [ + { + "bbox": [ + 257, + 520, + 354, + 555 + ], + "spans": [ + { + "bbox": [ + 257, + 520, + 354, + 555 + ], + "score": 0.95, + "content": "\\mathbf { M } _ { R } \\equiv ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "60b2839bf400bcdb55946b6f3c2dbb5b00b6a55f9098196645d9422177f99007.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 520, + 354, + 537.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 257, + 537.5, + 354, + 555.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 557, + 370, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 371, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 325, + 571 + ], + "score": 1.0, + "content": "We then define the relation-set following operation for", + "type": "text" + }, + { + "bbox": [ + 326, + 559, + 333, + 568 + ], + "score": 0.6, + "content": "\\boldsymbol { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 556, + 351, + 571 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 351, + 560, + 357, + 567 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 556, + 371, + 571 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 572, + 389, + 607 + ], + "lines": [ + { + "bbox": [ + 221, + 572, + 389, + 607 + ], + "spans": [ + { + "bbox": [ + 221, + 572, + 389, + 607 + ], + "score": 0.95, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) \\equiv \\mathbf { x } \\mathbf { M } _ { R } = \\mathbf { x } ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "2b55b6737f4931bdc0f4862e1dbc04c43696357d7d8d22343c10123681d7209a.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 221, + 572, + 389, + 589.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 221, + 589.5, + 389, + 607.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 505, + 621 + ], + "score": 1.0, + "content": "As we will show below, this differentiable numerical relation-set following operation can be used as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 431, + 632 + ], + "score": 1.0, + "content": "a neural component to perform certain types of logical reasoning. In particular,", + "type": "text" + }, + { + "bbox": [ + 432, + 619, + 452, + 631 + ], + "score": 0.35, + "content": "\\operatorname { E q } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 422, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 192, + 643 + ], + "score": 1.0, + "content": "closely to the logical", + "type": "text" + }, + { + "bbox": [ + 192, + 631, + 201, + 640 + ], + "score": 0.82, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 630, + 422, + 643 + ], + "score": 1.0, + "content": "-neighborhood operation, as shown by the claim below.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 105, + 647, + 402, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 403, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 231, + 661 + ], + "score": 1.0, + "content": "Claim 1 The support of follow", + "type": "text" + }, + { + "bbox": [ + 231, + 648, + 253, + 659 + ], + "score": 0.87, + "content": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 645, + 332, + 661 + ], + "score": 1.0, + "content": "is exactly the set of", + "type": "text" + }, + { + "bbox": [ + 333, + 648, + 341, + 657 + ], + "score": 0.33, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 645, + 386, + 661 + ], + "score": 1.0, + "content": "-neighbors(", + "type": "text" + }, + { + "bbox": [ + 386, + 648, + 399, + 658 + ], + "score": 0.52, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 645, + 403, + 661 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 367, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 369, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 369, + 678 + ], + "score": 1.0, + "content": "A proof and the implications of this are discussed in Appendix B.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 384, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 385, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 385, + 701 + ], + "score": 1.0, + "content": "2.3 SCALABLE RELATION-SET FOLLOWING WITH A REIFIED KB", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 330, + 722 + ], + "score": 1.0, + "content": "Baseline implementations. Suppose the KB contains", + "type": "text" + }, + { + "bbox": [ + 330, + 711, + 346, + 721 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 709, + 388, + 722 + ], + "score": 1.0, + "content": "relations,", + "type": "text" + }, + { + "bbox": [ + 389, + 710, + 404, + 721 + ], + "score": 0.88, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 709, + 459, + 722 + ], + "score": 1.0, + "content": "entities, and", + "type": "text" + }, + { + "bbox": [ + 459, + 710, + 474, + 721 + ], + "score": 0.88, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "triples.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 507, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 145, + 735 + ], + "score": 1.0, + "content": "Typically", + "type": "text" + }, + { + "bbox": [ + 145, + 720, + 246, + 733 + ], + "score": 0.92, + "content": "\\hat { N _ { R } } < \\hat { N _ { E } } < \\hat { N _ { T } } \\ll \\hat { N _ { E } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 719, + 393, + 735 + ], + "score": 1.0, + "content": ". As noted above, we implement each", + "type": "text" + }, + { + "bbox": [ + 393, + 721, + 408, + 732 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 719, + 507, + 735 + ], + "score": 1.0, + "content": "as a sparse COO matrix,", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Sparse vs. dense matrices for relations. Scalably representing a large KB requires careful consid-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 504, + 105 + ], + "score": 1.0, + "content": "eration of the implementation. One important issue is that for all but the smallest KBs, a relation", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 460, + 117 + ], + "score": 1.0, + "content": "matrix must be implemented using a sparse matrix data structure, as explicitly storing all", + "type": "text" + }, + { + "bbox": [ + 460, + 104, + 476, + 117 + ], + "score": 0.9, + "content": "N _ { E } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "values", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "is impractical. For instance, consider a KB containing 10,000 movie entities and 100,000 person", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "entities. A relationship like writer_of would have only a few tens of thousands of facts (since most", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 450, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 450, + 150 + ], + "score": 1.0, + "content": "movies have only one or two writers), but a dense matrix would have 1 billion values.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 308, + 167 + ], + "score": 1.0, + "content": "We thus model relations as sparse matrices. Let", + "type": "text" + }, + { + "bbox": [ + 308, + 154, + 321, + 165 + ], + "score": 0.88, + "content": "N _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "be the number of entity pairs in the relation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 107, + 168, + 113, + 175 + ], + "score": 0.38, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 165, + 334, + 177 + ], + "score": 1.0, + "content": ": common sparse matrix data structures require space", + "type": "text" + }, + { + "bbox": [ + 334, + 165, + 363, + 177 + ], + "score": 0.92, + "content": "O ( N _ { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 165, + 505, + 177 + ], + "score": 1.0, + "content": ". One common sparse matrix data", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 177, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 253, + 188 + ], + "score": 1.0, + "content": "structure is a sparse coordinate pair", + "type": "text" + }, + { + "bbox": [ + 253, + 177, + 281, + 187 + ], + "score": 0.25, + "content": "( C O O )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 177, + 505, + 188 + ], + "score": 1.0, + "content": "encoding: with a COO encoding, each KB fact requires", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 188, + 264, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 264, + 199 + ], + "score": 1.0, + "content": "storing only two integers and one float.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 154, + 505, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 217 + ], + "score": 1.0, + "content": "Our implementations are based on Tensorflow (Abadi et al., 2016), which offers limited support for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "sparse matrices. In particular, driven by the limitations of GPU architecture, Tensorflow only supports", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "matrix multiplication between a sparse matrix COO and a dense matrix, but not between two sparse", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 374, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 374, + 249 + ], + "score": 1.0, + "content": "matrices, or between sparse higher-rank tensors and dense tensors.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 203, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "Entity types. It is often possible to easily group entities into disjoint sets by some notion of “type”:", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 265, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 506, + 277 + ], + "score": 1.0, + "content": "for example, in a movie domain, all entities might be either of the type “movie”, “person”, or “movie", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 504, + 288 + ], + "score": 1.0, + "content": "studio”. It is straightforward to extend the formalism above to typed sets of entities, and doing this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "can lead to some useful optimizations. We use these optimizations below where appropriate: in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 298, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 301, + 310 + ], + "score": 1.0, + "content": "particular, relation-set vectors r are of dimension", + "type": "text" + }, + { + "bbox": [ + 301, + 298, + 317, + 309 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 298, + 335, + 310 + ], + "score": 1.0, + "content": ", not", + "type": "text" + }, + { + "bbox": [ + 336, + 298, + 351, + 309 + ], + "score": 0.89, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 298, + 506, + 310 + ], + "score": 1.0, + "content": ", in the sections below. The full formal", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 365, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 365, + 321 + ], + "score": 1.0, + "content": "extension to typed entities and relations is given in Appendix A.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 253, + 506, + 321 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 330, + 221, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 223, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 223, + 343 + ], + "score": 1.0, + "content": "2.2 REASONING IN A KB", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 348, + 506, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 362 + ], + "score": 1.0, + "content": "The relation-set following operation. Note that relations can also be viewed as labeled edges", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 360, + 507, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 496, + 372 + ], + "score": 1.0, + "content": "in a knowledge graph, the vertices of which are entities. Adopting this view, we define the", + "type": "text" + }, + { + "bbox": [ + 496, + 362, + 502, + 370 + ], + "score": 0.7, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 360, + 507, + 372 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 370, + 507, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 194, + 384 + ], + "score": 1.0, + "content": "neighbors of an entity", + "type": "text" + }, + { + "bbox": [ + 195, + 372, + 204, + 381 + ], + "score": 0.83, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 370, + 296, + 384 + ], + "score": 1.0, + "content": "to be the set of entities", + "type": "text" + }, + { + "bbox": [ + 297, + 372, + 308, + 383 + ], + "score": 0.88, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 370, + 392, + 384 + ], + "score": 1.0, + "content": "that are connected to", + "type": "text" + }, + { + "bbox": [ + 393, + 372, + 403, + 382 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 370, + 479, + 384 + ], + "score": 1.0, + "content": "by an edge labeled", + "type": "text" + }, + { + "bbox": [ + 480, + 373, + 486, + 381 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 370, + 507, + 384 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 382, + 426, + 394 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 112, + 392 + ], + "score": 0.61, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 382, + 114, + 394 + ], + "score": 1.0, + "content": "-", + "type": "text" + }, + { + "bbox": [ + 114, + 382, + 257, + 394 + ], + "score": 0.78, + "content": "{ \\cdot } n e i g h b o r s ( x ) \\equiv \\left\\{ x _ { j } : ( x _ { i } , x _ { j } ) \\in r \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 382, + 426, + 394 + ], + "score": 1.0, + "content": ". Extending this to relation sets, we define", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 348, + 507, + 394 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 396, + 433, + 411 + ], + "lines": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "spans": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "score": 0.27, + "content": "R \\neg n e i g h b o r s ( X ) \\equiv \\left\\{ x _ { j } : \\exists r \\in R , x _ { i } \\in X \\mathrm { ~ s o ~ t h a t ~ } ( x _ { i } , x _ { j } ) \\in r \\right\\}", + "type": "interline_equation", + "image_path": "9cb092bdc7e564235443a1a50296fe508c4ec9ab08b37605ca24712668fdb14d.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 176, + 396, + 433, + 411 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 506, + 469 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 171, + 425 + ], + "score": 1.0, + "content": "Computing the", + "type": "text" + }, + { + "bbox": [ + 171, + 414, + 180, + 423 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "-neighbors of an entity is a single-step reasoning operation: e.g., the answer to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 437 + ], + "score": 1.0, + "content": "the question q =“what movies were produced or directed by Quentin Tarantino” is precisely the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 120, + 448 + ], + "score": 1.0, + "content": "set", + "type": "text" + }, + { + "bbox": [ + 120, + 435, + 129, + 445 + ], + "score": 0.8, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 434, + 172, + 448 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 172, + 436, + 186, + 446 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 434, + 200, + 448 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 201, + 435, + 325, + 447 + ], + "score": 0.56, + "content": "R = \\{ p r o d u c e r \\_ o f , w r i t e r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 434, + 342, + 448 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 435, + 452, + 446 + ], + "score": 0.8, + "content": "X = \\{ Q u e n t i n \\_ T a r a n t i n o \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 434, + 506, + 448 + ], + "score": 1.0, + "content": ". “Multi-hop”", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 446, + 507, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 248, + 458 + ], + "score": 1.0, + "content": "reasoning operations require nested", + "type": "text" + }, + { + "bbox": [ + 248, + 447, + 257, + 456 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 446, + 348, + 458 + ], + "score": 1.0, + "content": "-neighborhoods, e.g. if", + "type": "text" + }, + { + "bbox": [ + 349, + 447, + 417, + 458 + ], + "score": 0.89, + "content": "R ^ { \\prime } = \\{ a c t o r { \\_ } o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 446, + 437, + 458 + ], + "score": 1.0, + "content": "then", + "type": "text" + }, + { + "bbox": [ + 438, + 447, + 449, + 456 + ], + "score": 0.85, + "content": "R ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 446, + 493, + 458 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 494, + 447, + 502, + 456 + ], + "score": 0.65, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 446, + 507, + 458 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 457, + 459, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 146, + 470 + ], + "score": 1.0, + "content": "neighbors", + "type": "text" + }, + { + "bbox": [ + 147, + 457, + 164, + 469 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 457, + 459, + 470 + ], + "score": 1.0, + "content": ") is the set of actors in movies produced or directed by Quentin Tarantino.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 413, + 507, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 240, + 486 + ], + "score": 1.0, + "content": "We would like to approximate the", + "type": "text" + }, + { + "bbox": [ + 240, + 474, + 249, + 484 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "-neighbors computation with differentiable operations that can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 278, + 497 + ], + "score": 1.0, + "content": "performed on the vectors encoding the sets", + "type": "text" + }, + { + "bbox": [ + 279, + 486, + 289, + 495 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 485, + 307, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 486, + 316, + 495 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 485, + 335, + 497 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 335, + 487, + 342, + 495 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 485, + 474, + 497 + ], + "score": 1.0, + "content": "encode a weighted set of entities", + "type": "text" + }, + { + "bbox": [ + 474, + 486, + 484, + 495 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 485, + 506, + 497 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 326, + 508 + ], + "score": 1.0, + "content": "let r encode a weighted set of relations. We first define", + "type": "text" + }, + { + "bbox": [ + 326, + 496, + 344, + 507 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "to be a weighted mixture of the relation", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 506, + 244, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 216, + 519 + ], + "score": 1.0, + "content": "matrices for all relations in", + "type": "text" + }, + { + "bbox": [ + 217, + 507, + 225, + 516 + ], + "score": 0.84, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 506, + 244, + 519 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 474, + 506, + 519 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 520, + 354, + 555 + ], + "lines": [ + { + "bbox": [ + 257, + 520, + 354, + 555 + ], + "spans": [ + { + "bbox": [ + 257, + 520, + 354, + 555 + ], + "score": 0.95, + "content": "\\mathbf { M } _ { R } \\equiv ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "60b2839bf400bcdb55946b6f3c2dbb5b00b6a55f9098196645d9422177f99007.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 257, + 520, + 354, + 537.5 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 257, + 537.5, + 354, + 555.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 557, + 370, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 371, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 325, + 571 + ], + "score": 1.0, + "content": "We then define the relation-set following operation for", + "type": "text" + }, + { + "bbox": [ + 326, + 559, + 333, + 568 + ], + "score": 0.6, + "content": "\\boldsymbol { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 556, + 351, + 571 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 351, + 560, + 357, + 567 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 556, + 371, + 571 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 556, + 371, + 571 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 572, + 389, + 607 + ], + "lines": [ + { + "bbox": [ + 221, + 572, + 389, + 607 + ], + "spans": [ + { + "bbox": [ + 221, + 572, + 389, + 607 + ], + "score": 0.95, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) \\equiv \\mathbf { x } \\mathbf { M } _ { R } = \\mathbf { x } ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "2b55b6737f4931bdc0f4862e1dbc04c43696357d7d8d22343c10123681d7209a.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 221, + 572, + 389, + 589.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 221, + 589.5, + 389, + 607.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 505, + 621 + ], + "score": 1.0, + "content": "As we will show below, this differentiable numerical relation-set following operation can be used as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 431, + 632 + ], + "score": 1.0, + "content": "a neural component to perform certain types of logical reasoning. In particular,", + "type": "text" + }, + { + "bbox": [ + 432, + 619, + 452, + 631 + ], + "score": 0.35, + "content": "\\operatorname { E q } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "corresponds", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 630, + 422, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 192, + 643 + ], + "score": 1.0, + "content": "closely to the logical", + "type": "text" + }, + { + "bbox": [ + 192, + 631, + 201, + 640 + ], + "score": 0.82, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 630, + 422, + 643 + ], + "score": 1.0, + "content": "-neighborhood operation, as shown by the claim below.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 607, + 505, + 643 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 647, + 402, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 403, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 231, + 661 + ], + "score": 1.0, + "content": "Claim 1 The support of follow", + "type": "text" + }, + { + "bbox": [ + 231, + 648, + 253, + 659 + ], + "score": 0.87, + "content": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 645, + 332, + 661 + ], + "score": 1.0, + "content": "is exactly the set of", + "type": "text" + }, + { + "bbox": [ + 333, + 648, + 341, + 657 + ], + "score": 0.33, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 645, + 386, + 661 + ], + "score": 1.0, + "content": "-neighbors(", + "type": "text" + }, + { + "bbox": [ + 386, + 648, + 399, + 658 + ], + "score": 0.52, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 645, + 403, + 661 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 645, + 403, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 664, + 367, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 369, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 369, + 678 + ], + "score": 1.0, + "content": "A proof and the implications of this are discussed in Appendix B.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 663, + 369, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 689, + 384, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 689, + 385, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 385, + 701 + ], + "score": 1.0, + "content": "2.3 SCALABLE RELATION-SET FOLLOWING WITH A REIFIED KB", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 330, + 722 + ], + "score": 1.0, + "content": "Baseline implementations. Suppose the KB contains", + "type": "text" + }, + { + "bbox": [ + 330, + 711, + 346, + 721 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 709, + 388, + 722 + ], + "score": 1.0, + "content": "relations,", + "type": "text" + }, + { + "bbox": [ + 389, + 710, + 404, + 721 + ], + "score": 0.88, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 709, + 459, + 722 + ], + "score": 1.0, + "content": "entities, and", + "type": "text" + }, + { + "bbox": [ + 459, + 710, + 474, + 721 + ], + "score": 0.88, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "triples.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 507, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 145, + 735 + ], + "score": 1.0, + "content": "Typically", + "type": "text" + }, + { + "bbox": [ + 145, + 720, + 246, + 733 + ], + "score": 0.92, + "content": "\\hat { N _ { R } } < \\hat { N _ { E } } < \\hat { N _ { T } } \\ll \\hat { N _ { E } ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 719, + 393, + 735 + ], + "score": 1.0, + "content": ". As noted above, we implement each", + "type": "text" + }, + { + "bbox": [ + 393, + 721, + 408, + 732 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 719, + 507, + 735 + ], + "score": 1.0, + "content": "as a sparse COO matrix,", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 709, + 507, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 80, + 498, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 113, + 80, + 498, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 80, + 498, + 149 + ], + "spans": [ + { + "bbox": [ + 113, + 80, + 498, + 149 + ], + "score": 0.98, + "html": "
StrategyDefinitionBatch?Space complexity# Operations
sp-dense matmuldense +or ⊙sparse +
naive mixingEq 1-2noO(Nr+NE+NR)10NR
late mixingEq3yesO(NT +bNE +bNR)NRNR0
reified KBEq 4yesO(bNr+bNE)310
", + "type": "table", + "image_path": "ba70e01f41db9adbed02fbe31d679b7e5c7c8d3ef732d7075e28317a8e12fa34.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 80, + 498, + 103.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 103.0, + 498, + 126.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 126.0, + 498, + 149.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 161, + 503, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 403, + 173 + ], + "score": 1.0, + "content": "Table 2: Complexity of implementations of relation-set following, where", + "type": "text" + }, + { + "bbox": [ + 403, + 162, + 419, + 172 + ], + "score": 0.89, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "is the number of KB", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 438, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 136, + 185 + ], + "score": 1.0, + "content": "triples,", + "type": "text" + }, + { + "bbox": [ + 137, + 173, + 152, + 183 + ], + "score": 0.88, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 172, + 245, + 185 + ], + "score": 1.0, + "content": "the number of entities,", + "type": "text" + }, + { + "bbox": [ + 246, + 173, + 262, + 183 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 172, + 377, + 185 + ], + "score": 1.0, + "content": "the number of relations, and", + "type": "text" + }, + { + "bbox": [ + 378, + 173, + 383, + 182 + ], + "score": 0.73, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 172, + 438, + 185 + ], + "score": 1.0, + "content": "is batch size.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 275, + 206 + ], + "score": 1.0, + "content": "so collectively these matrices require space", + "type": "text" + }, + { + "bbox": [ + 275, + 193, + 306, + 205 + ], + "score": 0.92, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 193, + 476, + 206 + ], + "score": 1.0, + "content": ". Each triple appears in only one relation, so", + "type": "text" + }, + { + "bbox": [ + 477, + 193, + 494, + 204 + ], + "score": 0.88, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 171, + 216 + ], + "score": 1.0, + "content": "Eq 1 is also size", + "type": "text" + }, + { + "bbox": [ + 172, + 204, + 202, + 216 + ], + "score": 0.93, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 203, + 505, + 216 + ], + "score": 1.0, + "content": ". Since sparse-sparse matrix multiplication is not supported in Tensorflow we", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 150, + 228 + ], + "score": 1.0, + "content": "implement", + "type": "text" + }, + { + "bbox": [ + 151, + 215, + 173, + 226 + ], + "score": 0.89, + "content": "\\mathbf { x M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 214, + 321, + 228 + ], + "score": 1.0, + "content": "using dense-sparse multiplication, so", + "type": "text" + }, + { + "bbox": [ + 322, + 217, + 329, + 225 + ], + "score": 0.36, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 214, + 450, + 228 + ], + "score": 1.0, + "content": "must be a dense vector of size", + "type": "text" + }, + { + "bbox": [ + 450, + 215, + 481, + 226 + ], + "score": 0.88, + "content": "O ( N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 214, + 506, + 228 + ], + "score": 1.0, + "content": ", as is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 363, + 239 + ], + "score": 1.0, + "content": "the output of relation-set following. Thus the space complexity of", + "type": "text" + }, + { + "bbox": [ + 363, + 226, + 412, + 238 + ], + "score": 0.27, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 226, + 422, + 239 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 422, + 226, + 502, + 238 + ], + "score": 0.88, + "content": "O ( N _ { T } + N _ { E } + N _ { R } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 226, + 506, + 239 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 230, + 250 + ], + "score": 1.0, + "content": "if implemented as suggested by", + "type": "text" + }, + { + "bbox": [ + 230, + 237, + 249, + 248 + ], + "score": 0.39, + "content": "\\operatorname { E q } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 235, + 506, + 250 + ], + "score": 1.0, + "content": ". We call this the naive mixing implementation, and its complexity", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 248, + 211, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 211, + 259 + ], + "score": 1.0, + "content": "is summarized in Table 2.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "Because Tensorflow does not support general sparse tensor contractions, it is not always possible to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "extend sparse-matrix computations to minibatches. Thus we also consider a variant of naive mixing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "score": 1.0, + "content": "called late mixing, which mixes the output of many single-relation following steps, rather than mixing", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 162, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 162, + 308 + ], + "score": 1.0, + "content": "the KB itself:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 305, + 371, + 340 + ], + "lines": [ + { + "bbox": [ + 239, + 305, + 371, + 340 + ], + "spans": [ + { + "bbox": [ + 239, + 305, + 371, + 340 + ], + "score": 0.95, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( \\mathbf { r } [ k ] \\cdot \\mathbf { x } \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "e48ec3ec31151c7952ac8d2b5c7ea68f2a48054f7a8b6ad270a69f8ae22592ec.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 305, + 371, + 322.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 239, + 322.5, + 371, + 340.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 504, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 498, + 354 + ], + "score": 1.0, + "content": "Unlike naive mixing, late mixing can be extended easily to a minibatches (see Appendix C). Let", + "type": "text" + }, + { + "bbox": [ + 498, + 342, + 504, + 351 + ], + "score": 0.65, + "content": "b", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 351, + 504, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 194, + 365 + ], + "score": 1.0, + "content": "be the batch size and", + "type": "text" + }, + { + "bbox": [ + 194, + 353, + 203, + 362 + ], + "score": 0.6, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 351, + 277, + 365 + ], + "score": 1.0, + "content": "be a minibatch of", + "type": "text" + }, + { + "bbox": [ + 277, + 353, + 283, + 362 + ], + "score": 0.78, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 351, + 325, + 365 + ], + "score": 1.0, + "content": "examples", + "type": "text" + }, + { + "bbox": [ + 325, + 352, + 372, + 364 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { b } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 351, + 488, + 365 + ], + "score": 1.0, + "content": ": then this approach leads to", + "type": "text" + }, + { + "bbox": [ + 488, + 352, + 504, + 363 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 143, + 376 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 144, + 363, + 166, + 374 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 362, + 223, + 376 + ], + "score": 1.0, + "content": ", each of size", + "type": "text" + }, + { + "bbox": [ + 223, + 363, + 258, + 375 + ], + "score": 0.91, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 362, + 506, + 376 + ], + "score": 1.0, + "content": ". However, they need not all be stored at once, so the space", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 191, + 387 + ], + "score": 1.0, + "content": "complexity becomes", + "type": "text" + }, + { + "bbox": [ + 192, + 375, + 284, + 386 + ], + "score": 0.88, + "content": "O ( b N _ { E } + b N _ { R } + N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 373, + 506, + 387 + ], + "score": 1.0, + "content": ". An additional cost of late mixing is that we must now", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 219, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 138, + 398 + ], + "score": 1.0, + "content": "sum up", + "type": "text" + }, + { + "bbox": [ + 138, + 385, + 154, + 397 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 385, + 219, + 398 + ], + "score": 1.0, + "content": "dense matrices.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "A reified knowledge base. While semantic parses for natural questions often use small sets of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "relations (often singleton ones), in learning there is substantial uncertainty about what the members of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "these small sets should be. Furthermore, realistic wide-coverage KBs have many relations—typically", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "hundreds or thousands. This leads to a situation where, at least during early phases of learning, it", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "is necessary to evaluate the result of mixing very large sets of relations. When many relations are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 457, + 406, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 406, + 469 + ], + "score": 1.0, + "content": "mixed, late mixing becomes quite expensive (as experiments below show).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 304, + 486 + ], + "score": 1.0, + "content": "An alternative is to represent each KB assertion", + "type": "text" + }, + { + "bbox": [ + 305, + 474, + 346, + 486 + ], + "score": 0.92, + "content": "r _ { k } ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 473, + 390, + 486 + ], + "score": 1.0, + "content": "as a tuple", + "type": "text" + }, + { + "bbox": [ + 390, + 474, + 420, + 486 + ], + "score": 0.92, + "content": "( i , j , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 473, + 450, + 486 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 450, + 474, + 473, + 485 + ], + "score": 0.9, + "content": "i , j , k", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 148, + 497 + ], + "score": 1.0, + "content": "indices of", + "type": "text" + }, + { + "bbox": [ + 148, + 486, + 172, + 497 + ], + "score": 0.9, + "content": "x _ { i } , x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 484, + 193, + 497 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 193, + 486, + 204, + 496 + ], + "score": 0.86, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 484, + 248, + 497 + ], + "score": 1.0, + "content": ". There are", + "type": "text" + }, + { + "bbox": [ + 249, + 485, + 264, + 496 + ], + "score": 0.89, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 484, + 342, + 497 + ], + "score": 1.0, + "content": "such triples, so for", + "type": "text" + }, + { + "bbox": [ + 342, + 485, + 402, + 496 + ], + "score": 0.92, + "content": "\\ell = 1 , \\ldots , N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 484, + 419, + 497 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 419, + 485, + 460, + 497 + ], + "score": 0.93, + "content": "( i _ { \\ell } , j _ { \\ell } , k _ { \\ell } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 495, + 283, + 508 + ], + "spans": [ + { + "bbox": [ + 107, + 496, + 112, + 506 + ], + "score": 0.74, + "content": "\\ell \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 495, + 283, + 508 + ], + "score": 1.0, + "content": "-th triple. We define these sparse matrices:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 511, + 494, + 539 + ], + "lines": [ + { + "bbox": [ + 111, + 511, + 494, + 539 + ], + "spans": [ + { + "bbox": [ + 111, + 511, + 494, + 539 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { s u b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = i \\ell } & \\mathbf { M } _ { o b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = j \\ell } & { \\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = k _ { \\ell } } \\\\ { 0 \\mathrm { ~ e l s e ~ } } & { } \\end{array} \\right. \\right. } \\end{array} \\right. \\end{array}", + "type": "interline_equation", + "image_path": "7b6f2d3b832979f50673d8cab4c88b37d1f88c8413db6eef9ef8eb35cea25723.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 111, + 511, + 494, + 520.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 520.3333333333334, + 494, + 529.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 111, + 529.6666666666667, + 494, + 539.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 162, + 561 + ], + "score": 1.0, + "content": "Conceptually,", + "type": "text" + }, + { + "bbox": [ + 163, + 549, + 189, + 561 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 548, + 251, + 561 + ], + "score": 1.0, + "content": "maps the index", + "type": "text" + }, + { + "bbox": [ + 251, + 549, + 257, + 559 + ], + "score": 0.76, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 548, + 282, + 561 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 282, + 549, + 288, + 559 + ], + "score": 0.65, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 548, + 401, + 561 + ], + "score": 1.0, + "content": "-th triple to its subject entity;", + "type": "text" + }, + { + "bbox": [ + 401, + 549, + 424, + 561 + ], + "score": 0.88, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 548, + 447, + 561 + ], + "score": 1.0, + "content": "maps", + "type": "text" + }, + { + "bbox": [ + 448, + 549, + 453, + 559 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "to the object", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 151, + 572 + ], + "score": 1.0, + "content": "entity; and", + "type": "text" + }, + { + "bbox": [ + 151, + 560, + 172, + 571 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 560, + 197, + 572 + ], + "score": 1.0, + "content": "maps", + "type": "text" + }, + { + "bbox": [ + 198, + 560, + 203, + 569 + ], + "score": 0.75, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 560, + 506, + 572 + ], + "score": 1.0, + "content": "to the relation. We can now implement the relation-set following as below,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 570, + 232, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 133, + 583 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 572, + 142, + 581 + ], + "score": 0.84, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 570, + 232, + 583 + ], + "score": 1.0, + "content": "is Hadamard product:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 586, + 384, + 603 + ], + "lines": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "spans": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "score": 0.93, + "content": "f o l l o w \\mathbf { ( x , r ) } = ( \\mathbf { x M } _ { s u b j } ^ { T } \\odot \\mathbf { r M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }", + "type": "interline_equation", + "image_path": "da074048f840009029f53c329eafda63d58298fc4d2b5be804646c4a4e587842.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 102, + 604, + 509, + 627 + ], + "spans": [ + { + "bbox": [ + 102, + 604, + 154, + 627 + ], + "score": 1.0, + "content": "Notice that", + "type": "text" + }, + { + "bbox": [ + 154, + 607, + 186, + 622 + ], + "score": 0.92, + "content": "\\mathbf { x M } _ { s u b j } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 604, + 316, + 627 + ], + "score": 1.0, + "content": "are the triples with an entity in", + "type": "text" + }, + { + "bbox": [ + 316, + 611, + 323, + 619 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 604, + 391, + 627 + ], + "score": 1.0, + "content": "as their subject,", + "type": "text" + }, + { + "bbox": [ + 391, + 607, + 416, + 621 + ], + "score": 0.92, + "content": "\\mathbf { r } \\mathbf { M } _ { r e l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 604, + 509, + 627 + ], + "score": 1.0, + "content": "are the triples with a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 151, + 633 + ], + "score": 1.0, + "content": "relation in", + "type": "text" + }, + { + "bbox": [ + 152, + 622, + 158, + 630 + ], + "score": 0.41, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 619, + 505, + 633 + ], + "score": 1.0, + "content": ", and the Hadamard product is the intersection of these. The final multiplication by", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 129, + 643 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "finds the object entities of the triples in the intersection. These operations naturally extend to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 642, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 321, + 654 + ], + "score": 1.0, + "content": "minibatches (see Appendix). The reified KB has size", + "type": "text" + }, + { + "bbox": [ + 321, + 642, + 352, + 654 + ], + "score": 0.92, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 642, + 506, + 654 + ], + "score": 1.0, + "content": ", the sets of triples that are intersected", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 652, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 146, + 666 + ], + "score": 1.0, + "content": "have size", + "type": "text" + }, + { + "bbox": [ + 146, + 653, + 181, + 665 + ], + "score": 0.93, + "content": "O ( b N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 652, + 290, + 666 + ], + "score": 1.0, + "content": ", and the final result is size", + "type": "text" + }, + { + "bbox": [ + 290, + 653, + 325, + 665 + ], + "score": 0.93, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 652, + 414, + 666 + ], + "score": 1.0, + "content": ", giving a final size of", + "type": "text" + }, + { + "bbox": [ + 415, + 653, + 480, + 665 + ], + "score": 0.91, + "content": "O ( b N _ { T } + b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 652, + 506, + 666 + ], + "score": 1.0, + "content": ", with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 664, + 200, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 181, + 677 + ], + "score": 1.0, + "content": "no dependence on", + "type": "text" + }, + { + "bbox": [ + 181, + 664, + 196, + 675 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 664, + 200, + 677 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "Table 2 summarizes the complexity of these three mathematically equivalent but computationally", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 690, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 705 + ], + "score": 1.0, + "content": "different implementions. The analysis suggests that the reified KB is preferable if there are many", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 702, + 313, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 286, + 713 + ], + "score": 1.0, + "content": "relations, which is the case for most realistic", + "type": "text" + }, + { + "bbox": [ + 286, + 702, + 309, + 713 + ], + "score": 0.8, + "content": "{ \\mathrm { K B s } } ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 703, + 313, + 713 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 117, + 721, + 444, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 446, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 446, + 734 + ], + "score": 1.0, + "content": "3The larger benchmark datasets used in this paper have 200 and 616 relations respectively.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 113, + 80, + 498, + 149 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 113, + 80, + 498, + 149 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 80, + 498, + 149 + ], + "spans": [ + { + "bbox": [ + 113, + 80, + 498, + 149 + ], + "score": 0.98, + "html": "
StrategyDefinitionBatch?Space complexity# Operations
sp-dense matmuldense +or ⊙sparse +
naive mixingEq 1-2noO(Nr+NE+NR)10NR
late mixingEq3yesO(NT +bNE +bNR)NRNR0
reified KBEq 4yesO(bNr+bNE)310
", + "type": "table", + "image_path": "ba70e01f41db9adbed02fbe31d679b7e5c7c8d3ef732d7075e28317a8e12fa34.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 80, + 498, + 103.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 103.0, + 498, + 126.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 126.0, + 498, + 149.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 161, + 503, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 504, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 403, + 173 + ], + "score": 1.0, + "content": "Table 2: Complexity of implementations of relation-set following, where", + "type": "text" + }, + { + "bbox": [ + 403, + 162, + 419, + 172 + ], + "score": 0.89, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 162, + 504, + 173 + ], + "score": 1.0, + "content": "is the number of KB", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 438, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 136, + 185 + ], + "score": 1.0, + "content": "triples,", + "type": "text" + }, + { + "bbox": [ + 137, + 173, + 152, + 183 + ], + "score": 0.88, + "content": "N _ { E }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 172, + 245, + 185 + ], + "score": 1.0, + "content": "the number of entities,", + "type": "text" + }, + { + "bbox": [ + 246, + 173, + 262, + 183 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 172, + 377, + 185 + ], + "score": 1.0, + "content": "the number of relations, and", + "type": "text" + }, + { + "bbox": [ + 378, + 173, + 383, + 182 + ], + "score": 0.73, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 172, + 438, + 185 + ], + "score": 1.0, + "content": "is batch size.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 162, + 504, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 275, + 206 + ], + "score": 1.0, + "content": "so collectively these matrices require space", + "type": "text" + }, + { + "bbox": [ + 275, + 193, + 306, + 205 + ], + "score": 0.92, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 193, + 476, + 206 + ], + "score": 1.0, + "content": ". Each triple appears in only one relation, so", + "type": "text" + }, + { + "bbox": [ + 477, + 193, + 494, + 204 + ], + "score": 0.88, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 171, + 216 + ], + "score": 1.0, + "content": "Eq 1 is also size", + "type": "text" + }, + { + "bbox": [ + 172, + 204, + 202, + 216 + ], + "score": 0.93, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 203, + 505, + 216 + ], + "score": 1.0, + "content": ". Since sparse-sparse matrix multiplication is not supported in Tensorflow we", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 214, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 150, + 228 + ], + "score": 1.0, + "content": "implement", + "type": "text" + }, + { + "bbox": [ + 151, + 215, + 173, + 226 + ], + "score": 0.89, + "content": "\\mathbf { x M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 214, + 321, + 228 + ], + "score": 1.0, + "content": "using dense-sparse multiplication, so", + "type": "text" + }, + { + "bbox": [ + 322, + 217, + 329, + 225 + ], + "score": 0.36, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 214, + 450, + 228 + ], + "score": 1.0, + "content": "must be a dense vector of size", + "type": "text" + }, + { + "bbox": [ + 450, + 215, + 481, + 226 + ], + "score": 0.88, + "content": "O ( N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 214, + 506, + 228 + ], + "score": 1.0, + "content": ", as is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 226, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 363, + 239 + ], + "score": 1.0, + "content": "the output of relation-set following. Thus the space complexity of", + "type": "text" + }, + { + "bbox": [ + 363, + 226, + 412, + 238 + ], + "score": 0.27, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 226, + 422, + 239 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 422, + 226, + 502, + 238 + ], + "score": 0.88, + "content": "O ( N _ { T } + N _ { E } + N _ { R } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 226, + 506, + 239 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 230, + 250 + ], + "score": 1.0, + "content": "if implemented as suggested by", + "type": "text" + }, + { + "bbox": [ + 230, + 237, + 249, + 248 + ], + "score": 0.39, + "content": "\\operatorname { E q } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 235, + 506, + 250 + ], + "score": 1.0, + "content": ". We call this the naive mixing implementation, and its complexity", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 248, + 211, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 211, + 259 + ], + "score": 1.0, + "content": "is summarized in Table 2.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 193, + 506, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "Because Tensorflow does not support general sparse tensor contractions, it is not always possible to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "extend sparse-matrix computations to minibatches. Thus we also consider a variant of naive mixing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 300 + ], + "score": 1.0, + "content": "called late mixing, which mixes the output of many single-relation following steps, rather than mixing", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 298, + 162, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 162, + 308 + ], + "score": 1.0, + "content": "the KB itself:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 264, + 506, + 308 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 305, + 371, + 340 + ], + "lines": [ + { + "bbox": [ + 239, + 305, + 371, + 340 + ], + "spans": [ + { + "bbox": [ + 239, + 305, + 371, + 340 + ], + "score": 0.95, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( \\mathbf { r } [ k ] \\cdot \\mathbf { x } \\mathbf { M } _ { r _ { k } } )", + "type": "interline_equation", + "image_path": "e48ec3ec31151c7952ac8d2b5c7ea68f2a48054f7a8b6ad270a69f8ae22592ec.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 305, + 371, + 322.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 239, + 322.5, + 371, + 340.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 504, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 498, + 354 + ], + "score": 1.0, + "content": "Unlike naive mixing, late mixing can be extended easily to a minibatches (see Appendix C). Let", + "type": "text" + }, + { + "bbox": [ + 498, + 342, + 504, + 351 + ], + "score": 0.65, + "content": "b", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 351, + 504, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 194, + 365 + ], + "score": 1.0, + "content": "be the batch size and", + "type": "text" + }, + { + "bbox": [ + 194, + 353, + 203, + 362 + ], + "score": 0.6, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 351, + 277, + 365 + ], + "score": 1.0, + "content": "be a minibatch of", + "type": "text" + }, + { + "bbox": [ + 277, + 353, + 283, + 362 + ], + "score": 0.78, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 351, + 325, + 365 + ], + "score": 1.0, + "content": "examples", + "type": "text" + }, + { + "bbox": [ + 325, + 352, + 372, + 364 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { b } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 351, + 488, + 365 + ], + "score": 1.0, + "content": ": then this approach leads to", + "type": "text" + }, + { + "bbox": [ + 488, + 352, + 504, + 363 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 362, + 506, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 143, + 376 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 144, + 363, + 166, + 374 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 362, + 223, + 376 + ], + "score": 1.0, + "content": ", each of size", + "type": "text" + }, + { + "bbox": [ + 223, + 363, + 258, + 375 + ], + "score": 0.91, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 362, + 506, + 376 + ], + "score": 1.0, + "content": ". However, they need not all be stored at once, so the space", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 191, + 387 + ], + "score": 1.0, + "content": "complexity becomes", + "type": "text" + }, + { + "bbox": [ + 192, + 375, + 284, + 386 + ], + "score": 0.88, + "content": "O ( b N _ { E } + b N _ { R } + N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 373, + 506, + 387 + ], + "score": 1.0, + "content": ". An additional cost of late mixing is that we must now", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 219, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 138, + 398 + ], + "score": 1.0, + "content": "sum up", + "type": "text" + }, + { + "bbox": [ + 138, + 385, + 154, + 397 + ], + "score": 0.88, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 385, + 219, + 398 + ], + "score": 1.0, + "content": "dense matrices.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 340, + 506, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 402, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "A reified knowledge base. While semantic parses for natural questions often use small sets of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "relations (often singleton ones), in learning there is substantial uncertainty about what the members of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "these small sets should be. Furthermore, realistic wide-coverage KBs have many relations—typically", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "hundreds or thousands. This leads to a situation where, at least during early phases of learning, it", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 458 + ], + "score": 1.0, + "content": "is necessary to evaluate the result of mixing very large sets of relations. When many relations are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 457, + 406, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 406, + 469 + ], + "score": 1.0, + "content": "mixed, late mixing becomes quite expensive (as experiments below show).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 401, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 304, + 486 + ], + "score": 1.0, + "content": "An alternative is to represent each KB assertion", + "type": "text" + }, + { + "bbox": [ + 305, + 474, + 346, + 486 + ], + "score": 0.92, + "content": "r _ { k } ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 473, + 390, + 486 + ], + "score": 1.0, + "content": "as a tuple", + "type": "text" + }, + { + "bbox": [ + 390, + 474, + 420, + 486 + ], + "score": 0.92, + "content": "( i , j , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 473, + 450, + 486 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 450, + 474, + 473, + 485 + ], + "score": 0.9, + "content": "i , j , k", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 148, + 497 + ], + "score": 1.0, + "content": "indices of", + "type": "text" + }, + { + "bbox": [ + 148, + 486, + 172, + 497 + ], + "score": 0.9, + "content": "x _ { i } , x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 484, + 193, + 497 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 193, + 486, + 204, + 496 + ], + "score": 0.86, + "content": "r _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 484, + 248, + 497 + ], + "score": 1.0, + "content": ". There are", + "type": "text" + }, + { + "bbox": [ + 249, + 485, + 264, + 496 + ], + "score": 0.89, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 484, + 342, + 497 + ], + "score": 1.0, + "content": "such triples, so for", + "type": "text" + }, + { + "bbox": [ + 342, + 485, + 402, + 496 + ], + "score": 0.92, + "content": "\\ell = 1 , \\ldots , N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 484, + 419, + 497 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 419, + 485, + 460, + 497 + ], + "score": 0.93, + "content": "( i _ { \\ell } , j _ { \\ell } , k _ { \\ell } )", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 495, + 283, + 508 + ], + "spans": [ + { + "bbox": [ + 107, + 496, + 112, + 506 + ], + "score": 0.74, + "content": "\\ell \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 495, + 283, + 508 + ], + "score": 1.0, + "content": "-th triple. We define these sparse matrices:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 473, + 505, + 508 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 511, + 494, + 539 + ], + "lines": [ + { + "bbox": [ + 111, + 511, + 494, + 539 + ], + "spans": [ + { + "bbox": [ + 111, + 511, + 494, + 539 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { s u b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = i \\ell } & \\mathbf { M } _ { o b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = j \\ell } & { \\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = k _ { \\ell } } \\\\ { 0 \\mathrm { ~ e l s e ~ } } & { } \\end{array} \\right. \\right. } \\end{array} \\right. \\end{array}", + "type": "interline_equation", + "image_path": "7b6f2d3b832979f50673d8cab4c88b37d1f88c8413db6eef9ef8eb35cea25723.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 111, + 511, + 494, + 520.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 520.3333333333334, + 494, + 529.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 111, + 529.6666666666667, + 494, + 539.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 548, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 162, + 561 + ], + "score": 1.0, + "content": "Conceptually,", + "type": "text" + }, + { + "bbox": [ + 163, + 549, + 189, + 561 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 548, + 251, + 561 + ], + "score": 1.0, + "content": "maps the index", + "type": "text" + }, + { + "bbox": [ + 251, + 549, + 257, + 559 + ], + "score": 0.76, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 548, + 282, + 561 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 282, + 549, + 288, + 559 + ], + "score": 0.65, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 548, + 401, + 561 + ], + "score": 1.0, + "content": "-th triple to its subject entity;", + "type": "text" + }, + { + "bbox": [ + 401, + 549, + 424, + 561 + ], + "score": 0.88, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 548, + 447, + 561 + ], + "score": 1.0, + "content": "maps", + "type": "text" + }, + { + "bbox": [ + 448, + 549, + 453, + 559 + ], + "score": 0.73, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "to the object", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 151, + 572 + ], + "score": 1.0, + "content": "entity; and", + "type": "text" + }, + { + "bbox": [ + 151, + 560, + 172, + 571 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 560, + 197, + 572 + ], + "score": 1.0, + "content": "maps", + "type": "text" + }, + { + "bbox": [ + 198, + 560, + 203, + 569 + ], + "score": 0.75, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 560, + 506, + 572 + ], + "score": 1.0, + "content": "to the relation. We can now implement the relation-set following as below,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 570, + 232, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 133, + 583 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 572, + 142, + 581 + ], + "score": 0.84, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 570, + 232, + 583 + ], + "score": 1.0, + "content": "is Hadamard product:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 548, + 506, + 583 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 586, + 384, + 603 + ], + "lines": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "spans": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "score": 0.93, + "content": "f o l l o w \\mathbf { ( x , r ) } = ( \\mathbf { x M } _ { s u b j } ^ { T } \\odot \\mathbf { r M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }", + "type": "interline_equation", + "image_path": "da074048f840009029f53c329eafda63d58298fc4d2b5be804646c4a4e587842.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 225, + 586, + 384, + 603 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 102, + 604, + 509, + 627 + ], + "spans": [ + { + "bbox": [ + 102, + 604, + 154, + 627 + ], + "score": 1.0, + "content": "Notice that", + "type": "text" + }, + { + "bbox": [ + 154, + 607, + 186, + 622 + ], + "score": 0.92, + "content": "\\mathbf { x M } _ { s u b j } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 604, + 316, + 627 + ], + "score": 1.0, + "content": "are the triples with an entity in", + "type": "text" + }, + { + "bbox": [ + 316, + 611, + 323, + 619 + ], + "score": 0.65, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 604, + 391, + 627 + ], + "score": 1.0, + "content": "as their subject,", + "type": "text" + }, + { + "bbox": [ + 391, + 607, + 416, + 621 + ], + "score": 0.92, + "content": "\\mathbf { r } \\mathbf { M } _ { r e l } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 604, + 509, + 627 + ], + "score": 1.0, + "content": "are the triples with a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 151, + 633 + ], + "score": 1.0, + "content": "relation in", + "type": "text" + }, + { + "bbox": [ + 152, + 622, + 158, + 630 + ], + "score": 0.41, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 619, + 505, + 633 + ], + "score": 1.0, + "content": ", and the Hadamard product is the intersection of these. The final multiplication by", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 129, + 643 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "finds the object entities of the triples in the intersection. These operations naturally extend to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 642, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 321, + 654 + ], + "score": 1.0, + "content": "minibatches (see Appendix). The reified KB has size", + "type": "text" + }, + { + "bbox": [ + 321, + 642, + 352, + 654 + ], + "score": 0.92, + "content": "O ( N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 642, + 506, + 654 + ], + "score": 1.0, + "content": ", the sets of triples that are intersected", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 652, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 146, + 666 + ], + "score": 1.0, + "content": "have size", + "type": "text" + }, + { + "bbox": [ + 146, + 653, + 181, + 665 + ], + "score": 0.93, + "content": "O ( b N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 652, + 290, + 666 + ], + "score": 1.0, + "content": ", and the final result is size", + "type": "text" + }, + { + "bbox": [ + 290, + 653, + 325, + 665 + ], + "score": 0.93, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 652, + 414, + 666 + ], + "score": 1.0, + "content": ", giving a final size of", + "type": "text" + }, + { + "bbox": [ + 415, + 653, + 480, + 665 + ], + "score": 0.91, + "content": "O ( b N _ { T } + b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 652, + 506, + 666 + ], + "score": 1.0, + "content": ", with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 664, + 200, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 181, + 677 + ], + "score": 1.0, + "content": "no dependence on", + "type": "text" + }, + { + "bbox": [ + 181, + 664, + 196, + 675 + ], + "score": 0.89, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 664, + 200, + 677 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 102, + 604, + 509, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 680, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "Table 2 summarizes the complexity of these three mathematically equivalent but computationally", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 690, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 705 + ], + "score": 1.0, + "content": "different implementions. The analysis suggests that the reified KB is preferable if there are many", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 702, + 313, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 286, + 713 + ], + "score": 1.0, + "content": "relations, which is the case for most realistic", + "type": "text" + }, + { + "bbox": [ + 286, + 702, + 309, + 713 + ], + "score": 0.8, + "content": "{ \\mathrm { K B s } } ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 703, + 313, + 713 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 680, + 505, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 145, + 87, + 467, + 209 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 87, + 467, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 87, + 467, + 209 + ], + "spans": [ + { + "bbox": [ + 145, + 87, + 467, + 209 + ], + "score": 0.971, + "type": "image", + "image_path": "72604657a9eb5648313f468d1b90fc0311598bfc947064885ae8c79e2eab68cd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 87, + 467, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 145, + 127.66666666666666, + 467, + 168.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 168.33333333333331, + 467, + 208.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 221, + 504, + 254 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "Figure 1: Left and middle: inference time in queries/sec on a synthetic KB as size and number of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "relations is varied. Queries/sec is given as zero when GPU memory of 12Gb is exceeded. Right:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 242, + 346, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 346, + 255 + ], + "score": 1.0, + "content": "speedups of reified KBs over the baseline implementations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Distributing a large reified KB. The reified KB representation is quite compact, using only six", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "integers and three floats for each KB triple. However, since GPU memory is often limited, it is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "important to be able to distribute a KB across multiple GPUs. Although to our knowledge prior", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "implementations of distributed matrix operations (e.g., (Shazeer et al., 2018)) do not support sparse", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "matrices, sparse-dense matrix multiplication can be distributed across multiple machines. We thus", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 374, + 336 + ], + "score": 1.0, + "content": "implemented a distributed sparse-matrix implementation of reified", + "type": "text" + }, + { + "bbox": [ + 374, + 325, + 392, + 335 + ], + "score": 0.29, + "content": "K B s", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 324, + 505, + 336 + ], + "score": 1.0, + "content": ". We distibuted the matrices", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 376, + 347 + ], + "score": 1.0, + "content": "that define a reified KB “horizontally”, so that different triple ids", + "type": "text" + }, + { + "bbox": [ + 376, + 336, + 382, + 345 + ], + "score": 0.61, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "are stored on different GPUs.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 346, + 254, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 254, + 358 + ], + "score": 1.0, + "content": "Details are provided in Appendix D.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 200, + 381 + ], + "lines": [ + { + "bbox": [ + 104, + 367, + 202, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 202, + 384 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 190, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 192, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 192, + 401 + ], + "score": 1.0, + "content": "3.1 SCALABILITY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "Like prior work (Cohen et al., 2017; De Raedt et al., 2007), we used a synthetic KB based on an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 107, + 418, + 114, + 426 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 416, + 129, + 430 + ], + "score": 1.0, + "content": "-by-", + "type": "text" + }, + { + "bbox": [ + 129, + 419, + 137, + 426 + ], + "score": 0.76, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "grid to study scalability of inference. Every grid cell is an entity, related to its immediate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 364, + 440 + ], + "score": 1.0, + "content": "neighbors via relations north, south, east, and west. The KB for an", + "type": "text" + }, + { + "bbox": [ + 365, + 429, + 372, + 437 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 427, + 387, + 440 + ], + "score": 1.0, + "content": "-by-", + "type": "text" + }, + { + "bbox": [ + 387, + 429, + 394, + 437 + ], + "score": 0.76, + "content": "^ n", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 427, + 446, + 440 + ], + "score": 1.0, + "content": "grid thus has", + "type": "text" + }, + { + "bbox": [ + 446, + 427, + 473, + 439 + ], + "score": 0.91, + "content": "O ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "entities", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 123, + 451 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 438, + 150, + 451 + ], + "score": 0.93, + "content": "O ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 438, + 427, + 451 + ], + "score": 1.0, + "content": "triples. We measured the time to compute the 2-hop inference follow", + "type": "text" + }, + { + "bbox": [ + 428, + 439, + 489, + 450 + ], + "score": 0.42, + "content": "( f o l l o w ( \\mathbf { x } , \\mathbf { r } ) , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 169, + 462 + ], + "score": 1.0, + "content": "minibatches of", + "type": "text" + }, + { + "bbox": [ + 169, + 450, + 203, + 460 + ], + "score": 0.91, + "content": "b = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "one-hot vectors, and report it as queries per second (qps) on a single GPU", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 460, + 129, + 473 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + }, + { + "bbox": [ + 129, + 461, + 171, + 472 + ], + "score": 0.76, + "content": "\\mathrm { \\ q p s { = } 1 } 2 8 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 460, + 337, + 473 + ], + "score": 1.0, + "content": "would mean a single minibatch requires", + "type": "text" + }, + { + "bbox": [ + 338, + 461, + 366, + 471 + ], + "score": 0.37, + "content": "1 0 0 \\mathrm { m s }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "). We also compare to a key-value", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "memory network (Miller et al., 2016), using an embedding size of 64 for entities and relations, where", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 483, + 481, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 481, + 495 + ], + "score": 1.0, + "content": "there is one memory entry for every triple in the KB. Further details are given in Appendix E.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "The results are shown Figure 1 (left and middle), on a log-log scale because some differences are very", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 389, + 522 + ], + "score": 1.0, + "content": "large. With only four relations (the leftmost plot), late mixing is about", + "type": "text" + }, + { + "bbox": [ + 389, + 511, + 401, + 520 + ], + "score": 0.32, + "content": "3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 510, + 504, + 522 + ], + "score": 1.0, + "content": "faster than the reified KB", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 520, + 507, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 182, + 534 + ], + "score": 1.0, + "content": "method, and about", + "type": "text" + }, + { + "bbox": [ + 182, + 522, + 204, + 532 + ], + "score": 0.64, + "content": "2 5 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 520, + 507, + 534 + ], + "score": 1.0, + "content": "faster than the naive approach. However, for more than around 20 relations,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 462, + 545 + ], + "score": 1.0, + "content": "the reified KB is faster (middle plot). As shown in the rightmost plot, the reified KB is", + "type": "text" + }, + { + "bbox": [ + 462, + 532, + 479, + 543 + ], + "score": 0.57, + "content": "5 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "faster", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 459, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 300, + 556 + ], + "score": 1.0, + "content": "than late mixing with 1000 relations, and nearly", + "type": "text" + }, + { + "bbox": [ + 300, + 543, + 334, + 554 + ], + "score": 0.28, + "content": "1 2 { , } 0 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 543, + 459, + 556 + ], + "score": 1.0, + "content": "faster than the naive approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "With this embedding size, the speed of the key-value network is similar to the reified KB for only", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 241, + 584 + ], + "score": 1.0, + "content": "four relations, however it is about", + "type": "text" + }, + { + "bbox": [ + 241, + 572, + 253, + 581 + ], + "score": 0.76, + "content": "7 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 569, + 505, + 584 + ], + "score": 1.0, + "content": "slower for 50 relations and 10k entities. Additionally, the space", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "needed to store a triple is much larger in a key-value network than the reified KB, so memory is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "exhausted when the KB exceeds 200,000 entities (with four relations), or when the KB exceeds 100", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 451, + 617 + ], + "score": 1.0, + "content": "relations (with 10,000 entities.) The reified KB scales much better, and can handle", + "type": "text" + }, + { + "bbox": [ + 451, + 604, + 468, + 614 + ], + "score": 0.26, + "content": "1 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "as many", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 615, + 246, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 154, + 627 + ], + "score": 1.0, + "content": "entities and", + "type": "text" + }, + { + "bbox": [ + 155, + 615, + 171, + 625 + ], + "score": 0.51, + "content": "2 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 615, + 246, + 627 + ], + "score": 1.0, + "content": "as many relations.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 257, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 258, + 649 + ], + "score": 1.0, + "content": "3.2 MODELS USING REIFIED KBS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "As discussed below in Section 4, the reified KB is closely related to key-value memory networks,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "so it can be viewed as a more efficient implementation of existing neural modules, optimized for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "reasoning with symbolic KBs. However, being able to include an entire KB into a model can lead to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "a qualitative difference in model complexity, since it is not necessary to build machinery to retrieve", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "from the KB. To illustrate this, below we present simple models for several tasks, each using the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "reified KB in different ways, as appropriate to the task. We consider two families of tasks: learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 440, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 440, + 732 + ], + "score": 1.0, + "content": "semantic parsers from denotations over a large KB, and learning to complete a KB.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 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": [ + 145, + 87, + 467, + 209 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 87, + 467, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 87, + 467, + 209 + ], + "spans": [ + { + "bbox": [ + 145, + 87, + 467, + 209 + ], + "score": 0.971, + "type": "image", + "image_path": "72604657a9eb5648313f468d1b90fc0311598bfc947064885ae8c79e2eab68cd.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 145, + 87, + 467, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 145, + 127.66666666666666, + 467, + 168.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 168.33333333333331, + 467, + 208.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 221, + 504, + 254 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 505, + 233 + ], + "score": 1.0, + "content": "Figure 1: Left and middle: inference time in queries/sec on a synthetic KB as size and number of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 505, + 244 + ], + "score": 1.0, + "content": "relations is varied. Queries/sec is given as zero when GPU memory of 12Gb is exceeded. Right:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 242, + 346, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 346, + 255 + ], + "score": 1.0, + "content": "speedups of reified KBs over the baseline implementations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Distributing a large reified KB. The reified KB representation is quite compact, using only six", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "integers and three floats for each KB triple. However, since GPU memory is often limited, it is", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "important to be able to distribute a KB across multiple GPUs. Although to our knowledge prior", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "implementations of distributed matrix operations (e.g., (Shazeer et al., 2018)) do not support sparse", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "matrices, sparse-dense matrix multiplication can be distributed across multiple machines. We thus", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 374, + 336 + ], + "score": 1.0, + "content": "implemented a distributed sparse-matrix implementation of reified", + "type": "text" + }, + { + "bbox": [ + 374, + 325, + 392, + 335 + ], + "score": 0.29, + "content": "K B s", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 324, + 505, + 336 + ], + "score": 1.0, + "content": ". We distibuted the matrices", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 376, + 347 + ], + "score": 1.0, + "content": "that define a reified KB “horizontally”, so that different triple ids", + "type": "text" + }, + { + "bbox": [ + 376, + 336, + 382, + 345 + ], + "score": 0.61, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "are stored on different GPUs.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 346, + 254, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 254, + 358 + ], + "score": 1.0, + "content": "Details are provided in Appendix D.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 269, + 506, + 358 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 369, + 200, + 381 + ], + "lines": [ + { + "bbox": [ + 104, + 367, + 202, + 384 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 202, + 384 + ], + "score": 1.0, + "content": "3 EXPERIMENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 190, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 192, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 192, + 401 + ], + "score": 1.0, + "content": "3.1 SCALABILITY", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "Like prior work (Cohen et al., 2017; De Raedt et al., 2007), we used a synthetic KB based on an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 107, + 418, + 114, + 426 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 416, + 129, + 430 + ], + "score": 1.0, + "content": "-by-", + "type": "text" + }, + { + "bbox": [ + 129, + 419, + 137, + 426 + ], + "score": 0.76, + "content": "\\mathbf { \\nabla } \\cdot n", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "grid to study scalability of inference. Every grid cell is an entity, related to its immediate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 364, + 440 + ], + "score": 1.0, + "content": "neighbors via relations north, south, east, and west. The KB for an", + "type": "text" + }, + { + "bbox": [ + 365, + 429, + 372, + 437 + ], + "score": 0.74, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 427, + 387, + 440 + ], + "score": 1.0, + "content": "-by-", + "type": "text" + }, + { + "bbox": [ + 387, + 429, + 394, + 437 + ], + "score": 0.76, + "content": "^ n", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 427, + 446, + 440 + ], + "score": 1.0, + "content": "grid thus has", + "type": "text" + }, + { + "bbox": [ + 446, + 427, + 473, + 439 + ], + "score": 0.91, + "content": "O ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "entities", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 123, + 451 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 438, + 150, + 451 + ], + "score": 0.93, + "content": "O ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 438, + 427, + 451 + ], + "score": 1.0, + "content": "triples. We measured the time to compute the 2-hop inference follow", + "type": "text" + }, + { + "bbox": [ + 428, + 439, + 489, + 450 + ], + "score": 0.42, + "content": "( f o l l o w ( \\mathbf { x } , \\mathbf { r } ) , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 169, + 462 + ], + "score": 1.0, + "content": "minibatches of", + "type": "text" + }, + { + "bbox": [ + 169, + 450, + 203, + 460 + ], + "score": 0.91, + "content": "b = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "one-hot vectors, and report it as queries per second (qps) on a single GPU", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 460, + 129, + 473 + ], + "score": 1.0, + "content": "(e.g.,", + "type": "text" + }, + { + "bbox": [ + 129, + 461, + 171, + 472 + ], + "score": 0.76, + "content": "\\mathrm { \\ q p s { = } 1 } 2 8 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 460, + 337, + 473 + ], + "score": 1.0, + "content": "would mean a single minibatch requires", + "type": "text" + }, + { + "bbox": [ + 338, + 461, + 366, + 471 + ], + "score": 0.37, + "content": "1 0 0 \\mathrm { m s }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "). We also compare to a key-value", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "memory network (Miller et al., 2016), using an embedding size of 64 for entities and relations, where", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 483, + 481, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 481, + 495 + ], + "score": 1.0, + "content": "there is one memory entry for every triple in the KB. Further details are given in Appendix E.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 405, + 506, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 513 + ], + "score": 1.0, + "content": "The results are shown Figure 1 (left and middle), on a log-log scale because some differences are very", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 389, + 522 + ], + "score": 1.0, + "content": "large. With only four relations (the leftmost plot), late mixing is about", + "type": "text" + }, + { + "bbox": [ + 389, + 511, + 401, + 520 + ], + "score": 0.32, + "content": "3 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 510, + 504, + 522 + ], + "score": 1.0, + "content": "faster than the reified KB", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 520, + 507, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 182, + 534 + ], + "score": 1.0, + "content": "method, and about", + "type": "text" + }, + { + "bbox": [ + 182, + 522, + 204, + 532 + ], + "score": 0.64, + "content": "2 5 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 520, + 507, + 534 + ], + "score": 1.0, + "content": "faster than the naive approach. However, for more than around 20 relations,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 462, + 545 + ], + "score": 1.0, + "content": "the reified KB is faster (middle plot). As shown in the rightmost plot, the reified KB is", + "type": "text" + }, + { + "bbox": [ + 462, + 532, + 479, + 543 + ], + "score": 0.57, + "content": "5 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "faster", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 459, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 300, + 556 + ], + "score": 1.0, + "content": "than late mixing with 1000 relations, and nearly", + "type": "text" + }, + { + "bbox": [ + 300, + 543, + 334, + 554 + ], + "score": 0.28, + "content": "1 2 { , } 0 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 543, + 459, + 556 + ], + "score": 1.0, + "content": "faster than the naive approach.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 498, + 507, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "With this embedding size, the speed of the key-value network is similar to the reified KB for only", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 241, + 584 + ], + "score": 1.0, + "content": "four relations, however it is about", + "type": "text" + }, + { + "bbox": [ + 241, + 572, + 253, + 581 + ], + "score": 0.76, + "content": "7 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 569, + 505, + 584 + ], + "score": 1.0, + "content": "slower for 50 relations and 10k entities. Additionally, the space", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 595 + ], + "score": 1.0, + "content": "needed to store a triple is much larger in a key-value network than the reified KB, so memory is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "exhausted when the KB exceeds 200,000 entities (with four relations), or when the KB exceeds 100", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 451, + 617 + ], + "score": 1.0, + "content": "relations (with 10,000 entities.) The reified KB scales much better, and can handle", + "type": "text" + }, + { + "bbox": [ + 451, + 604, + 468, + 614 + ], + "score": 0.26, + "content": "1 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "as many", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 615, + 246, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 154, + 627 + ], + "score": 1.0, + "content": "entities and", + "type": "text" + }, + { + "bbox": [ + 155, + 615, + 171, + 625 + ], + "score": 0.51, + "content": "2 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 615, + 246, + 627 + ], + "score": 1.0, + "content": "as many relations.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 559, + 506, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 257, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 258, + 649 + ], + "score": 1.0, + "content": "3.2 MODELS USING REIFIED KBS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "As discussed below in Section 4, the reified KB is closely related to key-value memory networks,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "so it can be viewed as a more efficient implementation of existing neural modules, optimized for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "reasoning with symbolic KBs. However, being able to include an entire KB into a model can lead to", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "a qualitative difference in model complexity, since it is not necessary to build machinery to retrieve", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "from the KB. To illustrate this, below we present simple models for several tasks, each using the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "reified KB in different ways, as appropriate to the task. We consider two families of tasks: learning", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 721, + 440, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 440, + 732 + ], + "score": 1.0, + "content": "semantic parsers from denotations over a large KB, and learning to complete a KB.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 654, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "KBQA for multi-hop questions. MetaQA (Zhang et al., 2018) consists of 1.2M questions, evenly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "distributed into one-hop, two-hop, and three-hop questions. (E.g, the question “who acted in a movie", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "directed by Quentin Tarantino?” is a two-hop question.) The accompanying KB (Miller et al., 2016)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "contains 43k entities and 186k triples. Past work treated one-hop, two-hop and three-hop questions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "separately, and the questions are labeled with the entity ids for the “seed entities” that begin the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "reasoning chains (e.g., the question above would be tagged with the id of the entity for Quentin", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 154, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 154, + 161 + ], + "score": 1.0, + "content": "Tarantino).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Using a reified KB for reasoning means the neural model only needs to predict the relations used at", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 470, + 189 + ], + "score": 1.0, + "content": "each stage in the reasoning process. For each step of inference we thus compute relation sets", + "type": "text" + }, + { + "bbox": [ + 471, + 176, + 480, + 186 + ], + "score": 0.85, + "content": "\\mathbf { r } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "a differentiable function of the question, and then chain them together with relation-set following", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 415, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 163, + 210 + ], + "score": 1.0, + "content": "steps. Letting", + "type": "text" + }, + { + "bbox": [ + 163, + 198, + 174, + 208 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 198, + 321, + 210 + ], + "score": 1.0, + "content": "be the set of entities associated with", + "type": "text" + }, + { + "bbox": [ + 321, + 200, + 327, + 210 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 198, + 415, + 210 + ], + "score": 1.0, + "content": ", the model we use is:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 212, + 410, + 227 + ], + "lines": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "spans": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "score": 0.87, + "content": "\\mathrm { f o r } t = 1 , 2 , 3 ; ~ { \\bf r } ^ { t } = f ^ { t } ( q ) ; ~ { \\bf x } ^ { t } = f o l l o w ( { \\bf x } ^ { t - 1 } , { \\bf r } ^ { t } )", + "type": "interline_equation", + "image_path": "e2f4ceeab681e58144fe12d87cd6737fe210e8e0145672f9bc5a176d1cb79367.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 112, + 230, + 417, + 242 + ], + "lines": [ + { + "bbox": [ + 110, + 229, + 420, + 243 + ], + "spans": [ + { + "bbox": [ + 110, + 229, + 158, + 243 + ], + "score": 1.0, + "content": "where follow", + "type": "text" + }, + { + "bbox": [ + 159, + 229, + 198, + 242 + ], + "score": 0.8, + "content": "\\left( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 229, + 420, + 243 + ], + "score": 1.0, + "content": "is implemented with a reified KB as described in Eq. 4.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 246, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 208, + 259 + ], + "score": 1.0, + "content": "To predict an answer on a", + "type": "text" + }, + { + "bbox": [ + 208, + 248, + 217, + 257 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 246, + 452, + 259 + ], + "score": 1.0, + "content": "-hop subtask, we compute the softmax of the appropriate set", + "type": "text" + }, + { + "bbox": [ + 452, + 246, + 465, + 257 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 246, + 505, + 259 + ], + "score": 1.0, + "content": ". We used", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "cross entropy loss of this set against the desired answer, represented as a uniform distribution over", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 264, + 282 + ], + "score": 1.0, + "content": "entities in the target set. Each function", + "type": "text" + }, + { + "bbox": [ + 264, + 269, + 287, + 281 + ], + "score": 0.93, + "content": "f ^ { t } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "is a different linear projection of a common encoding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 121, + 293 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 282, + 127, + 291 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 280, + 313, + 293 + ], + "score": 1.0, + "content": ", specifically a mean-pooling of the tokens in", + "type": "text" + }, + { + "bbox": [ + 314, + 282, + 321, + 291 + ], + "score": 0.7, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "encoded with a pre-trained 128-dimensional", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "word2vec model (Mikolov et al., 2013). The full KB was loaded into a single GPU in our experiments.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "It is interesting to contrast this simple model with the one proposed by Zhang et al. (2018). The “mod-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 332 + ], + "score": 1.0, + "content": "ule for logic reasoning” they propose in Section 3.4 is fairly complex, with a description that requires", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "a figure, three equations, and a page of text; furthermore, training this model requires constructing an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "example-dependent subgraph for each training instance. In our model, the “logic reasoning” (and all", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 371, + 365 + ], + "score": 1.0, + "content": "interaction with the KB) has been encapsulated completely in the", + "type": "text" + }, + { + "bbox": [ + 371, + 352, + 415, + 363 + ], + "score": 0.48, + "content": "\\ell o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "operation—which, as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 361, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 505, + 377 + ], + "score": 1.0, + "content": "we will demonstrate below, can be re-used for many other problems. Encapsulating all KB reasoning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "with a single scalable differentiable neural module greatly simplifies modeling: in particular, the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "problem of learning a structured KB query has been reduced to learning a few differentiable functions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "of the question, one for each reasoning “hop”. The learned functions are also interpretable: they are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "mixtures of relation identifiers which correspond to soft weighted sets of relations, which in turn softly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "specify which KB relation should be used in each stage of the reasoning process. Finally, optimization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "is simple, as the loss on predicted denotations can be back-propagated to the relation-prediction", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 439, + 149, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 149, + 451 + ], + "score": 1.0, + "content": "functions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 410, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 410, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 410, + 470 + ], + "score": 1.0, + "content": "A similar modeling strategy is used in all the other models presented below.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 487 + ], + "score": 1.0, + "content": "KBQA on FreeBase. WebQuestionsSP (Yih et al., 2016) contains 4737 natural language questions,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "all of which are answerable using FreeBase (Bollacker et al., 2008), a large open-domain KB. Each", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 356, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 142, + 508 + ], + "score": 1.0, + "content": "question", + "type": "text" + }, + { + "bbox": [ + 143, + 497, + 149, + 507 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 495, + 280, + 508 + ], + "score": 1.0, + "content": "is again labeled with the entities", + "type": "text" + }, + { + "bbox": [ + 280, + 497, + 287, + 505 + ], + "score": 0.45, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 495, + 356, + 508 + ], + "score": 1.0, + "content": "that appear in it.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 590 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 524 + ], + "score": 1.0, + "content": "FreeBase contains two kinds of nodes: real-world entities, and compound value types (CVTs), which", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "represent non-binary relationships or events (e.g., a movie release event, which includes a movie", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 534, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 546 + ], + "score": 1.0, + "content": "id, a date, and a place.) Real-world entity nodes can be related to each other or to a CVT node, but", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "CVT nodes are never directly related to each other. In this dataset, all questions can be answered", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "with 1- or 2-hop chains, and all 2-hop reasoning chains pass through a CVT entity; however, unlike", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 406, + 579 + ], + "score": 1.0, + "content": "MetaQA, the number of hops is not known. Our model thus derives from", + "type": "text" + }, + { + "bbox": [ + 406, + 569, + 412, + 578 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "three relation sets and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 577, + 333, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 333, + 591 + ], + "score": 1.0, + "content": "then uniformly mixes both potential types of inferences:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 601, + 443, + 631 + ], + "lines": [ + { + "bbox": [ + 168, + 601, + 443, + 631 + ], + "spans": [ + { + "bbox": [ + 168, + 601, + 443, + 631 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { \\mathbf { r } _ { \\mathrm { E E } } = f _ { \\mathrm { E E } } ( q ) ; \\mathbf { r } _ { \\mathrm { E C V T } } = f _ { \\mathrm { E C V T } } ( q ) ; \\mathbf { r } _ { \\mathrm { C V T E } } = f _ { \\mathrm { C V T E } } ( q ) } \\\\ & { \\qquad \\hat { \\mathbf { a } } = f o l l o w ( f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E C V T } } ) , \\mathbf { r } _ { \\mathrm { C V T E } } ) + f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E E } } ) } \\end{array}", + "type": "interline_equation", + "image_path": "ba3d5b374539c5c802f0b0425336dc2cd0fd332ebc4660d5ee95239a1990c091.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 168, + 601, + 443, + 611.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 168, + 611.0, + 443, + 621.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 168, + 621.0, + 443, + 631.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 220, + 651 + ], + "score": 1.0, + "content": "We again apply a softmax to", + "type": "text" + }, + { + "bbox": [ + 221, + 638, + 227, + 648 + ], + "score": 0.33, + "content": "\\hat { \\mathbf { a } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 637, + 353, + 651 + ], + "score": 1.0, + "content": "and use cross entropy loss, and", + "type": "text" + }, + { + "bbox": [ + 353, + 639, + 376, + 650 + ], + "score": 0.83, + "content": "f _ { \\mathrm { E \\to E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 637, + 380, + 651 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 380, + 639, + 412, + 650 + ], + "score": 0.83, + "content": "f _ { \\mathrm { E C V T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 637, + 433, + 651 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 433, + 639, + 466, + 649 + ], + "score": 0.89, + "content": "f _ { \\mathrm { C V T E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "are again", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 285, + 660 + ], + "score": 1.0, + "content": "linear projections of a word2vec encoding of", + "type": "text" + }, + { + "bbox": [ + 285, + 650, + 291, + 660 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 649, + 505, + 660 + ], + "score": 1.0, + "content": ". We used a subset of Freebase with 43.7 million facts", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "and 12.9 million entities, containing all facts in Freebase within 2-hops of entities mentioned in any", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "question, excluding paths through some very common entities. We split the KB across three 12-Gb", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 682, + 329, + 692 + ], + "spans": [ + { + "bbox": [ + 107, + 682, + 329, + 692 + ], + "score": 1.0, + "content": "GPUs, and used a fourth GPU for the rest of the model.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "This dataset is a good illustration of the scalability issues associated with prior approaches to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "including a KB in a model, such as key-value memory networks. A key-value network can be trained", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "to implement something similar to relation-set following, if it stores all the KB triples in memory. If", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "page_idx": 5, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "KBQA for multi-hop questions. MetaQA (Zhang et al., 2018) consists of 1.2M questions, evenly", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "distributed into one-hop, two-hop, and three-hop questions. (E.g, the question “who acted in a movie", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "directed by Quentin Tarantino?” is a two-hop question.) The accompanying KB (Miller et al., 2016)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "contains 43k entities and 186k triples. Past work treated one-hop, two-hop and three-hop questions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "separately, and the questions are labeled with the entity ids for the “seed entities” that begin the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "reasoning chains (e.g., the question above would be tagged with the id of the entity for Quentin", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 154, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 154, + 161 + ], + "score": 1.0, + "content": "Tarantino).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 82, + 506, + 161 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 165, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "Using a reified KB for reasoning means the neural model only needs to predict the relations used at", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 470, + 189 + ], + "score": 1.0, + "content": "each stage in the reasoning process. For each step of inference we thus compute relation sets", + "type": "text" + }, + { + "bbox": [ + 471, + 176, + 480, + 186 + ], + "score": 0.85, + "content": "\\mathbf { r } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "a differentiable function of the question, and then chain them together with relation-set following", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 415, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 163, + 210 + ], + "score": 1.0, + "content": "steps. Letting", + "type": "text" + }, + { + "bbox": [ + 163, + 198, + 174, + 208 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 198, + 321, + 210 + ], + "score": 1.0, + "content": "be the set of entities associated with", + "type": "text" + }, + { + "bbox": [ + 321, + 200, + 327, + 210 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 198, + 415, + 210 + ], + "score": 1.0, + "content": ", the model we use is:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 165, + 506, + 210 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 212, + 410, + 227 + ], + "lines": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "spans": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "score": 0.87, + "content": "\\mathrm { f o r } t = 1 , 2 , 3 ; ~ { \\bf r } ^ { t } = f ^ { t } ( q ) ; ~ { \\bf x } ^ { t } = f o l l o w ( { \\bf x } ^ { t - 1 } , { \\bf r } ^ { t } )", + "type": "interline_equation", + "image_path": "e2f4ceeab681e58144fe12d87cd6737fe210e8e0145672f9bc5a176d1cb79367.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 200, + 212, + 410, + 227 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 112, + 230, + 417, + 242 + ], + "lines": [ + { + "bbox": [ + 110, + 229, + 420, + 243 + ], + "spans": [ + { + "bbox": [ + 110, + 229, + 158, + 243 + ], + "score": 1.0, + "content": "where follow", + "type": "text" + }, + { + "bbox": [ + 159, + 229, + 198, + 242 + ], + "score": 0.8, + "content": "\\left( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 229, + 420, + 243 + ], + "score": 1.0, + "content": "is implemented with a reified KB as described in Eq. 4.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 110, + 229, + 420, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 246, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 208, + 259 + ], + "score": 1.0, + "content": "To predict an answer on a", + "type": "text" + }, + { + "bbox": [ + 208, + 248, + 217, + 257 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 246, + 452, + 259 + ], + "score": 1.0, + "content": "-hop subtask, we compute the softmax of the appropriate set", + "type": "text" + }, + { + "bbox": [ + 452, + 246, + 465, + 257 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 246, + 505, + 259 + ], + "score": 1.0, + "content": ". We used", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 258, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 506, + 271 + ], + "score": 1.0, + "content": "cross entropy loss of this set against the desired answer, represented as a uniform distribution over", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 264, + 282 + ], + "score": 1.0, + "content": "entities in the target set. Each function", + "type": "text" + }, + { + "bbox": [ + 264, + 269, + 287, + 281 + ], + "score": 0.93, + "content": "f ^ { t } ( q )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "is a different linear projection of a common encoding", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 121, + 293 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 282, + 127, + 291 + ], + "score": 0.76, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 280, + 313, + 293 + ], + "score": 1.0, + "content": ", specifically a mean-pooling of the tokens in", + "type": "text" + }, + { + "bbox": [ + 314, + 282, + 321, + 291 + ], + "score": 0.7, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "encoded with a pre-trained 128-dimensional", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "word2vec model (Mikolov et al., 2013). The full KB was loaded into a single GPU in our experiments.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 246, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 307, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "It is interesting to contrast this simple model with the one proposed by Zhang et al. (2018). The “mod-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 318, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 332 + ], + "score": 1.0, + "content": "ule for logic reasoning” they propose in Section 3.4 is fairly complex, with a description that requires", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "a figure, three equations, and a page of text; furthermore, training this model requires constructing an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "example-dependent subgraph for each training instance. In our model, the “logic reasoning” (and all", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 371, + 365 + ], + "score": 1.0, + "content": "interaction with the KB) has been encapsulated completely in the", + "type": "text" + }, + { + "bbox": [ + 371, + 352, + 415, + 363 + ], + "score": 0.48, + "content": "\\ell o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "operation—which, as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 361, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 361, + 505, + 377 + ], + "score": 1.0, + "content": "we will demonstrate below, can be re-used for many other problems. Encapsulating all KB reasoning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "with a single scalable differentiable neural module greatly simplifies modeling: in particular, the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "problem of learning a structured KB query has been reduced to learning a few differentiable functions", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "of the question, one for each reasoning “hop”. The learned functions are also interpretable: they are", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 420 + ], + "score": 1.0, + "content": "mixtures of relation identifiers which correspond to soft weighted sets of relations, which in turn softly", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "specify which KB relation should be used in each stage of the reasoning process. Finally, optimization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "is simple, as the loss on predicted denotations can be back-propagated to the relation-prediction", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 439, + 149, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 149, + 451 + ], + "score": 1.0, + "content": "functions.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 308, + 506, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 410, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 410, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 410, + 470 + ], + "score": 1.0, + "content": "A similar modeling strategy is used in all the other models presented below.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 455, + 410, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 487 + ], + "score": 1.0, + "content": "KBQA on FreeBase. WebQuestionsSP (Yih et al., 2016) contains 4737 natural language questions,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 497 + ], + "score": 1.0, + "content": "all of which are answerable using FreeBase (Bollacker et al., 2008), a large open-domain KB. Each", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 495, + 356, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 142, + 508 + ], + "score": 1.0, + "content": "question", + "type": "text" + }, + { + "bbox": [ + 143, + 497, + 149, + 507 + ], + "score": 0.75, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 495, + 280, + 508 + ], + "score": 1.0, + "content": "is again labeled with the entities", + "type": "text" + }, + { + "bbox": [ + 280, + 497, + 287, + 505 + ], + "score": 0.45, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 495, + 356, + 508 + ], + "score": 1.0, + "content": "that appear in it.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 472, + 506, + 508 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 512, + 506, + 590 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 524 + ], + "score": 1.0, + "content": "FreeBase contains two kinds of nodes: real-world entities, and compound value types (CVTs), which", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 536 + ], + "score": 1.0, + "content": "represent non-binary relationships or events (e.g., a movie release event, which includes a movie", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 534, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 546 + ], + "score": 1.0, + "content": "id, a date, and a place.) Real-world entity nodes can be related to each other or to a CVT node, but", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "CVT nodes are never directly related to each other. In this dataset, all questions can be answered", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "with 1- or 2-hop chains, and all 2-hop reasoning chains pass through a CVT entity; however, unlike", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 406, + 579 + ], + "score": 1.0, + "content": "MetaQA, the number of hops is not known. Our model thus derives from", + "type": "text" + }, + { + "bbox": [ + 406, + 569, + 412, + 578 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "three relation sets and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 577, + 333, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 333, + 591 + ], + "score": 1.0, + "content": "then uniformly mixes both potential types of inferences:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 513, + 506, + 591 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 601, + 443, + 631 + ], + "lines": [ + { + "bbox": [ + 168, + 601, + 443, + 631 + ], + "spans": [ + { + "bbox": [ + 168, + 601, + 443, + 631 + ], + "score": 0.89, + "content": "\\begin{array} { r l } & { \\mathbf { r } _ { \\mathrm { E E } } = f _ { \\mathrm { E E } } ( q ) ; \\mathbf { r } _ { \\mathrm { E C V T } } = f _ { \\mathrm { E C V T } } ( q ) ; \\mathbf { r } _ { \\mathrm { C V T E } } = f _ { \\mathrm { C V T E } } ( q ) } \\\\ & { \\qquad \\hat { \\mathbf { a } } = f o l l o w ( f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E C V T } } ) , \\mathbf { r } _ { \\mathrm { C V T E } } ) + f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E E } } ) } \\end{array}", + "type": "interline_equation", + "image_path": "ba3d5b374539c5c802f0b0425336dc2cd0fd332ebc4660d5ee95239a1990c091.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 168, + 601, + 443, + 611.0 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 168, + 611.0, + 443, + 621.0 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 168, + 621.0, + 443, + 631.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 220, + 651 + ], + "score": 1.0, + "content": "We again apply a softmax to", + "type": "text" + }, + { + "bbox": [ + 221, + 638, + 227, + 648 + ], + "score": 0.33, + "content": "\\hat { \\mathbf { a } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 637, + 353, + 651 + ], + "score": 1.0, + "content": "and use cross entropy loss, and", + "type": "text" + }, + { + "bbox": [ + 353, + 639, + 376, + 650 + ], + "score": 0.83, + "content": "f _ { \\mathrm { E \\to E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 637, + 380, + 651 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 380, + 639, + 412, + 650 + ], + "score": 0.83, + "content": "f _ { \\mathrm { E C V T } }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 637, + 433, + 651 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 433, + 639, + 466, + 649 + ], + "score": 0.89, + "content": "f _ { \\mathrm { C V T E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "are again", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 285, + 660 + ], + "score": 1.0, + "content": "linear projections of a word2vec encoding of", + "type": "text" + }, + { + "bbox": [ + 285, + 650, + 291, + 660 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 649, + 505, + 660 + ], + "score": 1.0, + "content": ". We used a subset of Freebase with 43.7 million facts", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "and 12.9 million entities, containing all facts in Freebase within 2-hops of entities mentioned in any", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "question, excluding paths through some very common entities. We split the KB across three 12-Gb", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 107, + 682, + 329, + 692 + ], + "spans": [ + { + "bbox": [ + 107, + 682, + 329, + 692 + ], + "score": 1.0, + "content": "GPUs, and used a fourth GPU for the rest of the model.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 637, + 506, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "This dataset is a good illustration of the scalability issues associated with prior approaches to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "including a KB in a model, such as key-value memory networks. A key-value network can be trained", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "to implement something similar to relation-set following, if it stores all the KB triples in memory. If", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "we assume 64-float embeddings for the 12.9M entities, the full KB of 43.7M facts would be 67Gb", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "in size, which is impractical. Additionally performing a softmax over the 43.7M keys would be", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "prohibitively expensive, as shown by the experiments of Figure 1. This is the reason why in standard", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 129 + ], + "score": 1.0, + "content": "practice with key-value memory networks for KBs, the memory is populated with a heuristically", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 500, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 500, + 139 + ], + "score": 1.0, + "content": "subset of the KB, rather than the full KB. We compare experimentally to this approach in Table 3.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 51, + "bbox_fs": [ + 106, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "we assume 64-float embeddings for the 12.9M entities, the full KB of 43.7M facts would be 67Gb", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "in size, which is impractical. Additionally performing a softmax over the 43.7M keys would be", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "prohibitively expensive, as shown by the experiments of Figure 1. This is the reason why in standard", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 129 + ], + "score": 1.0, + "content": "practice with key-value memory networks for KBs, the memory is populated with a heuristically", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 500, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 500, + 139 + ], + "score": 1.0, + "content": "subset of the KB, rather than the full KB. We compare experimentally to this approach in Table 3.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Knowledge base completion. Following Yang et al. (2017) we treat KB completion as an inference", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 243, + 167 + ], + "score": 1.0, + "content": "task, analogous to KBQA: a query", + "type": "text" + }, + { + "bbox": [ + 243, + 156, + 249, + 166 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 154, + 390, + 167 + ], + "score": 1.0, + "content": "is a relation name and a head entity", + "type": "text" + }, + { + "bbox": [ + 390, + 156, + 397, + 164 + ], + "score": 0.68, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 154, + 506, + 167 + ], + "score": 1.0, + "content": ", and from this we predict a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "set of tail entities. We assume the answers are computed with the disjunction of multiple inference", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 398, + 188 + ], + "score": 1.0, + "content": "chains of varying length. Each inference chain has a maximum length of", + "type": "text" + }, + { + "bbox": [ + 398, + 177, + 407, + 186 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 176, + 461, + 188 + ], + "score": 1.0, + "content": "and we build", + "type": "text" + }, + { + "bbox": [ + 462, + 177, + 472, + 186 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "distinct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 410, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 305, + 200 + ], + "score": 1.0, + "content": "inference chains in total, using this model (where", + "type": "text" + }, + { + "bbox": [ + 305, + 187, + 335, + 199 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { i } ^ { 0 } = \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 187, + 398, + 200 + ], + "score": 1.0, + "content": "for every chain", + "type": "text" + }, + { + "bbox": [ + 398, + 189, + 403, + 198 + ], + "score": 0.69, + "content": "\\romannumeral 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 187, + 410, + 200 + ], + "score": 1.0, + "content": "):", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 204, + 468, + 219 + ], + "lines": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "spans": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "score": 0.84, + "content": "\\mathrm { o r } i = 1 , \\dots , N \\mathrm { ~ a n d ~ } t = 1 , \\dots , T ; \\quad \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\quad \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "5dc9011cf752ef9c9b3c427607d0c54b94b627de53b3b9aa74c2a1abd7d3d722.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 104, + 224, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 104, + 224, + 299, + 243 + ], + "score": 1.0, + "content": "The final output is a softmax of the mix of all the", + "type": "text" + }, + { + "bbox": [ + 300, + 226, + 312, + 239 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 224, + 366, + 243 + ], + "score": 1.0, + "content": "’s: i.e., we let", + "type": "text" + }, + { + "bbox": [ + 366, + 226, + 483, + 241 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { i \\in \\{ 1 \\ldots N \\} } \\mathbf { x } _ { i } ^ { T } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 224, + 506, + 243 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 135, + 255 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 135, + 240, + 242, + 254 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { t + 1 } = f o l l o w ( \\mathbf { x } _ { i } ^ { t } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 239, + 499, + 255 + ], + "score": 1.0, + "content": "gives the model access to outputs of all chains of length less than", + "type": "text" + }, + { + "bbox": [ + 499, + 243, + 504, + 251 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 323, + 265 + ], + "score": 1.0, + "content": "(for more intuition see Appendix E.) The encoding of", + "type": "text" + }, + { + "bbox": [ + 323, + 254, + 330, + 264 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 252, + 477, + 265 + ], + "score": 1.0, + "content": "is based on a lookup table, and each", + "type": "text" + }, + { + "bbox": [ + 477, + 252, + 487, + 264 + ], + "score": 0.89, + "content": "f _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 301, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 235, + 276 + ], + "score": 1.0, + "content": "learned linear transformation of", + "type": "text" + }, + { + "bbox": [ + 235, + 264, + 242, + 275 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 263, + 301, + 276 + ], + "score": 1.0, + "content": "’s embedding.4", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "An encoder-decoder architecture for varying inferential structures. To explore performance on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "score": 1.0, + "content": "more complex reasoning tasks, we generated simple artificial natural-language sentences describing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "longer chains of relationships on a 10-by-10 grid. For this task we used an encoder-decoder model", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "which emits chains of relation-set following operations. The question is encoded with the final", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 270, + 338 + ], + "score": 1.0, + "content": "hidden state of an LSTM, written here", + "type": "text" + }, + { + "bbox": [ + 270, + 324, + 281, + 335 + ], + "score": 0.87, + "content": " { \\mathbf { h } } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 324, + 506, + 338 + ], + "score": 1.0, + "content": ". We then generate a reasoning chain of length up to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 334, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 107, + 337, + 115, + 346 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 334, + 272, + 351 + ], + "score": 1.0, + "content": "using a decoder LSTM. At iteration", + "type": "text" + }, + { + "bbox": [ + 272, + 338, + 277, + 347 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 334, + 506, + 351 + ], + "score": 1.0, + "content": ", the decoder emits a scalar probability of “stopping”,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 347, + 116, + 358 + ], + "score": 0.86, + "content": "p ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 345, + 297, + 360 + ], + "score": 1.0, + "content": ", and a distribution over relations to follow", + "type": "text" + }, + { + "bbox": [ + 298, + 347, + 307, + 357 + ], + "score": 0.83, + "content": "\\mathbf { r } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 345, + 506, + 360 + ], + "score": 1.0, + "content": ", and then, as we did for the KBQA tasks, sets", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 354, + 507, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 194, + 370 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { x } } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 354, + 390, + 372 + ], + "score": 1.0, + "content": ". Finally the decoder updates its hidden state to", + "type": "text" + }, + { + "bbox": [ + 390, + 357, + 401, + 369 + ], + "score": 0.85, + "content": "\\mathbf { h } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 354, + 507, + 372 + ], + "score": 1.0, + "content": "using an LSTM cell that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 366, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 183, + 383 + ], + "score": 1.0, + "content": "“reads” the “input”", + "type": "text" + }, + { + "bbox": [ + 184, + 369, + 203, + 379 + ], + "score": 0.88, + "content": "\\mathbf { r } ^ { i - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 366, + 263, + 383 + ], + "score": 1.0, + "content": ". For each step", + "type": "text" + }, + { + "bbox": [ + 263, + 370, + 268, + 379 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 366, + 406, + 383 + ], + "score": 1.0, + "content": ", the model thus contains the steps", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 386, + 475, + 401 + ], + "lines": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "spans": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "score": 0.87, + "content": "p ^ { t } = f _ { p } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { r } ^ { t } = f _ { r } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { x } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } ) ; ~ \\mathbf { h } ^ { t } = \\mathrm { L S T M } ( \\mathbf { h } ^ { t - 1 } , \\mathbf { r } ^ { t - 1 } )", + "type": "interline_equation", + "image_path": "deb080a93ae71e3bb73f4ba8b285277a3a537b7b80fd378961cb4dabe7af9688.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 104, + 404, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 311, + 421 + ], + "score": 1.0, + "content": "The final predicted location is a mixture of all the", + "type": "text" + }, + { + "bbox": [ + 311, + 408, + 321, + 418 + ], + "score": 0.85, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 404, + 493, + 421 + ], + "score": 1.0, + "content": "’s weighted by the probability of stopping", + "type": "text" + }, + { + "bbox": [ + 494, + 409, + 504, + 419 + ], + "score": 0.79, + "content": "p _ { t }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 103, + 417, + 508, + 435 + ], + "spans": [ + { + "bbox": [ + 103, + 417, + 153, + 435 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 153, + 421, + 158, + 430 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 417, + 179, + 435 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 179, + 418, + 352, + 433 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { t = 1 } ^ { T } \\mathbf { x } ^ { t } \\cdot p ^ { t } \\prod _ { t ^ { \\prime } < t } ( 1 - p ^ { t ^ { \\prime } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 417, + 413, + 435 + ], + "score": 1.0, + "content": ". The function", + "type": "text" + }, + { + "bbox": [ + 413, + 420, + 424, + 431 + ], + "score": 0.88, + "content": "f _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 417, + 508, + 435 + ], + "score": 1.0, + "content": "is a softmax over a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 194, + 444 + ], + "score": 1.0, + "content": "linear projection, and", + "type": "text" + }, + { + "bbox": [ + 194, + 432, + 205, + 443 + ], + "score": 0.88, + "content": "f _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "is a logistic function. In the experiments, we trained on 360,000 sentences", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 419, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 205, + 455 + ], + "score": 1.0, + "content": "requiring between 1 and", + "type": "text" + }, + { + "bbox": [ + 205, + 443, + 214, + 452 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 441, + 419, + 455 + ], + "score": 1.0, + "content": "hops and tested on an additional 12,000 sentences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Experimental results. We next consider the performance of these models relative to strong baselines", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "for each task. We emphasize our goal here is not to challenge the current state of the art on any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "particular benchmark, and clearly there are many ways the models of this paper could be improved.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "(For instance, our question encodings are based on word2vec, rather than contextual encodings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "score": 1.0, + "content": "(Devlin et al., 2018), and likewise relations are predicted with simple linear classifiers, rather than,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "say, attention queries over some semantically meaningful space, such as might be produced with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "language models or KB embedding approaches (Bordes et al., 2013)). Rather, our contribution is to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "present a generally useful scheme for including symbolic KB reasoning into a model, and we have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "thus focused on describing simple, easily understood models that do this for several tasks. However,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "it is important to confirm experimentally that the reified KB models “work”—e.g., that they are", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 568, + 284, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 284, + 581 + ], + "score": 1.0, + "content": "amenable to use of standard optimizers, etc.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 207, + 597 + ], + "score": 1.0, + "content": "Performance (using Hits", + "type": "text" + }, + { + "bbox": [ + 207, + 586, + 218, + 595 + ], + "score": 0.39, + "content": "@ .", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "1) of our models on the KBQA tasks is shown in Table 3. For the non-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 597, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 608 + ], + "score": 1.0, + "content": "synthetic tasks we also compare to a Key-Value Memory Network (KV-Mem) baseline (Miller et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "2016). For the smaller MetaQA dataset, KV-Mem is initialized with all facts within 3 hops of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "query entities, and for WebQuestionsSP it is initialized by a random-walk process seeded by the query", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "entities (see (Sun et al., 2018; Zhang et al., 2018) for details). ReifKB consistently outperforms the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "baseline, dramatically so for longer reasoning chains. The synthetic grid task shows that there is very", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 296, + 664 + ], + "score": 1.0, + "content": "little degradation as chain length increases, with", + "type": "text" + }, + { + "bbox": [ + 297, + 651, + 328, + 662 + ], + "score": 0.35, + "content": "\\mathrm { H i t s } @ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 650, + 393, + 664 + ], + "score": 1.0, + "content": "for 10 hops still", + "type": "text" + }, + { + "bbox": [ + 393, + 651, + 419, + 662 + ], + "score": 0.85, + "content": "8 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 650, + 506, + 664 + ], + "score": 1.0, + "content": ". It also illustrates the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 662, + 323, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 323, + 674 + ], + "score": 1.0, + "content": "ability to predict entities in a KB, as well as relations.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "We also compare these results to two much more complex architectures that perform end-to-end", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "question answering in the same setting used here: VRN (Zhang et al., 2018), GRAFT-Net (Sun et al.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "2018), and PullNet (Sun et al., 2019). All three systems build question-dependent subgraphs of the", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 721, + 470, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 472, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 297, + 734 + ], + "score": 1.0, + "content": "4In the experiments we tune the hyperparameters", + "type": "text" + }, + { + "bbox": [ + 298, + 721, + 355, + 732 + ], + "score": 0.93, + "content": "T \\in \\{ 1 , \\ldots , 6 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 719, + 371, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 372, + 721, + 423, + 732 + ], + "score": 0.93, + "content": "N \\in \\{ 1 , 2 , 3 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 719, + 472, + 734 + ], + "score": 1.0, + "content": "on a dev set.", + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 139 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Knowledge base completion. Following Yang et al. (2017) we treat KB completion as an inference", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 243, + 167 + ], + "score": 1.0, + "content": "task, analogous to KBQA: a query", + "type": "text" + }, + { + "bbox": [ + 243, + 156, + 249, + 166 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 154, + 390, + 167 + ], + "score": 1.0, + "content": "is a relation name and a head entity", + "type": "text" + }, + { + "bbox": [ + 390, + 156, + 397, + 164 + ], + "score": 0.68, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 154, + 506, + 167 + ], + "score": 1.0, + "content": ", and from this we predict a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "set of tail entities. We assume the answers are computed with the disjunction of multiple inference", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 398, + 188 + ], + "score": 1.0, + "content": "chains of varying length. Each inference chain has a maximum length of", + "type": "text" + }, + { + "bbox": [ + 398, + 177, + 407, + 186 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 176, + 461, + 188 + ], + "score": 1.0, + "content": "and we build", + "type": "text" + }, + { + "bbox": [ + 462, + 177, + 472, + 186 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "distinct", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 410, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 305, + 200 + ], + "score": 1.0, + "content": "inference chains in total, using this model (where", + "type": "text" + }, + { + "bbox": [ + 305, + 187, + 335, + 199 + ], + "score": 0.93, + "content": "\\mathbf { x } _ { i } ^ { 0 } = \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 187, + 398, + 200 + ], + "score": 1.0, + "content": "for every chain", + "type": "text" + }, + { + "bbox": [ + 398, + 189, + 403, + 198 + ], + "score": 0.69, + "content": "\\romannumeral 1", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 187, + 410, + 200 + ], + "score": 1.0, + "content": "):", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 143, + 506, + 200 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 148, + 204, + 468, + 219 + ], + "lines": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "spans": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "score": 0.84, + "content": "\\mathrm { o r } i = 1 , \\dots , N \\mathrm { ~ a n d ~ } t = 1 , \\dots , T ; \\quad \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\quad \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "5dc9011cf752ef9c9b3c427607d0c54b94b627de53b3b9aa74c2a1abd7d3d722.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 148, + 204, + 468, + 219 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 104, + 224, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 104, + 224, + 299, + 243 + ], + "score": 1.0, + "content": "The final output is a softmax of the mix of all the", + "type": "text" + }, + { + "bbox": [ + 300, + 226, + 312, + 239 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 224, + 366, + 243 + ], + "score": 1.0, + "content": "’s: i.e., we let", + "type": "text" + }, + { + "bbox": [ + 366, + 226, + 483, + 241 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { i \\in \\{ 1 \\ldots N \\} } \\mathbf { x } _ { i } ^ { T } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 224, + 506, + 243 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 504, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 135, + 255 + ], + "score": 1.0, + "content": "update", + "type": "text" + }, + { + "bbox": [ + 135, + 240, + 242, + 254 + ], + "score": 0.92, + "content": "\\mathbf { x } _ { i } ^ { t + 1 } = f o l l o w ( \\mathbf { x } _ { i } ^ { t } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 239, + 499, + 255 + ], + "score": 1.0, + "content": "gives the model access to outputs of all chains of length less than", + "type": "text" + }, + { + "bbox": [ + 499, + 243, + 504, + 251 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 323, + 265 + ], + "score": 1.0, + "content": "(for more intuition see Appendix E.) The encoding of", + "type": "text" + }, + { + "bbox": [ + 323, + 254, + 330, + 264 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 252, + 477, + 265 + ], + "score": 1.0, + "content": "is based on a lookup table, and each", + "type": "text" + }, + { + "bbox": [ + 477, + 252, + 487, + 264 + ], + "score": 0.89, + "content": "f _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 301, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 235, + 276 + ], + "score": 1.0, + "content": "learned linear transformation of", + "type": "text" + }, + { + "bbox": [ + 235, + 264, + 242, + 275 + ], + "score": 0.79, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 263, + 301, + 276 + ], + "score": 1.0, + "content": "’s embedding.4", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 224, + 506, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 293 + ], + "score": 1.0, + "content": "An encoder-decoder architecture for varying inferential structures. To explore performance on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 504, + 303 + ], + "score": 1.0, + "content": "more complex reasoning tasks, we generated simple artificial natural-language sentences describing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "longer chains of relationships on a 10-by-10 grid. For this task we used an encoder-decoder model", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "which emits chains of relation-set following operations. The question is encoded with the final", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 270, + 338 + ], + "score": 1.0, + "content": "hidden state of an LSTM, written here", + "type": "text" + }, + { + "bbox": [ + 270, + 324, + 281, + 335 + ], + "score": 0.87, + "content": " { \\mathbf { h } } ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 324, + 506, + 338 + ], + "score": 1.0, + "content": ". We then generate a reasoning chain of length up to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 334, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 107, + 337, + 115, + 346 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 334, + 272, + 351 + ], + "score": 1.0, + "content": "using a decoder LSTM. At iteration", + "type": "text" + }, + { + "bbox": [ + 272, + 338, + 277, + 347 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 334, + 506, + 351 + ], + "score": 1.0, + "content": ", the decoder emits a scalar probability of “stopping”,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 107, + 347, + 116, + 358 + ], + "score": 0.86, + "content": "p ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 345, + 297, + 360 + ], + "score": 1.0, + "content": ", and a distribution over relations to follow", + "type": "text" + }, + { + "bbox": [ + 298, + 347, + 307, + 357 + ], + "score": 0.83, + "content": "\\mathbf { r } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 345, + 506, + 360 + ], + "score": 1.0, + "content": ", and then, as we did for the KBQA tasks, sets", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 354, + 507, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 194, + 370 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { x } } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 354, + 390, + 372 + ], + "score": 1.0, + "content": ". Finally the decoder updates its hidden state to", + "type": "text" + }, + { + "bbox": [ + 390, + 357, + 401, + 369 + ], + "score": 0.85, + "content": "\\mathbf { h } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 354, + 507, + 372 + ], + "score": 1.0, + "content": "using an LSTM cell that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 366, + 406, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 183, + 383 + ], + "score": 1.0, + "content": "“reads” the “input”", + "type": "text" + }, + { + "bbox": [ + 184, + 369, + 203, + 379 + ], + "score": 0.88, + "content": "\\mathbf { r } ^ { i - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 366, + 263, + 383 + ], + "score": 1.0, + "content": ". For each step", + "type": "text" + }, + { + "bbox": [ + 263, + 370, + 268, + 379 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 366, + 406, + 383 + ], + "score": 1.0, + "content": ", the model thus contains the steps", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 279, + 507, + 383 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 386, + 475, + 401 + ], + "lines": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "spans": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "score": 0.87, + "content": "p ^ { t } = f _ { p } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { r } ^ { t } = f _ { r } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { x } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } ) ; ~ \\mathbf { h } ^ { t } = \\mathrm { L S T M } ( \\mathbf { h } ^ { t - 1 } , \\mathbf { r } ^ { t - 1 } )", + "type": "interline_equation", + "image_path": "deb080a93ae71e3bb73f4ba8b285277a3a537b7b80fd378961cb4dabe7af9688.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 136, + 386, + 475, + 401 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 104, + 404, + 504, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 404, + 311, + 421 + ], + "score": 1.0, + "content": "The final predicted location is a mixture of all the", + "type": "text" + }, + { + "bbox": [ + 311, + 408, + 321, + 418 + ], + "score": 0.85, + "content": "\\mathbf { X } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 404, + 493, + 421 + ], + "score": 1.0, + "content": "’s weighted by the probability of stopping", + "type": "text" + }, + { + "bbox": [ + 494, + 409, + 504, + 419 + ], + "score": 0.79, + "content": "p _ { t }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 103, + 417, + 508, + 435 + ], + "spans": [ + { + "bbox": [ + 103, + 417, + 153, + 435 + ], + "score": 1.0, + "content": "at iteration", + "type": "text" + }, + { + "bbox": [ + 153, + 421, + 158, + 430 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 417, + 179, + 435 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 179, + 418, + 352, + 433 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { t = 1 } ^ { T } \\mathbf { x } ^ { t } \\cdot p ^ { t } \\prod _ { t ^ { \\prime } < t } ( 1 - p ^ { t ^ { \\prime } } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 417, + 413, + 435 + ], + "score": 1.0, + "content": ". The function", + "type": "text" + }, + { + "bbox": [ + 413, + 420, + 424, + 431 + ], + "score": 0.88, + "content": "f _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 417, + 508, + 435 + ], + "score": 1.0, + "content": "is a softmax over a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 194, + 444 + ], + "score": 1.0, + "content": "linear projection, and", + "type": "text" + }, + { + "bbox": [ + 194, + 432, + 205, + 443 + ], + "score": 0.88, + "content": "f _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "is a logistic function. In the experiments, we trained on 360,000 sentences", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 441, + 419, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 205, + 455 + ], + "score": 1.0, + "content": "requiring between 1 and", + "type": "text" + }, + { + "bbox": [ + 205, + 443, + 214, + 452 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 441, + 419, + 455 + ], + "score": 1.0, + "content": "hops and tested on an additional 12,000 sentences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 103, + 404, + 508, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "Experimental results. We next consider the performance of these models relative to strong baselines", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "for each task. We emphasize our goal here is not to challenge the current state of the art on any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "particular benchmark, and clearly there are many ways the models of this paper could be improved.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 505 + ], + "score": 1.0, + "content": "(For instance, our question encodings are based on word2vec, rather than contextual encodings", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 515 + ], + "score": 1.0, + "content": "(Devlin et al., 2018), and likewise relations are predicted with simple linear classifiers, rather than,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "say, attention queries over some semantically meaningful space, such as might be produced with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "language models or KB embedding approaches (Bordes et al., 2013)). Rather, our contribution is to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "present a generally useful scheme for including symbolic KB reasoning into a model, and we have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "thus focused on describing simple, easily understood models that do this for several tasks. However,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "it is important to confirm experimentally that the reified KB models “work”—e.g., that they are", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 568, + 284, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 284, + 581 + ], + "score": 1.0, + "content": "amenable to use of standard optimizers, etc.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34, + "bbox_fs": [ + 104, + 458, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 207, + 597 + ], + "score": 1.0, + "content": "Performance (using Hits", + "type": "text" + }, + { + "bbox": [ + 207, + 586, + 218, + 595 + ], + "score": 0.39, + "content": "@ .", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "1) of our models on the KBQA tasks is shown in Table 3. For the non-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 597, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 608 + ], + "score": 1.0, + "content": "synthetic tasks we also compare to a Key-Value Memory Network (KV-Mem) baseline (Miller et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "2016). For the smaller MetaQA dataset, KV-Mem is initialized with all facts within 3 hops of the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "query entities, and for WebQuestionsSP it is initialized by a random-walk process seeded by the query", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "entities (see (Sun et al., 2018; Zhang et al., 2018) for details). ReifKB consistently outperforms the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "baseline, dramatically so for longer reasoning chains. The synthetic grid task shows that there is very", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 296, + 664 + ], + "score": 1.0, + "content": "little degradation as chain length increases, with", + "type": "text" + }, + { + "bbox": [ + 297, + 651, + 328, + 662 + ], + "score": 0.35, + "content": "\\mathrm { H i t s } @ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 650, + 393, + 664 + ], + "score": 1.0, + "content": "for 10 hops still", + "type": "text" + }, + { + "bbox": [ + 393, + 651, + 419, + 662 + ], + "score": 0.85, + "content": "8 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 650, + 506, + 664 + ], + "score": 1.0, + "content": ". It also illustrates the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 662, + 323, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 323, + 674 + ], + "score": 1.0, + "content": "ability to predict entities in a KB, as well as relations.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 585, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "We also compare these results to two much more complex architectures that perform end-to-end", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 703 + ], + "score": 1.0, + "content": "question answering in the same setting used here: VRN (Zhang et al., 2018), GRAFT-Net (Sun et al.,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "2018), and PullNet (Sun et al., 2019). All three systems build question-dependent subgraphs of the", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49, + "bbox_fs": [ + 105, + 678, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 79, + 545, + 183 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 79, + 545, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 545, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 545, + 183 + ], + "score": 0.981, + "html": "
ReifKB (ours)ReifKB +maskKV-Mem (baseline)VRNGRAFT- NetPullNetnon-differentiable components of architectures
WebQSP MetaQA52.746.767.868.1KV-Meminitial memory retrieval
1-hop96.295.897.597.097.0
2-hop81.195.425.189.994.899.9VRNquestion-specific
3-hop72.379.710.162.577.291.4GRAFTNetsubgraph retrieval
Grid 5-hop98.4PullNetall iterative retrievals
10-hop89.71ReifKB(ours)none
", + "type": "table", + "image_path": "2d58bc39702cd8fde24c41f0874a33e202adac4a997b7377b883bb595691320c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 545, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 113.66666666666666, + 545, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.33333333333331, + 545, + 182.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 191, + 507, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 158, + 205 + ], + "score": 1.0, + "content": "Table 3: Hits", + "type": "text" + }, + { + "bbox": [ + 158, + 191, + 172, + 201 + ], + "score": 0.51, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 189, + 506, + 205 + ], + "score": 1.0, + "content": "on the KBQA datasets. Results for KV-Mem and VRN on MetaQA are from (Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "et al., 2018); results for GRAFT-Net, PullNet and KV-Mem on WebQSP are from (Sun et al., 2018)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 212, + 198, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 198, + 226 + ], + "score": 1.0, + "content": "and (Sun et al., 2019).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "KB, and then use graph CNN-like methods (Kipf & Welling, 2016) to “reason” with these graphs.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "Although not superior, ReifKB model is competitive with these approaches, especially on the most", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 263, + 198, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 198, + 277 + ], + "score": 1.0, + "content": "difficult 3-hop setting.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "A small extension to this model is to mask the seed entities out of the answers (see Appendix E).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 224, + 305 + ], + "score": 1.0, + "content": "This model (given as ReifKB", + "type": "text" + }, + { + "bbox": [ + 224, + 293, + 233, + 302 + ], + "score": 0.74, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 290, + 506, + 305 + ], + "score": 1.0, + "content": "mask) has better performance than GRAFT-Net on 2-hop and 3-hop", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 302, + 150, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 150, + 316 + ], + "score": 1.0, + "content": "questions.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 331 + ], + "score": 1.0, + "content": "For KB completion, we evaluated the model on the NELL-995 dataset (Xiong et al., 2017) which is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 197, + 344 + ], + "score": 1.0, + "content": "paired with a KB with", + "type": "text" + }, + { + "bbox": [ + 197, + 331, + 218, + 341 + ], + "score": 0.34, + "content": "1 5 4 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 330, + 242, + 344 + ], + "score": 1.0, + "content": "facts,", + "type": "text" + }, + { + "bbox": [ + 243, + 331, + 259, + 341 + ], + "score": 0.55, + "content": "7 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 330, + 505, + 344 + ], + "score": 1.0, + "content": "entities, and 200 relations. On the left of Table 4 we compare", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "our model with three popular embedding approaches (results are from Das et al. (2017)). The reified", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 351, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 507, + 365 + ], + "score": 1.0, + "content": "KB model outperforms DistMult (Yang et al., 2014), is slightly worse than ConvE (Dettmers et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 363, + 356, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 356, + 376 + ], + "score": 1.0, + "content": "2018), and is comparable to ComplEx (Trouillon et al., 2017).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "The competitive performance of the ReifKB model is perhaps surprising, since it has many fewer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "parameters than the baseline models—only one float and two integers per KB triple, plus a small", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 245, + 415 + ], + "score": 1.0, + "content": "number of parameters to define the", + "type": "text" + }, + { + "bbox": [ + 245, + 402, + 256, + 414 + ], + "score": 0.89, + "content": "f _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "functions for each relation. The ability to use fewer parameters", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 468, + 425 + ], + "score": 1.0, + "content": "is directly related to the fact that our model directly uses inference on the existing symbolic", + "type": "text" + }, + { + "bbox": [ + 468, + 414, + 482, + 423 + ], + "score": 0.33, + "content": "K B", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "in its", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "model, rather than having to learn embeddings that approximate this inference. Or course, since the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "KB is incomplete, some learning is still required, but learning is quite different: the system learns", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "logical inference chains in the incomplete KB that approximate a target relation. In this setting for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 457, + 489, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 489, + 470 + ], + "score": 1.0, + "content": "KBC, the ability to perform logical inference “out of the box” appears to be very advantageous.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Another relative disadvantage of KB embedding methods is that KB embeddings are generally", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "transductive—they only make predictions for entities seen in training. As a non-transductive baseline,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "we also compared to the MINERVA model, which uses reinforcement learning (RL) methods to learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 507, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 504, + 518 + ], + "score": 1.0, + "content": "how to traverse a KB to find a desired answer. Although RL methods are less suitable as “neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 518, + 499, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 499, + 531 + ], + "score": 1.0, + "content": "modules”, MINERVA is arguably a plausible competitor to end-to-end learning with a reified KB.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "MINERVA slightly outperforms our simple KB completion model on the NELL-995 task. However,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "unlike our model, MINERVA is trained to find a single answer, rather than trained to infer a set of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "score": 1.0, + "content": "answers. To explore this difference, we compared to MINERVA on the grid task under two conditions:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "score": 1.0, + "content": "(1) the KB relations are the grid directions north, south, east and west, so the output of the target", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "chain is always a single grid location, and (2) the KB relations also include a “vertical move” (north", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 602 + ], + "score": 1.0, + "content": "or south) and a “horizontal move” (east or west), so the result of the target chain can be a set of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 478, + 613 + ], + "score": 1.0, + "content": "locations. As expected MINERVA’s performance drops dramatically in the second case, from", + "type": "text" + }, + { + "bbox": [ + 478, + 600, + 505, + 611 + ], + "score": 0.84, + "content": "9 9 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "table", + "bbox": [ + 132, + 634, + 478, + 698 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 132, + 634, + 478, + 698 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 132, + 634, + 478, + 698 + ], + "spans": [ + { + "bbox": [ + 132, + 634, + 478, + 698 + ], + "score": 0.977, + "html": "
NELL-995NELL-995ReifKB (Ours) 64.1MINERVA 66.3
H@1H@10
ReifKB (Ours)64.182.4Grid with seed entity
DistMult*61.079.510-hop NSEW98.999.3
ComplEx*61.282.710-hop NSEW-VH73.634.4
ConvE*67.286.4MetaQA 3-hop72.341.7
", + "type": "table", + "image_path": "c8ee26a6726063bedbf5a7b0491400c80af6719223bc38f75678c771f23ae088.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 132, + 634, + 478, + 655.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 132, + 655.3333333333334, + 478, + 676.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 132, + 676.6666666666667, + 478, + 698.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 705, + 505, + 739 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 186, + 718 + ], + "score": 1.0, + "content": "Table 4: Left: Hits", + "type": "text" + }, + { + "bbox": [ + 187, + 706, + 201, + 716 + ], + "score": 0.4, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 705, + 239, + 718 + ], + "score": 1.0, + "content": "and Hits", + "type": "text" + }, + { + "bbox": [ + 239, + 706, + 259, + 716 + ], + "score": 0.76, + "content": "@ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 705, + 505, + 718 + ], + "score": 1.0, + "content": "for KB completion on NELL 995. Starred KB completion", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 717, + 504, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 504, + 729 + ], + "score": 1.0, + "content": "methods are transductive, and do not generalize to entities not seen in training. Right: Comparison to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 728, + 268, + 739 + ], + "spans": [ + { + "bbox": [ + 106, + 728, + 250, + 739 + ], + "score": 1.0, + "content": "MINERVA on several tasks for Hits", + "type": "text" + }, + { + "bbox": [ + 250, + 728, + 264, + 738 + ], + "score": 0.69, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 728, + 268, + 739 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 79, + 545, + 183 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 79, + 545, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 545, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 545, + 183 + ], + "score": 0.981, + "html": "
ReifKB (ours)ReifKB +maskKV-Mem (baseline)VRNGRAFT- NetPullNetnon-differentiable components of architectures
WebQSP MetaQA52.746.767.868.1KV-Meminitial memory retrieval
1-hop96.295.897.597.097.0
2-hop81.195.425.189.994.899.9VRNquestion-specific
3-hop72.379.710.162.577.291.4GRAFTNetsubgraph retrieval
Grid 5-hop98.4PullNetall iterative retrievals
10-hop89.71ReifKB(ours)none
", + "type": "table", + "image_path": "2d58bc39702cd8fde24c41f0874a33e202adac4a997b7377b883bb595691320c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 545, + 113.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 113.66666666666666, + 545, + 148.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 148.33333333333331, + 545, + 182.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 191, + 507, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 158, + 205 + ], + "score": 1.0, + "content": "Table 3: Hits", + "type": "text" + }, + { + "bbox": [ + 158, + 191, + 172, + 201 + ], + "score": 0.51, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 189, + 506, + 205 + ], + "score": 1.0, + "content": "on the KBQA datasets. Results for KV-Mem and VRN on MetaQA are from (Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "et al., 2018); results for GRAFT-Net, PullNet and KV-Mem on WebQSP are from (Sun et al., 2018)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 212, + 198, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 198, + 226 + ], + "score": 1.0, + "content": "and (Sun et al., 2019).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "KB, and then use graph CNN-like methods (Kipf & Welling, 2016) to “reason” with these graphs.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "Although not superior, ReifKB model is competitive with these approaches, especially on the most", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 263, + 198, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 198, + 277 + ], + "score": 1.0, + "content": "difficult 3-hop setting.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 240, + 506, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "A small extension to this model is to mask the seed entities out of the answers (see Appendix E).", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 224, + 305 + ], + "score": 1.0, + "content": "This model (given as ReifKB", + "type": "text" + }, + { + "bbox": [ + 224, + 293, + 233, + 302 + ], + "score": 0.74, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 290, + 506, + 305 + ], + "score": 1.0, + "content": "mask) has better performance than GRAFT-Net on 2-hop and 3-hop", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 302, + 150, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 150, + 316 + ], + "score": 1.0, + "content": "questions.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 280, + 506, + 316 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 505, + 331 + ], + "score": 1.0, + "content": "For KB completion, we evaluated the model on the NELL-995 dataset (Xiong et al., 2017) which is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 330, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 197, + 344 + ], + "score": 1.0, + "content": "paired with a KB with", + "type": "text" + }, + { + "bbox": [ + 197, + 331, + 218, + 341 + ], + "score": 0.34, + "content": "1 5 4 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 330, + 242, + 344 + ], + "score": 1.0, + "content": "facts,", + "type": "text" + }, + { + "bbox": [ + 243, + 331, + 259, + 341 + ], + "score": 0.55, + "content": "7 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 330, + 505, + 344 + ], + "score": 1.0, + "content": "entities, and 200 relations. On the left of Table 4 we compare", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "score": 1.0, + "content": "our model with three popular embedding approaches (results are from Das et al. (2017)). The reified", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 351, + 507, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 507, + 365 + ], + "score": 1.0, + "content": "KB model outperforms DistMult (Yang et al., 2014), is slightly worse than ConvE (Dettmers et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 363, + 356, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 356, + 376 + ], + "score": 1.0, + "content": "2018), and is comparable to ComplEx (Trouillon et al., 2017).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 320, + 507, + 376 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 469 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "The competitive performance of the ReifKB model is perhaps surprising, since it has many fewer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "parameters than the baseline models—only one float and two integers per KB triple, plus a small", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 245, + 415 + ], + "score": 1.0, + "content": "number of parameters to define the", + "type": "text" + }, + { + "bbox": [ + 245, + 402, + 256, + 414 + ], + "score": 0.89, + "content": "f _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "functions for each relation. The ability to use fewer parameters", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 468, + 425 + ], + "score": 1.0, + "content": "is directly related to the fact that our model directly uses inference on the existing symbolic", + "type": "text" + }, + { + "bbox": [ + 468, + 414, + 482, + 423 + ], + "score": 0.33, + "content": "K B", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "in its", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "model, rather than having to learn embeddings that approximate this inference. Or course, since the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "KB is incomplete, some learning is still required, but learning is quite different: the system learns", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "logical inference chains in the incomplete KB that approximate a target relation. In this setting for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 457, + 489, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 489, + 470 + ], + "score": 1.0, + "content": "KBC, the ability to perform logical inference “out of the box” appears to be very advantageous.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 380, + 506, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 487 + ], + "score": 1.0, + "content": "Another relative disadvantage of KB embedding methods is that KB embeddings are generally", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "transductive—they only make predictions for entities seen in training. As a non-transductive baseline,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "we also compared to the MINERVA model, which uses reinforcement learning (RL) methods to learn", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 507, + 504, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 504, + 518 + ], + "score": 1.0, + "content": "how to traverse a KB to find a desired answer. Although RL methods are less suitable as “neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 518, + 499, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 499, + 531 + ], + "score": 1.0, + "content": "modules”, MINERVA is arguably a plausible competitor to end-to-end learning with a reified KB.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 473, + 506, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "MINERVA slightly outperforms our simple KB completion model on the NELL-995 task. However,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "unlike our model, MINERVA is trained to find a single answer, rather than trained to infer a set of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "score": 1.0, + "content": "answers. To explore this difference, we compared to MINERVA on the grid task under two conditions:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 506, + 580 + ], + "score": 1.0, + "content": "(1) the KB relations are the grid directions north, south, east and west, so the output of the target", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "chain is always a single grid location, and (2) the KB relations also include a “vertical move” (north", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 590, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 602 + ], + "score": 1.0, + "content": "or south) and a “horizontal move” (east or west), so the result of the target chain can be a set of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 478, + 613 + ], + "score": 1.0, + "content": "locations. As expected MINERVA’s performance drops dramatically in the second case, from", + "type": "text" + }, + { + "bbox": [ + 478, + 600, + 505, + 611 + ], + "score": 0.84, + "content": "9 9 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 534, + 506, + 613 + ] + }, + { + "type": "table", + "bbox": [ + 132, + 634, + 478, + 698 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 132, + 634, + 478, + 698 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 132, + 634, + 478, + 698 + ], + "spans": [ + { + "bbox": [ + 132, + 634, + 478, + 698 + ], + "score": 0.977, + "html": "
NELL-995NELL-995ReifKB (Ours) 64.1MINERVA 66.3
H@1H@10
ReifKB (Ours)64.182.4Grid with seed entity
DistMult*61.079.510-hop NSEW98.999.3
ComplEx*61.282.710-hop NSEW-VH73.634.4
ConvE*67.286.4MetaQA 3-hop72.341.7
", + "type": "table", + "image_path": "c8ee26a6726063bedbf5a7b0491400c80af6719223bc38f75678c771f23ae088.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 132, + 634, + 478, + 655.3333333333334 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 132, + 655.3333333333334, + 478, + 676.6666666666667 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 132, + 676.6666666666667, + 478, + 698.0000000000001 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 705, + 505, + 739 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 186, + 718 + ], + "score": 1.0, + "content": "Table 4: Left: Hits", + "type": "text" + }, + { + "bbox": [ + 187, + 706, + 201, + 716 + ], + "score": 0.4, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 705, + 239, + 718 + ], + "score": 1.0, + "content": "and Hits", + "type": "text" + }, + { + "bbox": [ + 239, + 706, + 259, + 716 + ], + "score": 0.76, + "content": "@ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 705, + 505, + 718 + ], + "score": 1.0, + "content": "for KB completion on NELL 995. Starred KB completion", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 717, + 504, + 729 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 504, + 729 + ], + "score": 1.0, + "content": "methods are transductive, and do not generalize to entities not seen in training. Right: Comparison to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 728, + 268, + 739 + ], + "spans": [ + { + "bbox": [ + 106, + 728, + 250, + 739 + ], + "score": 1.0, + "content": "MINERVA on several tasks for Hits", + "type": "text" + }, + { + "bbox": [ + 250, + 728, + 264, + 738 + ], + "score": 0.69, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 728, + 268, + 739 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 83, + 497, + 153 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 83, + 497, + 153 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 83, + 497, + 151 + ], + "spans": [ + { + "bbox": [ + 114, + 83, + 497, + 151 + ], + "score": 0.431, + "html": "
●Reif KB● KV-mem● GRAFT-Net●PulINet
NELL-995MetaQA-3hopWebQuestionsSP100
#Facts154,213196,45343,724,17575
#Entities75,49243,23012,942,79850
#Relations200961625
Time (seconds)44.372.618200 250 500
", + "type": "table", + "image_path": "c8db1f8f580fb260925ea697808c83694bfe6f3550fdd658f4ba94326060deb9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 83, + 497, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 106.33333333333333, + 497, + 129.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 129.66666666666666, + 497, + 153.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 167, + 504, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "Table 5: Left, time to run 10K examples for KBs of different size. Right, time for 10k examples", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 178, + 483, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 137, + 191 + ], + "score": 1.0, + "content": "vs Hits", + "type": "text" + }, + { + "bbox": [ + 138, + 178, + 152, + 188 + ], + "score": 0.63, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 178, + 483, + 191 + ], + "score": 1.0, + "content": "performance for ReifKB compared to three baselines on MetaQA-3hop questions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 124, + 213 + ], + "score": 1.0, + "content": "Hits", + "type": "text" + }, + { + "bbox": [ + 124, + 200, + 138, + 210 + ], + "score": 0.68, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 199, + 149, + 213 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 149, + 200, + 178, + 211 + ], + "score": 0.86, + "content": "34 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 199, + 507, + 213 + ], + "score": 1.0, + "content": ", while our model’s performance is more robust. MetaQA answers can also be sets,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "so we also modified MetaQA so that MINERVA could be used (by making the non-entity part of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "score": 1.0, + "content": "sentence the “relation” input and the seed entity the “start node” input) and noted a similarly poor", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 233, + 415, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 415, + 245 + ], + "score": 1.0, + "content": "performance for MINERVA. These results are shown on the right of Table 4.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "In Tables 5 we compare the training time of our model with minibatch size of 10 on NELL-995,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "MetaQA, and WebQuestionsSP. With over 40 million facts and nearly 13 million entities from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "Freebase, it takes less than 10 minutes to run one epoch over WebQuestionsSP (with 3097 training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "examples) on four P100 GPUs. In the accompanying plot, we also summarize the tradeoffs between", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "score": 1.0, + "content": "accuracy and training time for our model and three baselines on the MetaQA 3-hop task. (Here", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "score": 1.0, + "content": "ideal performance is toward the upper left of the plot). The state-of-the-art PullNet Sun et al. (2019)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "system, which uses a learned method to incrementally retrieve from the KB, is about 15 times slower", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "than the reified KB system. GRAFT-Net is only slightly less accurate, but also only slightly faster:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "recall that GRAFT-Net uses a heuristically selected subset (of up to 500 triples) from the KB for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "each query, while our system uses the full KB. Here the full KB is about 400 times as large as the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "question-specific subset used by GRAFT-Net. A key-value memory baseline including the full KB is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 415, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 415, + 384 + ], + "score": 1.0, + "content": "nearly three times as slow as our system, while also performing quite poorly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 108, + 400, + 211, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 213, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 213, + 415 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "The relation-set following operation using reified KBs is implemented in an open-source pack-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "age called NQL, for neural query language. NQL implements a broader range of operations for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "score": 1.0, + "content": "manipulating KBs, which are described in a companion paper (Cohen et al., 2019). This paper", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 470 + ], + "score": 1.0, + "content": "focuses on implementation and evaluation of the relation-set following operation with different KB", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 467, + 345, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 345, + 481 + ], + "score": 1.0, + "content": "representations, issues not covered in the companion paper.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "TensorLog (Cohen et al., 2017), a probabilistic logic which also can be compiled to Tensorflow, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "hence is another differentiable approach to neuralizing a KB. TensorLog is also based on sparse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "matrices, but does not support relation sets, making it unnatural to express the models shown in this", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "paper, and does not use the more efficient reified KB representation. The differentiable theorem", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "prover (DTP) is another differentiable logic (Rocktäschel & Riedel, 2017), but DPT appears to be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "much less scalable: it has not been applied to KBs larger than a few thousand triples. The Neural ILP", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 551, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 562 + ], + "score": 1.0, + "content": "system (Yang et al., 2017) uses approaches related to late mixing together with an LSTM controller", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "to perform KB completion and some simple QA tasks, but it is a monolithic architecture focused on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "rule-learning, while in contrast we propose a re-usable neural component, which can be used in as a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "component in many different architectures, and a scalable implementation of this. It has also been", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 594, + 466, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 466, + 606 + ], + "score": 1.0, + "content": "reported that neural ILP does not scale to the size of the NELL995 task (Das et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "The goals of this paper are related to KB embedding methods, but distinct. In KB embedding,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "models are generally fully differentiable, but it is not considered necessary (or even desirable) to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "accurately match the behavior of inference in the original KB. Being able to construct a learned", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "approximation of a symbolic KB is undeniably useful in some contexts, but embedded KBs also have", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "many disadvantages. In particular, they are much larger than a reified KB, with many more learned", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "parameters—typically a long dense vector for every KB entity. Embedded models are typically", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "evaluated by their ability to score a single triple accurately, and many models are not capable of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "executing multi-step KB inferences efficiently; further, models that do allow multi-step inference are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "known to produce cascaded errors on long reasoning chains (Guu et al., 2015; Hamilton et al., 2018).", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "In contrast we focus on accurate models of reasoning in a symbolic KB, which requires consideration", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 400, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 400, + 733 + ], + "score": 1.0, + "content": "of novel scalability issues associated with sparse matrice representations.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43 + } + ], + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 83, + 497, + 153 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 83, + 497, + 153 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 83, + 497, + 151 + ], + "spans": [ + { + "bbox": [ + 114, + 83, + 497, + 151 + ], + "score": 0.431, + "html": "
●Reif KB● KV-mem● GRAFT-Net●PulINet
NELL-995MetaQA-3hopWebQuestionsSP100
#Facts154,213196,45343,724,17575
#Entities75,49243,23012,942,79850
#Relations200961625
Time (seconds)44.372.618200 250 500
", + "type": "table", + "image_path": "c8db1f8f580fb260925ea697808c83694bfe6f3550fdd658f4ba94326060deb9.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 83, + 497, + 106.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 106.33333333333333, + 497, + 129.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 129.66666666666666, + 497, + 153.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 167, + 504, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "Table 5: Left, time to run 10K examples for KBs of different size. Right, time for 10k examples", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 178, + 483, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 137, + 191 + ], + "score": 1.0, + "content": "vs Hits", + "type": "text" + }, + { + "bbox": [ + 138, + 178, + 152, + 188 + ], + "score": 0.63, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 178, + 483, + 191 + ], + "score": 1.0, + "content": "performance for ReifKB compared to three baselines on MetaQA-3hop questions.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 507, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 124, + 213 + ], + "score": 1.0, + "content": "Hits", + "type": "text" + }, + { + "bbox": [ + 124, + 200, + 138, + 210 + ], + "score": 0.68, + "content": "@ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 199, + 149, + 213 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 149, + 200, + 178, + 211 + ], + "score": 0.86, + "content": "34 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 199, + 507, + 213 + ], + "score": 1.0, + "content": ", while our model’s performance is more robust. MetaQA answers can also be sets,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "so we also modified MetaQA so that MINERVA could be used (by making the non-entity part of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 235 + ], + "score": 1.0, + "content": "sentence the “relation” input and the seed entity the “start node” input) and noted a similarly poor", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 233, + 415, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 415, + 245 + ], + "score": 1.0, + "content": "performance for MINERVA. These results are shown on the right of Table 4.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 199, + 507, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "In Tables 5 we compare the training time of our model with minibatch size of 10 on NELL-995,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "MetaQA, and WebQuestionsSP. With over 40 million facts and nearly 13 million entities from", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 285 + ], + "score": 1.0, + "content": "Freebase, it takes less than 10 minutes to run one epoch over WebQuestionsSP (with 3097 training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 296 + ], + "score": 1.0, + "content": "examples) on four P100 GPUs. In the accompanying plot, we also summarize the tradeoffs between", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "score": 1.0, + "content": "accuracy and training time for our model and three baselines on the MetaQA 3-hop task. (Here", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 317 + ], + "score": 1.0, + "content": "ideal performance is toward the upper left of the plot). The state-of-the-art PullNet Sun et al. (2019)", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "system, which uses a learned method to incrementally retrieve from the KB, is about 15 times slower", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "than the reified KB system. GRAFT-Net is only slightly less accurate, but also only slightly faster:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "recall that GRAFT-Net uses a heuristically selected subset (of up to 500 triples) from the KB for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "each query, while our system uses the full KB. Here the full KB is about 400 times as large as the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 372 + ], + "score": 1.0, + "content": "question-specific subset used by GRAFT-Net. A key-value memory baseline including the full KB is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 370, + 415, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 415, + 384 + ], + "score": 1.0, + "content": "nearly three times as slow as our system, while also performing quite poorly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 250, + 506, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 400, + 211, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 213, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 213, + 415 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "The relation-set following operation using reified KBs is implemented in an open-source pack-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "age called NQL, for neural query language. NQL implements a broader range of operations for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 460 + ], + "score": 1.0, + "content": "manipulating KBs, which are described in a companion paper (Cohen et al., 2019). This paper", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 470 + ], + "score": 1.0, + "content": "focuses on implementation and evaluation of the relation-set following operation with different KB", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 467, + 345, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 345, + 481 + ], + "score": 1.0, + "content": "representations, issues not covered in the companion paper.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 423, + 506, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "TensorLog (Cohen et al., 2017), a probabilistic logic which also can be compiled to Tensorflow, and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 508 + ], + "score": 1.0, + "content": "hence is another differentiable approach to neuralizing a KB. TensorLog is also based on sparse", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "score": 1.0, + "content": "matrices, but does not support relation sets, making it unnatural to express the models shown in this", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "paper, and does not use the more efficient reified KB representation. The differentiable theorem", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "prover (DTP) is another differentiable logic (Rocktäschel & Riedel, 2017), but DPT appears to be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "much less scalable: it has not been applied to KBs larger than a few thousand triples. The Neural ILP", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 551, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 562 + ], + "score": 1.0, + "content": "system (Yang et al., 2017) uses approaches related to late mixing together with an LSTM controller", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "to perform KB completion and some simple QA tasks, but it is a monolithic architecture focused on", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "rule-learning, while in contrast we propose a re-usable neural component, which can be used in as a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "component in many different architectures, and a scalable implementation of this. It has also been", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 594, + 466, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 466, + 606 + ], + "score": 1.0, + "content": "reported that neural ILP does not scale to the size of the NELL995 task (Das et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 484, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "The goals of this paper are related to KB embedding methods, but distinct. In KB embedding,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "models are generally fully differentiable, but it is not considered necessary (or even desirable) to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "accurately match the behavior of inference in the original KB. Being able to construct a learned", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "approximation of a symbolic KB is undeniably useful in some contexts, but embedded KBs also have", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "many disadvantages. In particular, they are much larger than a reified KB, with many more learned", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "parameters—typically a long dense vector for every KB entity. Embedded models are typically", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "evaluated by their ability to score a single triple accurately, and many models are not capable of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "executing multi-step KB inferences efficiently; further, models that do allow multi-step inference are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "known to produce cascaded errors on long reasoning chains (Guu et al., 2015; Hamilton et al., 2018).", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "In contrast we focus on accurate models of reasoning in a symbolic KB, which requires consideration", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 400, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 400, + 733 + ], + "score": 1.0, + "content": "of novel scalability issues associated with sparse matrice representations.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 610, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Mathematically, our definition of relation-set following is much like the bilinear model for path", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "following from Guu et al. (2015); however, we generalize this to path queries that include weighted", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "sets of relations, allowing the relations in paths to be learned. Similar differences apply to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "work of Hamilton et al. (2018), which extends the work of Guu et al. (2015) to include intersection", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "operations. The vector representation used here for weighted sets in a reified KB makes intersection", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "trivial to implement, as intersection corresponds to Hadamard product. Conveniently set union also", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 313, + 161 + ], + "score": 1.0, + "content": "corresponds to vector sum, and the complement of", + "type": "text" + }, + { + "bbox": [ + 313, + 149, + 323, + 158 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 148, + 333, + 161 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 334, + 149, + 357, + 159 + ], + "score": 0.83, + "content": "{ \\bf 1 } - { \\bf x }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 148, + 505, + 161 + ], + "score": 1.0, + "content": ", which is perhaps why only a single", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "additional neural operation is needed to support the KB reasoning tasks needed for the five benchmark", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 196, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 196, + 182 + ], + "score": 1.0, + "content": "tasks considered here.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Neural architectures like memory networks (Weston et al., 2014), or other architectures that use", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "attention over some data structure approximating assertions (Andreas et al., 2016; Gupta & Lewis,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "2018) can be used to build soft versions of relation-set following: however, they also do not scale well", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "to large KBs, so they are typically used either with a non-differentiable ad hoc retrieval mechanism,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "or else in cases where a small amount of information is relevant to a question (Weston et al., 2015;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 507, + 256 + ], + "score": 1.0, + "content": "Zhong et al., 2017). Similarly graph CNNs (Kipf & Welling, 2016) also can be used for reasoning,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "and often do use sparse matrix multiplication, but again existing implementations have not been", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "scaled to tens of millions of triples/edges or millions of entities/graph nodes. Additionally, while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "graph CNNs have been used for reasoning tasks, the formal connection between them and logical", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "reasoning remains unclear, whereas there is a precise connection between relation-set following and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 149, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 149, + 309 + ], + "score": 1.0, + "content": "inference.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "Reinforcement learning (RL) methods have been used to learn mappings from natural-language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "questions to non-differentiable logical representations (Liang et al., 2016; 2018) and have also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "been applied to KB completion tasks (Das et al., 2017; Xiong et al., 2017). Above we compared", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "experimentally to MINERVA, one such method; however, the gradient-based approaches enabled by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "our methods are generally preferred as being easier to implement and tune on new problems, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 368, + 387, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 387, + 381 + ], + "score": 1.0, + "content": "easier to combine in a modular way with other architectural elements.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 389, + 202, + 402 + ], + "lines": [ + { + "bbox": [ + 104, + 387, + 203, + 405 + ], + "spans": [ + { + "bbox": [ + 104, + 387, + 203, + 405 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "score": 1.0, + "content": "We introduced here a novel way of representing a symbolic knowledge base (KB) called a sparse-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "matrix reified KB. This representation enables neural modules that are fully differentiable, faithful", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "enough to use with realistically large KBs. In a reified KB, all KB relations are represented with three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "sparse matrices, which can be distributed across multiple GPUs, and symbolic reasoning on realistic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "KBs with many relations is much faster than with naive implementations—more than four orders of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 473, + 502, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 502, + 485 + ], + "score": 1.0, + "content": "magnitude faster on synthetic-data experiments compared to naive sparse-matrix implementations.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "This new architectural component leads to radically simpler architectures for neural semantic parsing", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "from denotations and KB completion—in particular, they make it possible to learn neural KBQA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "models in a completely end-to-end way, mapping from text to KB entity sets, for KBs with tens of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 522, + 334, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 334, + 534 + ], + "score": 1.0, + "content": "millions of triples and entities and hundreds of relations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 108, + 546, + 200, + 556 + ], + "lines": [ + { + "bbox": [ + 107, + 547, + 200, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 547, + 200, + 558 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "The authors are greatful to comments and suggestions from Fernando Peireira, Bhuwan Dhingra, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 577, + 327, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 327, + 587 + ], + "score": 1.0, + "content": "many other colleagues on earlier versions of this work.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Mathematically, our definition of relation-set following is much like the bilinear model for path", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "following from Guu et al. (2015); however, we generalize this to path queries that include weighted", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "sets of relations, allowing the relations in paths to be learned. Similar differences apply to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "work of Hamilton et al. (2018), which extends the work of Guu et al. (2015) to include intersection", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "operations. The vector representation used here for weighted sets in a reified KB makes intersection", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "trivial to implement, as intersection corresponds to Hadamard product. Conveniently set union also", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 313, + 161 + ], + "score": 1.0, + "content": "corresponds to vector sum, and the complement of", + "type": "text" + }, + { + "bbox": [ + 313, + 149, + 323, + 158 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 148, + 333, + 161 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 334, + 149, + 357, + 159 + ], + "score": 0.83, + "content": "{ \\bf 1 } - { \\bf x }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 148, + 505, + 161 + ], + "score": 1.0, + "content": ", which is perhaps why only a single", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "additional neural operation is needed to support the KB reasoning tasks needed for the five benchmark", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 196, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 196, + 182 + ], + "score": 1.0, + "content": "tasks considered here.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 83, + 506, + 182 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "Neural architectures like memory networks (Weston et al., 2014), or other architectures that use", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "attention over some data structure approximating assertions (Andreas et al., 2016; Gupta & Lewis,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "2018) can be used to build soft versions of relation-set following: however, they also do not scale well", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "to large KBs, so they are typically used either with a non-differentiable ad hoc retrieval mechanism,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 243 + ], + "score": 1.0, + "content": "or else in cases where a small amount of information is relevant to a question (Weston et al., 2015;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 507, + 256 + ], + "score": 1.0, + "content": "Zhong et al., 2017). Similarly graph CNNs (Kipf & Welling, 2016) also can be used for reasoning,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "and often do use sparse matrix multiplication, but again existing implementations have not been", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "scaled to tens of millions of triples/edges or millions of entities/graph nodes. Additionally, while", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 287 + ], + "score": 1.0, + "content": "graph CNNs have been used for reasoning tasks, the formal connection between them and logical", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "reasoning remains unclear, whereas there is a precise connection between relation-set following and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 149, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 149, + 309 + ], + "score": 1.0, + "content": "inference.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 187, + 507, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 505, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "Reinforcement learning (RL) methods have been used to learn mappings from natural-language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "questions to non-differentiable logical representations (Liang et al., 2016; 2018) and have also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "been applied to KB completion tasks (Das et al., 2017; Xiong et al., 2017). Above we compared", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "experimentally to MINERVA, one such method; however, the gradient-based approaches enabled by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "our methods are generally preferred as being easier to implement and tune on new problems, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 368, + 387, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 387, + 381 + ], + "score": 1.0, + "content": "easier to combine in a modular way with other architectural elements.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 312, + 506, + 381 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 389, + 202, + 402 + ], + "lines": [ + { + "bbox": [ + 104, + 387, + 203, + 405 + ], + "spans": [ + { + "bbox": [ + 104, + 387, + 203, + 405 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 507, + 420 + ], + "score": 1.0, + "content": "We introduced here a novel way of representing a symbolic knowledge base (KB) called a sparse-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "matrix reified KB. This representation enables neural modules that are fully differentiable, faithful", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "to the original semantics of the KB, expressive enough to model multi-hop inferences, and scalable", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "enough to use with realistically large KBs. In a reified KB, all KB relations are represented with three", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "sparse matrices, which can be distributed across multiple GPUs, and symbolic reasoning on realistic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "KBs with many relations is much faster than with naive implementations—more than four orders of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 473, + 502, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 502, + 485 + ], + "score": 1.0, + "content": "magnitude faster on synthetic-data experiments compared to naive sparse-matrix implementations.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 406, + 507, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "This new architectural component leads to radically simpler architectures for neural semantic parsing", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "from denotations and KB completion—in particular, they make it possible to learn neural KBQA", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "models in a completely end-to-end way, mapping from text to KB entity sets, for KBs with tens of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 522, + 334, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 334, + 534 + ], + "score": 1.0, + "content": "millions of triples and entities and hundreds of relations.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 488, + 506, + 534 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 546, + 200, + 556 + ], + "lines": [ + { + "bbox": [ + 107, + 547, + 200, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 547, + 200, + 558 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "The authors are greatful to comments and suggestions from Fernando Peireira, Bhuwan Dhingra, and", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 577, + 327, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 327, + 587 + ], + "score": 1.0, + "content": "many other colleagues on earlier versions of this work.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 564, + 505, + 587 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 506, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martín Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 135 + ], + "score": 1.0, + "content": "large-scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 318, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 318, + 146 + ], + "score": 1.0, + "content": "Implementation ({OSDI} 16), pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 171, + 143, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 171, + 143, + 186 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 504, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "question-answer pairs. In Proceedings of the 2013 Conference on Empirical Methods in Natural", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 297, + 226 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 297, + 226 + ], + "score": 1.0, + "content": "Language Processing, pp. 1533–1544, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "Kurt Bollacker, Colin Evans, Praveen Paritosh, Tim Sturge, and Jamie Taylor. Freebase: a collabora-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "tively created graph database for structuring human knowledge. In Proceedings of the 2008 ACM", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 471, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 471, + 267 + ], + "score": 1.0, + "content": "SIGMOD international conference on Management of data, pp. 1247–1250. AcM, 2008.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 506, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "Translating embeddings for modeling multi-relational data. In Advances in neural information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 296, + 287, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 296, + 287, + 308 + ], + "score": 1.0, + "content": "processing systems, pp. 2787–2795, 2013.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 504, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "William W Cohen, Fan Yang, and Kathryn Rivard Mazaitis. Tensorlog: Deep learning meets", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 355, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 355, + 337 + ], + "score": 1.0, + "content": "probabilistic DBs. arXiv preprint arXiv:1707.05390, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 506, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "William W. Cohen, Matthew Siegler, and R. Alex Hofer. Neural query language: A knowledge base", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "query language for Tensorflow. CoRR, abs/1905.06209, 2019. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 117, + 366, + 206, + 377 + ], + "spans": [ + { + "bbox": [ + 117, + 366, + 206, + 377 + ], + "score": 1.0, + "content": "abs/1905.06209.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 506, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 507, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 507, + 397 + ], + "score": 1.0, + "content": "Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishna-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "murthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 406, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 507, + 419 + ], + "score": 1.0, + "content": "over paths in knowledge bases using reinforcement learning. arXiv preprint arXiv:1711.05851,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 416, + 143, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 143, + 429 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Pradeep Dasigi, Matt Gardner, Shikhar Murty, Luke Zettlemoyer, and Eduard Hovy. Iterative", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "search for weakly supervised semantic parsing. In Proceedings of the 2019 Conference of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 114, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 2669–2680, Minneapolis, Minnesota, June", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 479, + 507, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 479, + 507, + 493 + ], + "score": 1.0, + "content": "2019. Association for Computational Linguistics. doi: 10.18653/v1/N19-1273. URL https:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 491, + 331, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 331, + 503 + ], + "score": 1.0, + "content": "//www.aclweb.org/anthology/N19-1273.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Luc De Raedt, Angelika Kimmig, and Hannu Toivonen. Problog: A probabilistic Prolog and its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 520, + 456, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 456, + 533 + ], + "score": 1.0, + "content": "application in link discovery. In IJCAI, volume 7, pp. 2462–2467. Hyderabad, 2007.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Tim Dettmers, Pasquale Minervini, Pontus Stenetorp, and Sebastian Riedel. Convolutional 2d", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "knowledge graph embeddings. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 582 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 579, + 500, + 593 + ], + "spans": [ + { + "bbox": [ + 116, + 579, + 500, + 593 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 504, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "Catherine Finegan-Dollak, Jonathan K Kummerfeld, Li Zhang, Karthik Ramanathan, Sesh Sadasivam,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 116, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "Rui Zhang, and Dragomir Radev. Improving text-to-SQL evaluation methodology. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 621, + 219, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 219, + 632 + ], + "score": 1.0, + "content": "arXiv:1806.09029, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 653 + ], + "score": 1.0, + "content": "Nitish Gupta and Mike Lewis. Neural compositional denotational semantics for question answering.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 650, + 452, + 662 + ], + "spans": [ + { + "bbox": [ + 117, + 650, + 452, + 662 + ], + "score": 1.0, + "content": "CoRR, abs/1808.09942, 2018. URL http://arxiv.org/abs/1808.09942.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 503, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. arXiv", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 680, + 254, + 691 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 254, + 691 + ], + "score": 1.0, + "content": "preprint arXiv:1506.01094, 2015.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Will Hamilton, Payal Bajaj, Marinka Zitnik, Dan Jurafsky, and Jure Leskovec. Embedding logical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "queries on knowledge graphs. In Advances in Neural Information Processing Systems, pp. 2026–", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 167, + 732 + ], + "score": 1.0, + "content": "2037, 2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 175, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 506, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Martín Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: A system for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 135 + ], + "score": 1.0, + "content": "large-scale machine learning. In 12th {USENIX} Symposium on Operating Systems Design and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 133, + 318, + 146 + ], + "spans": [ + { + "bbox": [ + 116, + 133, + 318, + 146 + ], + "score": 1.0, + "content": "Implementation ({OSDI} 16), pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 100, + 506, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 151, + 505, + 185 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "Jacob Andreas, Marcus Rohrbach, Trevor Darrell, and Dan Klein. Neural module networks. In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 39–48,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 171, + 143, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 171, + 143, + 186 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 151, + 506, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 504, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Jonathan Berant, Andrew Chou, Roy Frostig, and Percy Liang. Semantic parsing on freebase from", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 116, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "question-answer pairs. In Proceedings of the 2013 Conference on Empirical Methods in Natural", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 297, + 226 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 297, + 226 + ], + "score": 1.0, + "content": "Language Processing, pp. 1533–1544, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 192, + 506, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 232, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 506, + 245 + ], + "score": 1.0, + "content": "Kurt Bollacker, Colin Evans, Praveen Paritosh, Tim Sturge, and Jamie Taylor. Freebase: a collabora-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "tively created graph database for structuring human knowledge. In Proceedings of the 2008 ACM", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 471, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 471, + 267 + ], + "score": 1.0, + "content": "SIGMOD international conference on Management of data, pp. 1247–1250. AcM, 2008.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 232, + 506, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 506, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "Antoine Bordes, Nicolas Usunier, Alberto Garcia-Duran, Jason Weston, and Oksana Yakhnenko.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "Translating embeddings for modeling multi-relational data. In Advances in neural information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 296, + 287, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 296, + 287, + 308 + ], + "score": 1.0, + "content": "processing systems, pp. 2787–2795, 2013.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 273, + 506, + 308 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 504, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "William W Cohen, Fan Yang, and Kathryn Rivard Mazaitis. Tensorlog: Deep learning meets", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 355, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 355, + 337 + ], + "score": 1.0, + "content": "probabilistic DBs. arXiv preprint arXiv:1707.05390, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 312, + 505, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 506, + 377 + ], + "lines": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "score": 1.0, + "content": "William W. Cohen, Matthew Siegler, and R. Alex Hofer. Neural query language: A knowledge base", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 506, + 368 + ], + "score": 1.0, + "content": "query language for Tensorflow. CoRR, abs/1905.06209, 2019. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 117, + 366, + 206, + 377 + ], + "spans": [ + { + "bbox": [ + 117, + 366, + 206, + 377 + ], + "score": 1.0, + "content": "abs/1905.06209.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 343, + 506, + 377 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 506, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 384, + 507, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 507, + 397 + ], + "score": 1.0, + "content": "Rajarshi Das, Shehzaad Dhuliawala, Manzil Zaheer, Luke Vilnis, Ishan Durugkar, Akshay Krishna-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "murthy, Alex Smola, and Andrew McCallum. Go for a walk and arrive at the answer: Reasoning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 114, + 406, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 114, + 406, + 507, + 419 + ], + "score": 1.0, + "content": "over paths in knowledge bases using reinforcement learning. arXiv preprint arXiv:1711.05851,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 416, + 143, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 416, + 143, + 429 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 384, + 507, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "Pradeep Dasigi, Matt Gardner, Shikhar Murty, Luke Zettlemoyer, and Eduard Hovy. Iterative", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "search for weakly supervised semantic parsing. In Proceedings of the 2019 Conference of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 457, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 457, + 505, + 471 + ], + "score": 1.0, + "content": "North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 468, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 114, + 468, + 506, + 483 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 2669–2680, Minneapolis, Minnesota, June", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 479, + 507, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 479, + 507, + 493 + ], + "score": 1.0, + "content": "2019. Association for Computational Linguistics. doi: 10.18653/v1/N19-1273. URL https:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 491, + 331, + 503 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 331, + 503 + ], + "score": 1.0, + "content": "//www.aclweb.org/anthology/N19-1273.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 436, + 507, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 509, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Luc De Raedt, Angelika Kimmig, and Hannu Toivonen. Problog: A probabilistic Prolog and its", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 520, + 456, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 456, + 533 + ], + "score": 1.0, + "content": "application in link discovery. In IJCAI, volume 7, pp. 2462–2467. Hyderabad, 2007.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 509, + 505, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "Tim Dettmers, Pasquale Minervini, Pontus Stenetorp, and Sebastian Riedel. Convolutional 2d", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "knowledge graph embeddings. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 539, + 506, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 568, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 582 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 579, + 500, + 593 + ], + "spans": [ + { + "bbox": [ + 116, + 579, + 500, + 593 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 567, + 505, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 598, + 504, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "Catherine Finegan-Dollak, Jonathan K Kummerfeld, Li Zhang, Karthik Ramanathan, Sesh Sadasivam,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 116, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "Rui Zhang, and Dragomir Radev. Improving text-to-SQL evaluation methodology. arXiv preprint", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 621, + 219, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 219, + 632 + ], + "score": 1.0, + "content": "arXiv:1806.09029, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 597, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 504, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 653 + ], + "score": 1.0, + "content": "Nitish Gupta and Mike Lewis. Neural compositional denotational semantics for question answering.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 117, + 650, + 452, + 662 + ], + "spans": [ + { + "bbox": [ + 117, + 650, + 452, + 662 + ], + "score": 1.0, + "content": "CoRR, abs/1808.09942, 2018. URL http://arxiv.org/abs/1808.09942.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 637, + 505, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 668, + 503, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "Kelvin Guu, John Miller, and Percy Liang. Traversing knowledge graphs in vector space. arXiv", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 680, + 254, + 691 + ], + "spans": [ + { + "bbox": [ + 114, + 680, + 254, + 691 + ], + "score": 1.0, + "content": "preprint arXiv:1506.01094, 2015.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 668, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Will Hamilton, Payal Bajaj, Marinka Zitnik, Dan Jurafsky, and Jure Leskovec. Embedding logical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "queries on knowledge graphs. In Advances in Neural Information Processing Systems, pp. 2026–", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 167, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 167, + 732 + ], + "score": 1.0, + "content": "2037, 2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 698, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 278, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 278, + 105 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.02907, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "Chen Liang, Jonathan Berant, Quoc Le, Kenneth D Forbus, and Ni Lao. Neural symbolic machines:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 135 + ], + "score": 1.0, + "content": "Learning semantic parsers on freebase with weak supervision. arXiv preprint arXiv:1611.00020,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 132, + 142, + 147 + ], + "spans": [ + { + "bbox": [ + 114, + 132, + 142, + 147 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 108, + 152, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 166 + ], + "score": 1.0, + "content": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "policy optimization for program synthesis and semantic parsing. In Advances in Neural Information", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 294, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 294, + 187 + ], + "score": 1.0, + "content": "Processing Systems, pp. 9994–10006, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 506, + 219 + ], + "score": 1.0, + "content": "of words and phrases and their compositionality. In Advances in neural information processing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 242, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 242, + 227 + ], + "score": 1.0, + "content": "systems, pp. 3111–3119, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 506, + 268 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Alexander H. Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "Weston. Key-value memory networks for directly reading documents. CoRR, abs/1606.03126,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 355, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 355, + 268 + ], + "score": 1.0, + "content": "2016. URL http://arxiv.org/abs/1606.03126.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 274, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "Dipendra Misra, Ming-Wei Chang, Xiaodong He, and Wen-tau Yih. Policy shaping and generalized", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "update equations for semantic parsing from denotations. In Proceedings of the 2018 Conference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 433, + 310 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 433, + 310 + ], + "score": 1.0, + "content": "on Empirical Methods in Natural Language Processing, pp. 2442–2452, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "Panupong Pasupat and Percy Liang. Inferring logical forms from denotations. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 326, + 219, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 219, + 338 + ], + "score": 1.0, + "content": "arXiv:1606.06900, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Tim Rocktäschel and Sebastian Riedel. End-to-end differentiable proving. In Advances in Neural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 339, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 339, + 369 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 3788–3800, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 506, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "Peter Shaw, Philip Massey, Angelica Chen, Francesco Piccinno, and Yasemin Altun. Generating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 385, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 507, + 399 + ], + "score": 1.0, + "content": "logical forms from graph representations of text and entities. arXiv preprint arXiv:1905.08407,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 395, + 143, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 395, + 143, + 410 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 506, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 428 + ], + "score": 1.0, + "content": "Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 426, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 114, + 426, + 507, + 439 + ], + "score": 1.0, + "content": "Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, Ryan Sepassi, and Blake A.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "Hechtman. Mesh-tensorflow: Deep learning for supercomputers. CoRR, abs/1811.02084, 2018.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 448, + 330, + 461 + ], + "spans": [ + { + "bbox": [ + 116, + 448, + 330, + 461 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1811.02084.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "Haitian Sun, Bhuwan Dhingra, Manzil Zaheer, Kathryn Mazaitis, Ruslan Salakhutdinov, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "William W Cohen. Open domain question answering using early fusion of knowledge bases", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 489, + 216, + 501 + ], + "spans": [ + { + "bbox": [ + 116, + 489, + 216, + 501 + ], + "score": 1.0, + "content": "and text. EMNLP, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 104, + 507, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 522 + ], + "score": 1.0, + "content": "Haitian Sun, Tania Bedrax-Weiss, and William W Cohen. Pullnet: Open domain question answering", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 519, + 488, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 488, + 531 + ], + "score": 1.0, + "content": "with iterative retrieval on knowledge bases and text. arXiv preprint arXiv:1904.09537, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "Théo Trouillon, Christopher R Dance, Éric Gaussier, Johannes Welbl, Sebastian Riedel, and Guil-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "laume Bouchard. Knowledge graph completion via complex tensor factorization. The Journal of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 333, + 573 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 333, + 573 + ], + "score": 1.0, + "content": "Machine Learning Research, 18(1):4735–4772, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 104, + 579, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 590, + 215, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 215, + 603 + ], + "score": 1.0, + "content": "arXiv:1410.3916, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Jason Weston, Antoine Bordes, Sumit Chopra, Alexander M Rush, Bart van Merriënboer, Armand", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 619, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 114, + 619, + 505, + 634 + ], + "score": 1.0, + "content": "Joulin, and Tomas Mikolov. Towards ai-complete question answering: A set of prerequisite toy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 631, + 305, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 305, + 644 + ], + "score": 1.0, + "content": "tasks. arXiv preprint arXiv:1502.05698, 2015.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Wenhan Xiong, Thien Hoang, and William Yang Wang. Deeppath: A reinforcement learning method", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 409, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 409, + 674 + ], + "score": 1.0, + "content": "for knowledge graph reasoning. arXiv preprint arXiv:1707.06690, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Bishan Yang, Wen-tau Yih, Xiaodong He, Jianfeng Gao, and Li Deng. Embedding entities and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 501, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 501, + 703 + ], + "score": 1.0, + "content": "relations for learning and inference in knowledge bases. arXiv preprint arXiv:1412.6575, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 721, + 496, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 496, + 732 + ], + "score": 1.0, + "content": "base reasoning. In Advances in Neural Information Processing Systems, pp. 2319–2328, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 11, + "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, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "Thomas N Kipf and Max Welling. Semi-supervised classification with graph convolutional networks.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 278, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 278, + 105 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.02907, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 81, + 506, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "Chen Liang, Jonathan Berant, Quoc Le, Kenneth D Forbus, and Ni Lao. Neural symbolic machines:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 506, + 135 + ], + "score": 1.0, + "content": "Learning semantic parsers on freebase with weak supervision. arXiv preprint arXiv:1611.00020,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 114, + 132, + 142, + 147 + ], + "spans": [ + { + "bbox": [ + 114, + 132, + 142, + 147 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 111, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 152, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 166 + ], + "score": 1.0, + "content": "Chen Liang, Mohammad Norouzi, Jonathan Berant, Quoc V Le, and Ni Lao. Memory augmented", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "policy optimization for program synthesis and semantic parsing. In Advances in Neural Information", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 294, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 294, + 187 + ], + "score": 1.0, + "content": "Processing Systems, pp. 9994–10006, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 152, + 506, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. Distributed representations", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 506, + 219 + ], + "score": 1.0, + "content": "of words and phrases and their compositionality. In Advances in neural information processing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 217, + 242, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 217, + 242, + 227 + ], + "score": 1.0, + "content": "systems, pp. 3111–3119, 2013.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 192, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 506, + 268 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Alexander H. Miller, Adam Fisch, Jesse Dodge, Amir-Hossein Karimi, Antoine Bordes, and Jason", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 245, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 506, + 257 + ], + "score": 1.0, + "content": "Weston. Key-value memory networks for directly reading documents. CoRR, abs/1606.03126,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 355, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 355, + 268 + ], + "score": 1.0, + "content": "2016. URL http://arxiv.org/abs/1606.03126.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 234, + 506, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 274, + 506, + 309 + ], + "lines": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "Dipendra Misra, Ming-Wei Chang, Xiaodong He, and Wen-tau Yih. Policy shaping and generalized", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "update equations for semantic parsing from denotations. In Proceedings of the 2018 Conference", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 433, + 310 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 433, + 310 + ], + "score": 1.0, + "content": "on Empirical Methods in Natural Language Processing, pp. 2442–2452, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 274, + 506, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "Panupong Pasupat and Percy Liang. Inferring logical forms from denotations. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 326, + 219, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 219, + 338 + ], + "score": 1.0, + "content": "arXiv:1606.06900, 2016.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 315, + 506, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 344, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Tim Rocktäschel and Sebastian Riedel. End-to-end differentiable proving. In Advances in Neural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 339, + 369 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 339, + 369 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 3788–3800, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 344, + 505, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 374, + 506, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "Peter Shaw, Philip Massey, Angelica Chen, Francesco Piccinno, and Yasemin Altun. Generating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 385, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 507, + 399 + ], + "score": 1.0, + "content": "logical forms from graph representations of text and entities. arXiv preprint arXiv:1905.08407,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 395, + 143, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 395, + 143, + 410 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 374, + 507, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 506, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 428 + ], + "score": 1.0, + "content": "Noam Shazeer, Youlong Cheng, Niki Parmar, Dustin Tran, Ashish Vaswani, Penporn Koanantakool,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 426, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 114, + 426, + 507, + 439 + ], + "score": 1.0, + "content": "Peter Hawkins, HyoukJoong Lee, Mingsheng Hong, Cliff Young, Ryan Sepassi, and Blake A.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "Hechtman. Mesh-tensorflow: Deep learning for supercomputers. CoRR, abs/1811.02084, 2018.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 448, + 330, + 461 + ], + "spans": [ + { + "bbox": [ + 116, + 448, + 330, + 461 + ], + "score": 1.0, + "content": "URL http://arxiv.org/abs/1811.02084.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 416, + 507, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "Haitian Sun, Bhuwan Dhingra, Manzil Zaheer, Kathryn Mazaitis, Ruslan Salakhutdinov, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 478, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 478, + 506, + 491 + ], + "score": 1.0, + "content": "William W Cohen. Open domain question answering using early fusion of knowledge bases", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 489, + 216, + 501 + ], + "spans": [ + { + "bbox": [ + 116, + 489, + 216, + 501 + ], + "score": 1.0, + "content": "and text. EMNLP, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 467, + 506, + 501 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 507, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 522 + ], + "score": 1.0, + "content": "Haitian Sun, Tania Bedrax-Weiss, and William W Cohen. Pullnet: Open domain question answering", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 519, + 488, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 488, + 531 + ], + "score": 1.0, + "content": "with iterative retrieval on knowledge bases and text. arXiv preprint arXiv:1904.09537, 2019.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 506, + 505, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "Théo Trouillon, Christopher R Dance, Éric Gaussier, Johannes Welbl, Sebastian Riedel, and Guil-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "laume Bouchard. Knowledge graph completion via complex tensor factorization. The Journal of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 560, + 333, + 573 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 333, + 573 + ], + "score": 1.0, + "content": "Machine Learning Research, 18(1):4735–4772, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 538, + 506, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 579, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "Jason Weston, Sumit Chopra, and Antoine Bordes. Memory networks. arXiv preprint", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 590, + 215, + 603 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 215, + 603 + ], + "score": 1.0, + "content": "arXiv:1410.3916, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 578, + 505, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "Jason Weston, Antoine Bordes, Sumit Chopra, Alexander M Rush, Bart van Merriënboer, Armand", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 619, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 114, + 619, + 505, + 634 + ], + "score": 1.0, + "content": "Joulin, and Tomas Mikolov. Towards ai-complete question answering: A set of prerequisite toy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 631, + 305, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 305, + 644 + ], + "score": 1.0, + "content": "tasks. arXiv preprint arXiv:1502.05698, 2015.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 609, + 505, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Wenhan Xiong, Thien Hoang, and William Yang Wang. Deeppath: A reinforcement learning method", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 409, + 674 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 409, + 674 + ], + "score": 1.0, + "content": "for knowledge graph reasoning. arXiv preprint arXiv:1707.06690, 2017.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 650, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Bishan Yang, Wen-tau Yih, Xiaodong He, Jianfeng Gao, and Li Deng. Embedding entities and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 501, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 501, + 703 + ], + "score": 1.0, + "content": "relations for learning and inference in knowledge bases. arXiv preprint arXiv:1412.6575, 2014.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 679, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Fan Yang, Zhilin Yang, and William W Cohen. Differentiable learning of logical rules for knowledge", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 721, + 496, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 496, + 732 + ], + "score": 1.0, + "content": "base reasoning. In Advances in Neural Information Processing Systems, pp. 2319–2328, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Wen-tau Yih, Ming-Wei Chang, Xiaodong He, and Jianfeng Gao. Semantic parsing via staged", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "query graph generation: Question answering with knowledge base. In Proceedings of the 53rd", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics and the 7th International Joint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 113, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 507, + 128 + ], + "score": 1.0, + "content": "Conference on Natural Language Processing (Volume 1: Long Papers), volume 1, pp. 1321–1331,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 142, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 142, + 138 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "Wen-tau Yih, Matthew Richardson, Chris Meek, Ming-Wei Chang, and Jina Suh. The value of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "semantic parse labeling for knowledge base question answering. In Proceedings of the 54th Annual", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 166, + 507, + 181 + ], + "spans": [ + { + "bbox": [ + 114, + 166, + 507, + 181 + ], + "score": 1.0, + "content": "Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), volume 2, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 178, + 181, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 181, + 190 + ], + "score": 1.0, + "content": "201–206, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 504, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 211 + ], + "score": 1.0, + "content": "Yuyu Zhang, Hanjun Dai, Zornitsa Kozareva, Alexander J Smola, and Le Song. Variational reasoning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 208, + 367, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 367, + 220 + ], + "score": 1.0, + "content": "for question answering with knowledge graph. In AAAI, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 107, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 238, + 468, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 468, + 250 + ], + "score": 1.0, + "content": "natural language using reinforcement learning. arXiv preprint arXiv:1709.00103, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "page_idx": 12, + "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, + 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": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Wen-tau Yih, Ming-Wei Chang, Xiaodong He, and Jianfeng Gao. Semantic parsing via staged", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "query graph generation: Question answering with knowledge base. In Proceedings of the 53rd", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics and the 7th International Joint", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 113, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 507, + 128 + ], + "score": 1.0, + "content": "Conference on Natural Language Processing (Volume 1: Long Papers), volume 1, pp. 1321–1331,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 142, + 138 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 142, + 138 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 82, + 507, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 144, + 505, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 506, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 506, + 158 + ], + "score": 1.0, + "content": "Wen-tau Yih, Matthew Richardson, Chris Meek, Ming-Wei Chang, and Jina Suh. The value of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "semantic parse labeling for knowledge base question answering. In Proceedings of the 54th Annual", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 166, + 507, + 181 + ], + "spans": [ + { + "bbox": [ + 114, + 166, + 507, + 181 + ], + "score": 1.0, + "content": "Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), volume 2, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 178, + 181, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 181, + 190 + ], + "score": 1.0, + "content": "201–206, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 145, + 507, + 190 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 504, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 195, + 506, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 211 + ], + "score": 1.0, + "content": "Yuyu Zhang, Hanjun Dai, Zornitsa Kozareva, Alexander J Smola, and Le Song. Variational reasoning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 208, + 367, + 220 + ], + "spans": [ + { + "bbox": [ + 115, + 208, + 367, + 220 + ], + "score": 1.0, + "content": "for question answering with knowledge graph. In AAAI, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 195, + 506, + 220 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 226, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 107, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 238, + 468, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 468, + 250 + ], + "score": 1.0, + "content": "natural language using reinforcement learning. arXiv preprint arXiv:1709.00103, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 107, + 226, + 505, + 250 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 365, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 365, + 96 + ], + "score": 1.0, + "content": "A ADDITIONAL BACKGROUND AND EXTENSIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 109, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 109, + 507, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 507, + 122 + ], + "score": 1.0, + "content": "KBs, entities, and relations, and types. In the more general case, a KB consists of entities, relations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 192, + 133 + ], + "score": 1.0, + "content": "and types. Again use", + "type": "text" + }, + { + "bbox": [ + 192, + 123, + 199, + 131 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 121, + 294, + 133 + ], + "score": 1.0, + "content": "to denote an entity and", + "type": "text" + }, + { + "bbox": [ + 294, + 123, + 300, + 131 + ], + "score": 0.76, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 121, + 497, + 133 + ], + "score": 1.0, + "content": "to denote a relation. We also assume each entity", + "type": "text" + }, + { + "bbox": [ + 497, + 123, + 504, + 131 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 181, + 145 + ], + "score": 1.0, + "content": "has a type, written", + "type": "text" + }, + { + "bbox": [ + 181, + 132, + 212, + 143 + ], + "score": 0.79, + "content": "t y p e ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 131, + 245, + 145 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 245, + 132, + 259, + 142 + ], + "score": 0.89, + "content": "N _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 131, + 408, + 145 + ], + "score": 1.0, + "content": "denote the number of entities of type", + "type": "text" + }, + { + "bbox": [ + 409, + 133, + 415, + 141 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 131, + 467, + 145 + ], + "score": 1.0, + "content": ". Each entity", + "type": "text" + }, + { + "bbox": [ + 467, + 133, + 474, + 141 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "in type", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 113, + 153 + ], + "score": 0.7, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 141, + 191, + 156 + ], + "score": 1.0, + "content": "has a unique index", + "type": "text" + }, + { + "bbox": [ + 192, + 143, + 235, + 154 + ], + "score": 0.76, + "content": "i n d e x _ { \\tau } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 141, + 376, + 156 + ], + "score": 1.0, + "content": ", which is an integer between 1 and", + "type": "text" + }, + { + "bbox": [ + 377, + 143, + 390, + 154 + ], + "score": 0.91, + "content": "N _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 141, + 433, + 156 + ], + "score": 1.0, + "content": ". We write", + "type": "text" + }, + { + "bbox": [ + 434, + 144, + 450, + 155 + ], + "score": 0.89, + "content": "x _ { \\tau , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "for the entity", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 362, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 164, + 166 + ], + "score": 1.0, + "content": "that has index", + "type": "text" + }, + { + "bbox": [ + 164, + 154, + 169, + 163 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 154, + 200, + 166 + ], + "score": 1.0, + "content": "in type", + "type": "text" + }, + { + "bbox": [ + 200, + 156, + 207, + 163 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 154, + 221, + 166 + ], + "score": 1.0, + "content": ", or", + "type": "text" + }, + { + "bbox": [ + 221, + 155, + 231, + 164 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 154, + 362, + 166 + ], + "score": 1.0, + "content": "if the type is clear from context.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 170, + 504, + 204 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 165, + 184 + ], + "score": 1.0, + "content": "Every relation", + "type": "text" + }, + { + "bbox": [ + 166, + 173, + 172, + 180 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 169, + 245, + 184 + ], + "score": 1.0, + "content": "has a subject type", + "type": "text" + }, + { + "bbox": [ + 246, + 173, + 267, + 182 + ], + "score": 0.89, + "content": "\\tau _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 169, + 343, + 184 + ], + "score": 1.0, + "content": "and an object type", + "type": "text" + }, + { + "bbox": [ + 343, + 172, + 360, + 182 + ], + "score": 0.88, + "content": "\\tau _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 169, + 480, + 184 + ], + "score": 1.0, + "content": ", which constrain the types of", + "type": "text" + }, + { + "bbox": [ + 480, + 173, + 487, + 180 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 178, + 503, + 197 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 116, + 191 + ], + "score": 0.84, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 178, + 167, + 197 + ], + "score": 1.0, + "content": "for any pair", + "type": "text" + }, + { + "bbox": [ + 167, + 181, + 211, + 194 + ], + "score": 0.93, + "content": "( x , x ^ { \\prime } ) \\in r", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 178, + 243, + 197 + ], + "score": 1.0, + "content": ". Hence", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 249, + 191 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 178, + 371, + 197 + ], + "score": 1.0, + "content": "can be encoded as a subset of", + "type": "text" + }, + { + "bbox": [ + 372, + 181, + 503, + 195 + ], + "score": 0.92, + "content": "\\{ 1 , \\dots , N _ { \\tau _ { s u b j } } \\} \\times \\{ 1 , \\dots , N _ { \\tau _ { o b j } } \\}", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 413, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 413, + 205 + ], + "score": 1.0, + "content": "Relations with the same subject and object types are called type-compatible.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 484, + 222 + ], + "score": 1.0, + "content": "Our differentiable operations are based on typed weighted sets, where again each element", + "type": "text" + }, + { + "bbox": [ + 485, + 212, + 492, + 219 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 160, + 232 + ], + "score": 1.0, + "content": "weighted set", + "type": "text" + }, + { + "bbox": [ + 161, + 221, + 171, + 230 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 221, + 397, + 232 + ], + "score": 1.0, + "content": "is associated with a non-negative real number, written", + "type": "text" + }, + { + "bbox": [ + 397, + 220, + 441, + 232 + ], + "score": 0.93, + "content": "\\omega \\| x \\in X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 221, + 505, + 232 + ], + "score": 1.0, + "content": ", and we define", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 107, + 231, + 171, + 243 + ], + "score": 0.92, + "content": "\\omega \\bar { \\left\\| { \\boldsymbol { x } } \\in { \\boldsymbol { X } } \\right\\| } \\equiv 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 231, + 201, + 244 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 201, + 231, + 231, + 243 + ], + "score": 0.92, + "content": "x \\not \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 231, + 262, + 244 + ], + "score": 1.0, + "content": ". A set", + "type": "text" + }, + { + "bbox": [ + 262, + 232, + 272, + 241 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 231, + 318, + 244 + ], + "score": 1.0, + "content": "has a type", + "type": "text" + }, + { + "bbox": [ + 319, + 231, + 374, + 243 + ], + "score": 0.92, + "content": "t y p e ( X ) = \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 231, + 461, + 244 + ], + "score": 1.0, + "content": ", and all members of", + "type": "text" + }, + { + "bbox": [ + 461, + 232, + 470, + 241 + ], + "score": 0.75, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "must be", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 180, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 168, + 255 + ], + "score": 1.0, + "content": "entities of type", + "type": "text" + }, + { + "bbox": [ + 168, + 245, + 175, + 252 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 241, + 180, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 232, + 271 + ], + "score": 1.0, + "content": "We also assume every relation", + "type": "text" + }, + { + "bbox": [ + 233, + 262, + 239, + 269 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 258, + 388, + 271 + ], + "score": 1.0, + "content": "in a KB is associated with an entity", + "type": "text" + }, + { + "bbox": [ + 388, + 262, + 399, + 270 + ], + "score": 0.84, + "content": "x _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 258, + 505, + 271 + ], + "score": 1.0, + "content": ", and hence, an index and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 212, + 282 + ], + "score": 1.0, + "content": "a type. Sets of relations", + "type": "text" + }, + { + "bbox": [ + 212, + 271, + 221, + 280 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "are allowed only if all members are type-compatible. For example", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 401, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 225, + 293 + ], + "score": 0.58, + "content": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 280, + 401, + 294 + ], + "score": 1.0, + "content": "might be a set of type-compatible relations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 166, + 311 + ], + "score": 1.0, + "content": "A weighted set", + "type": "text" + }, + { + "bbox": [ + 166, + 298, + 177, + 308 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 296, + 206, + 311 + ], + "score": 1.0, + "content": "of type", + "type": "text" + }, + { + "bbox": [ + 207, + 300, + 214, + 308 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 296, + 362, + 311 + ], + "score": 1.0, + "content": "can be encoded as an entity-set vector", + "type": "text" + }, + { + "bbox": [ + 362, + 297, + 398, + 308 + ], + "score": 0.92, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { \\tau } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 296, + 442, + 311 + ], + "score": 1.0, + "content": ", where the", + "type": "text" + }, + { + "bbox": [ + 443, + 299, + 447, + 308 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "-th component", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 117, + 323 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 311, + 124, + 319 + ], + "score": 0.7, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 308, + 206, + 323 + ], + "score": 1.0, + "content": "is the weight of the", + "type": "text" + }, + { + "bbox": [ + 206, + 310, + 211, + 319 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 308, + 338, + 323 + ], + "score": 1.0, + "content": "-th entity of that type in the set", + "type": "text" + }, + { + "bbox": [ + 338, + 309, + 348, + 319 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 308, + 373, + 323 + ], + "score": 1.0, + "content": ": e.g.,", + "type": "text" + }, + { + "bbox": [ + 374, + 309, + 484, + 321 + ], + "score": 0.92, + "content": "\\mathbf { x } [ i n d e x _ { \\tau } ( x ) ] = { \\boldsymbol { \\omega } } [ x \\in X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 308, + 506, + 323 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 319, + 352, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 140, + 333 + ], + "score": 1.0, + "content": "also use", + "type": "text" + }, + { + "bbox": [ + 141, + 320, + 171, + 332 + ], + "score": 0.88, + "content": "t y p e ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 319, + 246, + 333 + ], + "score": 1.0, + "content": "to denote the type", + "type": "text" + }, + { + "bbox": [ + 246, + 322, + 253, + 330 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 319, + 341, + 333 + ], + "score": 1.0, + "content": "of the set encoded by", + "type": "text" + }, + { + "bbox": [ + 341, + 322, + 348, + 330 + ], + "score": 0.63, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 319, + 352, + 333 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 104, + 335, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 104, + 335, + 151, + 350 + ], + "score": 1.0, + "content": "A relation", + "type": "text" + }, + { + "bbox": [ + 151, + 339, + 157, + 347 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 335, + 233, + 350 + ], + "score": 1.0, + "content": "with subject type", + "type": "text" + }, + { + "bbox": [ + 234, + 339, + 244, + 348 + ], + "score": 0.85, + "content": "\\tau _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 335, + 312, + 350 + ], + "score": 1.0, + "content": "and object type", + "type": "text" + }, + { + "bbox": [ + 313, + 339, + 323, + 348 + ], + "score": 0.84, + "content": "\\tau _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 335, + 477, + 350 + ], + "score": 1.0, + "content": "can be encoded as a relation matrix", + "type": "text" + }, + { + "bbox": [ + 477, + 337, + 505, + 348 + ], + "score": 0.87, + "content": "{ \\mathbf { M } } _ { r } \\in { \\mathbf { \\Omega } }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 155, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 149, + 358 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { N _ { \\tau _ { 1 } } \\times N _ { \\tau _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 345, + 155, + 360 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 375, + 377 + ], + "score": 1.0, + "content": "Background on sparse matrices. A COO encoding consists of a", + "type": "text" + }, + { + "bbox": [ + 376, + 365, + 407, + 376 + ], + "score": 0.9, + "content": "N _ { r } \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 364, + 437, + 377 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 437, + 365, + 458, + 376 + ], + "score": 0.87, + "content": "\\mathbf { I n d } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "containing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 282, + 389 + ], + "score": 1.0, + "content": "pairs of entity indices, and a parallel vector", + "type": "text" + }, + { + "bbox": [ + 282, + 375, + 325, + 387 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { r } \\in \\mathbb { R } ^ { \\widetilde { N } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "containing the weights of the corresponding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 237, + 399 + ], + "score": 1.0, + "content": "entity pairs. In this encoding, if", + "type": "text" + }, + { + "bbox": [ + 238, + 387, + 258, + 399 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 387, + 287, + 399 + ], + "score": 1.0, + "content": "is row", + "type": "text" + }, + { + "bbox": [ + 287, + 388, + 294, + 397 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 387, + 346, + 399 + ], + "score": 1.0, + "content": "of Ind, then", + "type": "text" + }, + { + "bbox": [ + 347, + 387, + 415, + 399 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ] = \\mathbf { w } _ { r } [ k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 387, + 446, + 399 + ], + "score": 1.0, + "content": ", and if", + "type": "text" + }, + { + "bbox": [ + 446, + 387, + 467, + 399 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 398, + 251, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 145, + 410 + ], + "score": 1.0, + "content": "appear in", + "type": "text" + }, + { + "bbox": [ + 146, + 398, + 166, + 408 + ], + "score": 0.89, + "content": "\\mathbf { I n d } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 398, + 189, + 410 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 190, + 398, + 218, + 410 + ], + "score": 0.94, + "content": "\\mathbf { M } [ i , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 398, + 251, + 410 + ], + "score": 1.0, + "content": "is zero.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 473, + 426 + ], + "score": 1.0, + "content": "Extension to soft KBs. In the paper, we assume the non-zero weights in a relation matrix", + "type": "text" + }, + { + "bbox": [ + 473, + 415, + 489, + 425 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 426, + 504, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 426, + 504, + 437 + ], + "score": 1.0, + "content": "all equal to 1.0. This can be relaxed: if assertions in a KB are associated with confidences, then this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 217, + 448 + ], + "score": 1.0, + "content": "confidence can be stored in", + "type": "text" + }, + { + "bbox": [ + 218, + 437, + 233, + 447 + ], + "score": 0.88, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 436, + 505, + 448 + ], + "score": 1.0, + "content": ". In this case, the reified KB must be extended to encode the weight", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 284, + 460 + ], + "score": 1.0, + "content": "for a triple: we find it convenient to redefine", + "type": "text" + }, + { + "bbox": [ + 284, + 448, + 305, + 459 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "to hold that weight. In particular if the weight for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 457, + 293, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 135, + 471 + ], + "score": 1.0, + "content": "the the", + "type": "text" + }, + { + "bbox": [ + 136, + 459, + 141, + 468 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 457, + 177, + 471 + ], + "score": 1.0, + "content": "-th triple", + "type": "text" + }, + { + "bbox": [ + 177, + 459, + 218, + 471 + ], + "score": 0.94, + "content": "r _ { k } ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 457, + 229, + 471 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 229, + 460, + 241, + 469 + ], + "score": 0.85, + "content": "w _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 457, + 293, + 471 + ], + "score": 1.0, + "content": ", then we let", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 480, + 366, + 508 + ], + "lines": [ + { + "bbox": [ + 239, + 480, + 366, + 508 + ], + "spans": [ + { + "bbox": [ + 239, + 480, + 366, + 508 + ], + "score": 0.94, + "content": "\\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv { \\left\\{ \\begin{array} { l l } { w _ { \\ell } \\ \\mathrm { i f } \\ m = k _ { \\ell } } \\\\ { 0 \\ \\mathrm { e l s e } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "e37e7ae19e89b9fe7b9f8de705b8d88c9025c1d528dc117996127546a0c963c6.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 480, + 366, + 494.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 239, + 494.0, + 366, + 508.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 226, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 228, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 228, + 541 + ], + "score": 1.0, + "content": "B PROOF OF CLAIM 1", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 402, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 403, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 231, + 569 + ], + "score": 1.0, + "content": "Claim 1 The support of follow", + "type": "text" + }, + { + "bbox": [ + 231, + 555, + 253, + 567 + ], + "score": 0.87, + "content": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 554, + 386, + 569 + ], + "score": 1.0, + "content": "is exactly the set of R-neighbors(", + "type": "text" + }, + { + "bbox": [ + 386, + 555, + 399, + 567 + ], + "score": 0.39, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 554, + 403, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 254, + 593 + ], + "score": 1.0, + "content": "To better understand this claim, let", + "type": "text" + }, + { + "bbox": [ + 254, + 581, + 322, + 593 + ], + "score": 0.93, + "content": "\\mathbf { z } = f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 581, + 399, + 593 + ], + "score": 1.0, + "content": ". The claim states", + "type": "text" + }, + { + "bbox": [ + 400, + 583, + 406, + 591 + ], + "score": 0.3, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 581, + 495, + 593 + ], + "score": 1.0, + "content": "can approximate the", + "type": "text" + }, + { + "bbox": [ + 495, + 581, + 504, + 591 + ], + "score": 0.79, + "content": "R", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 234, + 605 + ], + "score": 1.0, + "content": "neighborhood of any hard sets", + "type": "text" + }, + { + "bbox": [ + 234, + 592, + 256, + 603 + ], + "score": 0.9, + "content": "R , X", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 591, + 459, + 605 + ], + "score": 1.0, + "content": "by setting to zero the appropriate components of", + "type": "text" + }, + { + "bbox": [ + 460, + 594, + 466, + 602 + ], + "score": 0.68, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 591, + 484, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 485, + 594, + 491, + 602 + ], + "score": 0.56, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ". It", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 174, + 616 + ], + "score": 1.0, + "content": "is also clear that", + "type": "text" + }, + { + "bbox": [ + 174, + 603, + 190, + 614 + ], + "score": 0.9, + "content": "\\mathbf { z } [ j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 602, + 482, + 616 + ], + "score": 1.0, + "content": "decreases when one decreases the weights in r of the relations that link", + "type": "text" + }, + { + "bbox": [ + 482, + 604, + 493, + 615 + ], + "score": 0.86, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 149, + 627 + ], + "score": 1.0, + "content": "entities in", + "type": "text" + }, + { + "bbox": [ + 149, + 614, + 159, + 624 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 613, + 218, + 627 + ], + "score": 1.0, + "content": ", and likewise,", + "type": "text" + }, + { + "bbox": [ + 218, + 614, + 234, + 626 + ], + "score": 0.89, + "content": "\\mathbf { z } [ j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 613, + 461, + 627 + ], + "score": 1.0, + "content": "decreases if one decreases the weights of the entities in", + "type": "text" + }, + { + "bbox": [ + 461, + 614, + 471, + 624 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "that are", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 624, + 504, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 144, + 636 + ], + "score": 1.0, + "content": "linked to", + "type": "text" + }, + { + "bbox": [ + 144, + 626, + 155, + 637 + ], + "score": 0.87, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 624, + 218, + 636 + ], + "score": 1.0, + "content": "via relations in", + "type": "text" + }, + { + "bbox": [ + 218, + 626, + 227, + 635 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 624, + 504, + 636 + ], + "score": 1.0, + "content": ", so there is a smooth, differentiable path to reach this approximation.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 641, + 504, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 255, + 654 + ], + "score": 1.0, + "content": "More formally, consider first a matrix", + "type": "text" + }, + { + "bbox": [ + 255, + 642, + 271, + 653 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 641, + 402, + 654 + ], + "score": 1.0, + "content": "encoding a single binary relation", + "type": "text" + }, + { + "bbox": [ + 402, + 644, + 408, + 651 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 641, + 505, + 654 + ], + "score": 1.0, + "content": ", and consider the vector", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 652, + 442, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 147, + 664 + ], + "score": 0.92, + "content": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } \\mathbf { M } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 652, + 224, + 665 + ], + "score": 1.0, + "content": ". As weighted sets,", + "type": "text" + }, + { + "bbox": [ + 225, + 653, + 234, + 662 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 652, + 252, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 253, + 654, + 258, + 662 + ], + "score": 0.79, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 652, + 434, + 665 + ], + "score": 1.0, + "content": "have non-negative entries, so clearly for all", + "type": "text" + }, + { + "bbox": [ + 434, + 653, + 438, + 662 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 652, + 442, + 665 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 674, + 325, + 688 + ], + "lines": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "spans": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "score": 0.56, + "content": "\\mathbf { x } ^ { \\prime } [ j ] \\neq 0 \\mathrm { ~ i f f ~ } \\exists j : \\mathbf { M } _ { r } [ i , j ] \\neq 0 \\land \\mathbf { x } [ i ] \\neq 0", + "type": "interline_equation", + "image_path": "790d2fa9b05e4f281adca5a49a2a88e84a05c2231fa20e06b0fd8a0cc52f8c62.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 146, + 711 + ], + "score": 1.0, + "content": "and so if", + "type": "text" + }, + { + "bbox": [ + 146, + 701, + 153, + 709 + ], + "score": 0.67, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 698, + 280, + 711 + ], + "score": 1.0, + "content": "is a one-hot vector for the set", + "type": "text" + }, + { + "bbox": [ + 281, + 699, + 296, + 711 + ], + "score": 0.9, + "content": "\\{ r \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 698, + 382, + 711 + ], + "score": 1.0, + "content": ", then the support of", + "type": "text" + }, + { + "bbox": [ + 382, + 699, + 431, + 710 + ], + "score": 0.36, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "is exactly the set", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 712, + 112, + 720 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 709, + 155, + 723 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 155, + 710, + 169, + 721 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 709, + 287, + 723 + ], + "score": 1.0, + "content": ". Finally note that the mixture", + "type": "text" + }, + { + "bbox": [ + 287, + 711, + 304, + 721 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 709, + 388, + 723 + ], + "score": 1.0, + "content": "has the property that", + "type": "text" + }, + { + "bbox": [ + 388, + 710, + 474, + 722 + ], + "score": 0.92, + "content": "{ \\bf M } _ { R } [ i ( e _ { 1 } ) , i ( e _ { 2 } ) ] > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "exactly", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 301, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 130, + 733 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 130, + 722, + 141, + 732 + ], + "score": 0.85, + "content": "e _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 190, + 733 + ], + "score": 1.0, + "content": "is related to", + "type": "text" + }, + { + "bbox": [ + 191, + 722, + 201, + 732 + ], + "score": 0.85, + "content": "e _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 720, + 271, + 733 + ], + "score": 1.0, + "content": "by some relation", + "type": "text" + }, + { + "bbox": [ + 271, + 721, + 297, + 731 + ], + "score": 0.9, + "content": "r \\in R", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 720, + 301, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 13, + "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, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 365, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 365, + 96 + ], + "score": 1.0, + "content": "A ADDITIONAL BACKGROUND AND EXTENSIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 109, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 109, + 507, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 109, + 507, + 122 + ], + "score": 1.0, + "content": "KBs, entities, and relations, and types. In the more general case, a KB consists of entities, relations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 192, + 133 + ], + "score": 1.0, + "content": "and types. Again use", + "type": "text" + }, + { + "bbox": [ + 192, + 123, + 199, + 131 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 121, + 294, + 133 + ], + "score": 1.0, + "content": "to denote an entity and", + "type": "text" + }, + { + "bbox": [ + 294, + 123, + 300, + 131 + ], + "score": 0.76, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 121, + 497, + 133 + ], + "score": 1.0, + "content": "to denote a relation. We also assume each entity", + "type": "text" + }, + { + "bbox": [ + 497, + 123, + 504, + 131 + ], + "score": 0.7, + "content": "x", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 181, + 145 + ], + "score": 1.0, + "content": "has a type, written", + "type": "text" + }, + { + "bbox": [ + 181, + 132, + 212, + 143 + ], + "score": 0.79, + "content": "t y p e ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 131, + 245, + 145 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 245, + 132, + 259, + 142 + ], + "score": 0.89, + "content": "N _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 131, + 408, + 145 + ], + "score": 1.0, + "content": "denote the number of entities of type", + "type": "text" + }, + { + "bbox": [ + 409, + 133, + 415, + 141 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 131, + 467, + 145 + ], + "score": 1.0, + "content": ". Each entity", + "type": "text" + }, + { + "bbox": [ + 467, + 133, + 474, + 141 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "in type", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 141, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 113, + 153 + ], + "score": 0.7, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 141, + 191, + 156 + ], + "score": 1.0, + "content": "has a unique index", + "type": "text" + }, + { + "bbox": [ + 192, + 143, + 235, + 154 + ], + "score": 0.76, + "content": "i n d e x _ { \\tau } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 141, + 376, + 156 + ], + "score": 1.0, + "content": ", which is an integer between 1 and", + "type": "text" + }, + { + "bbox": [ + 377, + 143, + 390, + 154 + ], + "score": 0.91, + "content": "N _ { \\tau }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 141, + 433, + 156 + ], + "score": 1.0, + "content": ". We write", + "type": "text" + }, + { + "bbox": [ + 434, + 144, + 450, + 155 + ], + "score": 0.89, + "content": "x _ { \\tau , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 141, + 505, + 156 + ], + "score": 1.0, + "content": "for the entity", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 154, + 362, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 164, + 166 + ], + "score": 1.0, + "content": "that has index", + "type": "text" + }, + { + "bbox": [ + 164, + 154, + 169, + 163 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 154, + 200, + 166 + ], + "score": 1.0, + "content": "in type", + "type": "text" + }, + { + "bbox": [ + 200, + 156, + 207, + 163 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 154, + 221, + 166 + ], + "score": 1.0, + "content": ", or", + "type": "text" + }, + { + "bbox": [ + 221, + 155, + 231, + 164 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 154, + 362, + 166 + ], + "score": 1.0, + "content": "if the type is clear from context.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 109, + 507, + 166 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 170, + 504, + 204 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 165, + 184 + ], + "score": 1.0, + "content": "Every relation", + "type": "text" + }, + { + "bbox": [ + 166, + 173, + 172, + 180 + ], + "score": 0.73, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 169, + 245, + 184 + ], + "score": 1.0, + "content": "has a subject type", + "type": "text" + }, + { + "bbox": [ + 246, + 173, + 267, + 182 + ], + "score": 0.89, + "content": "\\tau _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 169, + 343, + 184 + ], + "score": 1.0, + "content": "and an object type", + "type": "text" + }, + { + "bbox": [ + 343, + 172, + 360, + 182 + ], + "score": 0.88, + "content": "\\tau _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 169, + 480, + 184 + ], + "score": 1.0, + "content": ", which constrain the types of", + "type": "text" + }, + { + "bbox": [ + 480, + 173, + 487, + 180 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 178, + 503, + 197 + ], + "spans": [ + { + "bbox": [ + 107, + 182, + 116, + 191 + ], + "score": 0.84, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 178, + 167, + 197 + ], + "score": 1.0, + "content": "for any pair", + "type": "text" + }, + { + "bbox": [ + 167, + 181, + 211, + 194 + ], + "score": 0.93, + "content": "( x , x ^ { \\prime } ) \\in r", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 178, + 243, + 197 + ], + "score": 1.0, + "content": ". Hence", + "type": "text" + }, + { + "bbox": [ + 243, + 184, + 249, + 191 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 178, + 371, + 197 + ], + "score": 1.0, + "content": "can be encoded as a subset of", + "type": "text" + }, + { + "bbox": [ + 372, + 181, + 503, + 195 + ], + "score": 0.92, + "content": "\\{ 1 , \\dots , N _ { \\tau _ { s u b j } } \\} \\times \\{ 1 , \\dots , N _ { \\tau _ { o b j } } \\}", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 413, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 413, + 205 + ], + "score": 1.0, + "content": "Relations with the same subject and object types are called type-compatible.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 169, + 506, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 484, + 222 + ], + "score": 1.0, + "content": "Our differentiable operations are based on typed weighted sets, where again each element", + "type": "text" + }, + { + "bbox": [ + 485, + 212, + 492, + 219 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 160, + 232 + ], + "score": 1.0, + "content": "weighted set", + "type": "text" + }, + { + "bbox": [ + 161, + 221, + 171, + 230 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 221, + 397, + 232 + ], + "score": 1.0, + "content": "is associated with a non-negative real number, written", + "type": "text" + }, + { + "bbox": [ + 397, + 220, + 441, + 232 + ], + "score": 0.93, + "content": "\\omega \\| x \\in X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 221, + 505, + 232 + ], + "score": 1.0, + "content": ", and we define", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 107, + 231, + 171, + 243 + ], + "score": 0.92, + "content": "\\omega \\bar { \\left\\| { \\boldsymbol { x } } \\in { \\boldsymbol { X } } \\right\\| } \\equiv 0", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 231, + 201, + 244 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 201, + 231, + 231, + 243 + ], + "score": 0.92, + "content": "x \\not \\in X", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 231, + 262, + 244 + ], + "score": 1.0, + "content": ". A set", + "type": "text" + }, + { + "bbox": [ + 262, + 232, + 272, + 241 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 231, + 318, + 244 + ], + "score": 1.0, + "content": "has a type", + "type": "text" + }, + { + "bbox": [ + 319, + 231, + 374, + 243 + ], + "score": 0.92, + "content": "t y p e ( X ) = \\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 231, + 461, + 244 + ], + "score": 1.0, + "content": ", and all members of", + "type": "text" + }, + { + "bbox": [ + 461, + 232, + 470, + 241 + ], + "score": 0.75, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "must be", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 180, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 168, + 255 + ], + "score": 1.0, + "content": "entities of type", + "type": "text" + }, + { + "bbox": [ + 168, + 245, + 175, + 252 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 241, + 180, + 255 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 209, + 506, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 232, + 271 + ], + "score": 1.0, + "content": "We also assume every relation", + "type": "text" + }, + { + "bbox": [ + 233, + 262, + 239, + 269 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 258, + 388, + 271 + ], + "score": 1.0, + "content": "in a KB is associated with an entity", + "type": "text" + }, + { + "bbox": [ + 388, + 262, + 399, + 270 + ], + "score": 0.84, + "content": "x _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 258, + 505, + 271 + ], + "score": 1.0, + "content": ", and hence, an index and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 212, + 282 + ], + "score": 1.0, + "content": "a type. Sets of relations", + "type": "text" + }, + { + "bbox": [ + 212, + 271, + 221, + 280 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "are allowed only if all members are type-compatible. For example", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 401, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 225, + 293 + ], + "score": 0.58, + "content": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 280, + 401, + 294 + ], + "score": 1.0, + "content": "might be a set of type-compatible relations.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 258, + 505, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 166, + 311 + ], + "score": 1.0, + "content": "A weighted set", + "type": "text" + }, + { + "bbox": [ + 166, + 298, + 177, + 308 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 296, + 206, + 311 + ], + "score": 1.0, + "content": "of type", + "type": "text" + }, + { + "bbox": [ + 207, + 300, + 214, + 308 + ], + "score": 0.77, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 296, + 362, + 311 + ], + "score": 1.0, + "content": "can be encoded as an entity-set vector", + "type": "text" + }, + { + "bbox": [ + 362, + 297, + 398, + 308 + ], + "score": 0.92, + "content": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { \\tau } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 296, + 442, + 311 + ], + "score": 1.0, + "content": ", where the", + "type": "text" + }, + { + "bbox": [ + 443, + 299, + 447, + 308 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "-th component", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 117, + 323 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 311, + 124, + 319 + ], + "score": 0.7, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 308, + 206, + 323 + ], + "score": 1.0, + "content": "is the weight of the", + "type": "text" + }, + { + "bbox": [ + 206, + 310, + 211, + 319 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 308, + 338, + 323 + ], + "score": 1.0, + "content": "-th entity of that type in the set", + "type": "text" + }, + { + "bbox": [ + 338, + 309, + 348, + 319 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 308, + 373, + 323 + ], + "score": 1.0, + "content": ": e.g.,", + "type": "text" + }, + { + "bbox": [ + 374, + 309, + 484, + 321 + ], + "score": 0.92, + "content": "\\mathbf { x } [ i n d e x _ { \\tau } ( x ) ] = { \\boldsymbol { \\omega } } [ x \\in X ]", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 308, + 506, + 323 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 319, + 352, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 140, + 333 + ], + "score": 1.0, + "content": "also use", + "type": "text" + }, + { + "bbox": [ + 141, + 320, + 171, + 332 + ], + "score": 0.88, + "content": "t y p e ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 319, + 246, + 333 + ], + "score": 1.0, + "content": "to denote the type", + "type": "text" + }, + { + "bbox": [ + 246, + 322, + 253, + 330 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 319, + 341, + 333 + ], + "score": 1.0, + "content": "of the set encoded by", + "type": "text" + }, + { + "bbox": [ + 341, + 322, + 348, + 330 + ], + "score": 0.63, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 319, + 352, + 333 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 296, + 506, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 336, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 104, + 335, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 104, + 335, + 151, + 350 + ], + "score": 1.0, + "content": "A relation", + "type": "text" + }, + { + "bbox": [ + 151, + 339, + 157, + 347 + ], + "score": 0.74, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 335, + 233, + 350 + ], + "score": 1.0, + "content": "with subject type", + "type": "text" + }, + { + "bbox": [ + 234, + 339, + 244, + 348 + ], + "score": 0.85, + "content": "\\tau _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 335, + 312, + 350 + ], + "score": 1.0, + "content": "and object type", + "type": "text" + }, + { + "bbox": [ + 313, + 339, + 323, + 348 + ], + "score": 0.84, + "content": "\\tau _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 335, + 477, + 350 + ], + "score": 1.0, + "content": "can be encoded as a relation matrix", + "type": "text" + }, + { + "bbox": [ + 477, + 337, + 505, + 348 + ], + "score": 0.87, + "content": "{ \\mathbf { M } } _ { r } \\in { \\mathbf { \\Omega } }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 155, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 149, + 358 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { N _ { \\tau _ { 1 } } \\times N _ { \\tau _ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 345, + 155, + 360 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 335, + 505, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 375, + 377 + ], + "score": 1.0, + "content": "Background on sparse matrices. A COO encoding consists of a", + "type": "text" + }, + { + "bbox": [ + 376, + 365, + 407, + 376 + ], + "score": 0.9, + "content": "N _ { r } \\times 2", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 364, + 437, + 377 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 437, + 365, + 458, + 376 + ], + "score": 0.87, + "content": "\\mathbf { I n d } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "containing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 374, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 282, + 389 + ], + "score": 1.0, + "content": "pairs of entity indices, and a parallel vector", + "type": "text" + }, + { + "bbox": [ + 282, + 375, + 325, + 387 + ], + "score": 0.93, + "content": "\\mathbf { w } _ { r } \\in \\mathbb { R } ^ { \\widetilde { N } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 374, + 506, + 389 + ], + "score": 1.0, + "content": "containing the weights of the corresponding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 237, + 399 + ], + "score": 1.0, + "content": "entity pairs. In this encoding, if", + "type": "text" + }, + { + "bbox": [ + 238, + 387, + 258, + 399 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 387, + 287, + 399 + ], + "score": 1.0, + "content": "is row", + "type": "text" + }, + { + "bbox": [ + 287, + 388, + 294, + 397 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 387, + 346, + 399 + ], + "score": 1.0, + "content": "of Ind, then", + "type": "text" + }, + { + "bbox": [ + 347, + 387, + 415, + 399 + ], + "score": 0.93, + "content": "\\mathbf { M } _ { r } [ i , j ] = \\mathbf { w } _ { r } [ k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 387, + 446, + 399 + ], + "score": 1.0, + "content": ", and if", + "type": "text" + }, + { + "bbox": [ + 446, + 387, + 467, + 399 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "does not", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 398, + 251, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 145, + 410 + ], + "score": 1.0, + "content": "appear in", + "type": "text" + }, + { + "bbox": [ + 146, + 398, + 166, + 408 + ], + "score": 0.89, + "content": "\\mathbf { I n d } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 398, + 189, + 410 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 190, + 398, + 218, + 410 + ], + "score": 0.94, + "content": "\\mathbf { M } [ i , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 398, + 251, + 410 + ], + "score": 1.0, + "content": "is zero.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 364, + 506, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 473, + 426 + ], + "score": 1.0, + "content": "Extension to soft KBs. In the paper, we assume the non-zero weights in a relation matrix", + "type": "text" + }, + { + "bbox": [ + 473, + 415, + 489, + 425 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 426, + 504, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 426, + 504, + 437 + ], + "score": 1.0, + "content": "all equal to 1.0. This can be relaxed: if assertions in a KB are associated with confidences, then this", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 217, + 448 + ], + "score": 1.0, + "content": "confidence can be stored in", + "type": "text" + }, + { + "bbox": [ + 218, + 437, + 233, + 447 + ], + "score": 0.88, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 436, + 505, + 448 + ], + "score": 1.0, + "content": ". In this case, the reified KB must be extended to encode the weight", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 447, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 284, + 460 + ], + "score": 1.0, + "content": "for a triple: we find it convenient to redefine", + "type": "text" + }, + { + "bbox": [ + 284, + 448, + 305, + 459 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 447, + 505, + 460 + ], + "score": 1.0, + "content": "to hold that weight. In particular if the weight for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 457, + 293, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 135, + 471 + ], + "score": 1.0, + "content": "the the", + "type": "text" + }, + { + "bbox": [ + 136, + 459, + 141, + 468 + ], + "score": 0.69, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 457, + 177, + 471 + ], + "score": 1.0, + "content": "-th triple", + "type": "text" + }, + { + "bbox": [ + 177, + 459, + 218, + 471 + ], + "score": 0.94, + "content": "r _ { k } ( x _ { i } , x _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 457, + 229, + 471 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 229, + 460, + 241, + 469 + ], + "score": 0.85, + "content": "w _ { \\ell }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 457, + 293, + 471 + ], + "score": 1.0, + "content": ", then we let", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 414, + 505, + 471 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 480, + 366, + 508 + ], + "lines": [ + { + "bbox": [ + 239, + 480, + 366, + 508 + ], + "spans": [ + { + "bbox": [ + 239, + 480, + 366, + 508 + ], + "score": 0.94, + "content": "\\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv { \\left\\{ \\begin{array} { l l } { w _ { \\ell } \\ \\mathrm { i f } \\ m = k _ { \\ell } } \\\\ { 0 \\ \\mathrm { e l s e } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "e37e7ae19e89b9fe7b9f8de705b8d88c9025c1d528dc117996127546a0c963c6.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 480, + 366, + 494.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 239, + 494.0, + 366, + 508.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 226, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 228, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 228, + 541 + ], + "score": 1.0, + "content": "B PROOF OF CLAIM 1", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 402, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 403, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 231, + 569 + ], + "score": 1.0, + "content": "Claim 1 The support of follow", + "type": "text" + }, + { + "bbox": [ + 231, + 555, + 253, + 567 + ], + "score": 0.87, + "content": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 554, + 386, + 569 + ], + "score": 1.0, + "content": "is exactly the set of R-neighbors(", + "type": "text" + }, + { + "bbox": [ + 386, + 555, + 399, + 567 + ], + "score": 0.39, + "content": "X )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 554, + 403, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 554, + 403, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 504, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 254, + 593 + ], + "score": 1.0, + "content": "To better understand this claim, let", + "type": "text" + }, + { + "bbox": [ + 254, + 581, + 322, + 593 + ], + "score": 0.93, + "content": "\\mathbf { z } = f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 581, + 399, + 593 + ], + "score": 1.0, + "content": ". The claim states", + "type": "text" + }, + { + "bbox": [ + 400, + 583, + 406, + 591 + ], + "score": 0.3, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 581, + 495, + 593 + ], + "score": 1.0, + "content": "can approximate the", + "type": "text" + }, + { + "bbox": [ + 495, + 581, + 504, + 591 + ], + "score": 0.79, + "content": "R", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 234, + 605 + ], + "score": 1.0, + "content": "neighborhood of any hard sets", + "type": "text" + }, + { + "bbox": [ + 234, + 592, + 256, + 603 + ], + "score": 0.9, + "content": "R , X", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 591, + 459, + 605 + ], + "score": 1.0, + "content": "by setting to zero the appropriate components of", + "type": "text" + }, + { + "bbox": [ + 460, + 594, + 466, + 602 + ], + "score": 0.68, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 591, + 484, + 605 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 485, + 594, + 491, + 602 + ], + "score": 0.56, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 591, + 506, + 605 + ], + "score": 1.0, + "content": ". It", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 602, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 174, + 616 + ], + "score": 1.0, + "content": "is also clear that", + "type": "text" + }, + { + "bbox": [ + 174, + 603, + 190, + 614 + ], + "score": 0.9, + "content": "\\mathbf { z } [ j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 602, + 482, + 616 + ], + "score": 1.0, + "content": "decreases when one decreases the weights in r of the relations that link", + "type": "text" + }, + { + "bbox": [ + 482, + 604, + 493, + 615 + ], + "score": 0.86, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 602, + 506, + 616 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 149, + 627 + ], + "score": 1.0, + "content": "entities in", + "type": "text" + }, + { + "bbox": [ + 149, + 614, + 159, + 624 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 613, + 218, + 627 + ], + "score": 1.0, + "content": ", and likewise,", + "type": "text" + }, + { + "bbox": [ + 218, + 614, + 234, + 626 + ], + "score": 0.89, + "content": "\\mathbf { z } [ j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 613, + 461, + 627 + ], + "score": 1.0, + "content": "decreases if one decreases the weights of the entities in", + "type": "text" + }, + { + "bbox": [ + 461, + 614, + 471, + 624 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "that are", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 624, + 504, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 144, + 636 + ], + "score": 1.0, + "content": "linked to", + "type": "text" + }, + { + "bbox": [ + 144, + 626, + 155, + 637 + ], + "score": 0.87, + "content": "x _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 624, + 218, + 636 + ], + "score": 1.0, + "content": "via relations in", + "type": "text" + }, + { + "bbox": [ + 218, + 626, + 227, + 635 + ], + "score": 0.81, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 624, + 504, + 636 + ], + "score": 1.0, + "content": ", so there is a smooth, differentiable path to reach this approximation.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 581, + 506, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 641, + 504, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 255, + 654 + ], + "score": 1.0, + "content": "More formally, consider first a matrix", + "type": "text" + }, + { + "bbox": [ + 255, + 642, + 271, + 653 + ], + "score": 0.89, + "content": "{ { \\bf { M } } _ { r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 641, + 402, + 654 + ], + "score": 1.0, + "content": "encoding a single binary relation", + "type": "text" + }, + { + "bbox": [ + 402, + 644, + 408, + 651 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 641, + 505, + 654 + ], + "score": 1.0, + "content": ", and consider the vector", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 652, + 442, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 147, + 664 + ], + "score": 0.92, + "content": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } \\mathbf { M } _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 652, + 224, + 665 + ], + "score": 1.0, + "content": ". As weighted sets,", + "type": "text" + }, + { + "bbox": [ + 225, + 653, + 234, + 662 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 652, + 252, + 665 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 253, + 654, + 258, + 662 + ], + "score": 0.79, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 652, + 434, + 665 + ], + "score": 1.0, + "content": "have non-negative entries, so clearly for all", + "type": "text" + }, + { + "bbox": [ + 434, + 653, + 438, + 662 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 652, + 442, + 665 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 641, + 505, + 665 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 674, + 325, + 688 + ], + "lines": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "spans": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "score": 0.56, + "content": "\\mathbf { x } ^ { \\prime } [ j ] \\neq 0 \\mathrm { ~ i f f ~ } \\exists j : \\mathbf { M } _ { r } [ i , j ] \\neq 0 \\land \\mathbf { x } [ i ] \\neq 0", + "type": "interline_equation", + "image_path": "790d2fa9b05e4f281adca5a49a2a88e84a05c2231fa20e06b0fd8a0cc52f8c62.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 153, + 674, + 325, + 688 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 146, + 711 + ], + "score": 1.0, + "content": "and so if", + "type": "text" + }, + { + "bbox": [ + 146, + 701, + 153, + 709 + ], + "score": 0.67, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 698, + 280, + 711 + ], + "score": 1.0, + "content": "is a one-hot vector for the set", + "type": "text" + }, + { + "bbox": [ + 281, + 699, + 296, + 711 + ], + "score": 0.9, + "content": "\\{ r \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 698, + 382, + 711 + ], + "score": 1.0, + "content": ", then the support of", + "type": "text" + }, + { + "bbox": [ + 382, + 699, + 431, + 710 + ], + "score": 0.36, + "content": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "is exactly the set", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 712, + 112, + 720 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 709, + 155, + 723 + ], + "score": 1.0, + "content": "-neighbors", + "type": "text" + }, + { + "bbox": [ + 155, + 710, + 169, + 721 + ], + "score": 0.73, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 709, + 287, + 723 + ], + "score": 1.0, + "content": ". Finally note that the mixture", + "type": "text" + }, + { + "bbox": [ + 287, + 711, + 304, + 721 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 709, + 388, + 723 + ], + "score": 1.0, + "content": "has the property that", + "type": "text" + }, + { + "bbox": [ + 388, + 710, + 474, + 722 + ], + "score": 0.92, + "content": "{ \\bf M } _ { R } [ i ( e _ { 1 } ) , i ( e _ { 2 } ) ] > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "exactly", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 720, + 301, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 130, + 733 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 130, + 722, + 141, + 732 + ], + "score": 0.85, + "content": "e _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 720, + 190, + 733 + ], + "score": 1.0, + "content": "is related to", + "type": "text" + }, + { + "bbox": [ + 191, + 722, + 201, + 732 + ], + "score": 0.85, + "content": "e _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 720, + 271, + 733 + ], + "score": 1.0, + "content": "by some relation", + "type": "text" + }, + { + "bbox": [ + 271, + 721, + 297, + 731 + ], + "score": 0.9, + "content": "r \\in R", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 720, + 301, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "The major problem with naive mixing is that, in the absence of general sparse tensor contractions,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 355, + 129 + ], + "score": 1.0, + "content": "it is difficult to adapt to mini-batches—i.e., a setting in which", + "type": "text" + }, + { + "bbox": [ + 356, + 119, + 363, + 127 + ], + "score": 0.58, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 117, + 380, + 129 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 119, + 387, + 127 + ], + "score": 0.44, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 117, + 495, + 129 + ], + "score": 1.0, + "content": "are replaced with matrices", + "type": "text" + }, + { + "bbox": [ + 496, + 117, + 505, + 127 + ], + "score": 0.52, + "content": "\\mathbf { X }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 123, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 128, + 132, + 138 + ], + "score": 0.44, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 128, + 213, + 140 + ], + "score": 1.0, + "content": "with minibatch size", + "type": "text" + }, + { + "bbox": [ + 214, + 128, + 219, + 138 + ], + "score": 0.65, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 128, + 505, + 140 + ], + "score": 1.0, + "content": ". An alternative strategy is late mixing, which mixes the output of many", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 365, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 365, + 151 + ], + "score": 1.0, + "content": "single-relation following steps, rather than mixing the KB itself:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 154, + 377, + 189 + ], + "lines": [ + { + "bbox": [ + 232, + 154, + 377, + 189 + ], + "spans": [ + { + "bbox": [ + 232, + 154, + 377, + 189 + ], + "score": 0.95, + "content": "f o l l o w ( { \\mathbf { X } } , { \\mathbf { R } } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( { \\mathbf { R } } [ : , k ] \\cdot { \\mathbf { X } } { \\mathbf { M } } _ { k } )", + "type": "interline_equation", + "image_path": "5fd9da30082a9c8d474b329e2d980546fdd5067c5dbfa7bb2c53bcb814075e10.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 154, + 377, + 171.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 232, + 171.5, + 377, + 189.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 128, + 205 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 193, + 155, + 205 + ], + "score": 0.92, + "content": "\\mathbf { R } [ : , k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 193, + 174, + 205 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 175, + 194, + 182, + 203 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 193, + 239, + 205 + ], + "score": 1.0, + "content": "-th column of", + "type": "text" + }, + { + "bbox": [ + 239, + 194, + 247, + 203 + ], + "score": 0.57, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 193, + 412, + 205 + ], + "score": 1.0, + "content": ", is “broadcast” to element of the matrix", + "type": "text" + }, + { + "bbox": [ + 412, + 194, + 435, + 204 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 193, + 505, + 205 + ], + "score": 1.0, + "content": ". As noted in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 233, + 216 + ], + "score": 1.0, + "content": "body of the text, while there are", + "type": "text" + }, + { + "bbox": [ + 234, + 205, + 249, + 215 + ], + "score": 0.9, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 204, + 285, + 216 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 286, + 204, + 308, + 215 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 204, + 361, + 216 + ], + "score": 1.0, + "content": ", each of size", + "type": "text" + }, + { + "bbox": [ + 361, + 204, + 396, + 216 + ], + "score": 0.92, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 204, + 506, + 216 + ], + "score": 1.0, + "content": ", they need not all be stored", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 272, + 228 + ], + "score": 1.0, + "content": "at once, so the space complexity becomes", + "type": "text" + }, + { + "bbox": [ + 272, + 216, + 364, + 227 + ], + "score": 0.91, + "content": "O ( b N _ { E } + b N _ { R } + N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 215, + 488, + 228 + ], + "score": 1.0, + "content": "; however we must now sum up", + "type": "text" + }, + { + "bbox": [ + 488, + 216, + 504, + 227 + ], + "score": 0.87, + "content": "N _ { R }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 226, + 171, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 171, + 238 + ], + "score": 1.0, + "content": "dense matrices.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 105, + 242, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "The implementation of relation-set following for the reified KB can be straightforwardedly extended", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 254, + 168, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 168, + 265 + ], + "score": 1.0, + "content": "to a minibatch:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 262, + 389, + 279 + ], + "lines": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "spans": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "score": 0.92, + "content": "f o l l o w ( \\mathbf { X } , \\mathbf { R } ) = ( \\mathbf { X } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { R } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }", + "type": "interline_equation", + "image_path": "adf5729b59dbf1ae158cc89bfe0704d02036f5cf54735c05cd231229711d6b21.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 293, + 334, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 335, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 335, + 309 + ], + "score": 1.0, + "content": "D DISTRIBUTED MATRIX MULTIPLICATION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 192, + 329 + ], + "score": 1.0, + "content": "Matrix multiplication", + "type": "text" + }, + { + "bbox": [ + 193, + 317, + 209, + 327 + ], + "score": 0.34, + "content": "\\mathbf { x M }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 317, + 317, + 329 + ], + "score": 1.0, + "content": "was distributed as follows:", + "type": "text" + }, + { + "bbox": [ + 317, + 319, + 324, + 327 + ], + "score": 0.44, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 317, + 494, + 329 + ], + "score": 1.0, + "content": "can be split into a “horizontal stacking” of", + "type": "text" + }, + { + "bbox": [ + 494, + 320, + 504, + 327 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 507, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 231, + 341 + ], + "score": 1.0, + "content": "submatrices, which we write as", + "type": "text" + }, + { + "bbox": [ + 231, + 328, + 281, + 340 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { m } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 327, + 301, + 341 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 302, + 329, + 312, + 338 + ], + "score": 0.42, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 327, + 439, + 341 + ], + "score": 1.0, + "content": "can be similarly partitioned into", + "type": "text" + }, + { + "bbox": [ + 440, + 328, + 454, + 338 + ], + "score": 0.89, + "content": "m ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 327, + 507, + 341 + ], + "score": 1.0, + "content": "submatrices.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 339, + 219, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 219, + 351 + ], + "score": 1.0, + "content": "We then have the result that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 352, + 502, + 398 + ], + "lines": [ + { + "bbox": [ + 111, + 352, + 502, + 398 + ], + "spans": [ + { + "bbox": [ + 111, + 352, + 502, + 398 + ], + "score": 0.93, + "content": "\\mathbf { x M } = [ \\mathbf { x } _ { 1 } ; \\mathbf { x } _ { 2 } ; \\ldots ; \\mathbf { x } _ { m } ] \\left[ { \\begin{array} { c c c c } { \\mathbf { M } _ { 1 , 1 } } & { \\mathbf { M } _ { 1 , 2 } } & { \\ldots } & { \\mathbf { M } _ { 1 , m } } \\\\ { \\vdots } & { \\vdots } & { } & { \\vdots } \\\\ { \\mathbf { M } _ { m , 1 } } & { \\mathbf { M } _ { m , 2 } } & { \\ldots } & { \\mathbf { M } _ { m , m } } \\end{array} } \\right] = \\left[ ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { 1 } \\mathbf { M } _ { i , 1 } ) ; \\ldots ; ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { m } \\mathbf { M } _ { i , m } ) \\right]", + "type": "interline_equation", + "image_path": "7a710c684b53bfed47f68fa5155755cd9dffead3f8f8bcb45d57e9ca0943e93f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 111, + 352, + 502, + 367.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 111, + 367.3333333333333, + 502, + 382.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 111, + 382.66666666666663, + 502, + 397.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 281, + 414 + ], + "score": 1.0, + "content": "This can be computed without storing either", + "type": "text" + }, + { + "bbox": [ + 281, + 402, + 290, + 411 + ], + "score": 0.7, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 401, + 301, + 414 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 301, + 402, + 312, + 412 + ], + "score": 0.54, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "on a single machine, and mathematically applies", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "to both dense and sparse matrices. In our experiments we distibuted the matrices that define a reified", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 423, + 413, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 287, + 435 + ], + "score": 1.0, + "content": "KB “horizontally”, so that different triple ids", + "type": "text" + }, + { + "bbox": [ + 288, + 424, + 294, + 433 + ], + "score": 0.8, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 423, + 413, + 435 + ], + "score": 1.0, + "content": "are stored on different GPUs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 307, + 453 + ], + "score": 1.0, + "content": "Specifically, we shard the “triple index” dimension", + "type": "text" + }, + { + "bbox": [ + 307, + 441, + 322, + 451 + ], + "score": 0.9, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 439, + 369, + 453 + ], + "score": 1.0, + "content": "of matrices", + "type": "text" + }, + { + "bbox": [ + 369, + 441, + 395, + 452 + ], + "score": 0.85, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 439, + 398, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 399, + 441, + 420, + 452 + ], + "score": 0.87, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 439, + 437, + 453 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 437, + 441, + 460, + 452 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "in Eq. 4 to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 367, + 464 + ], + "score": 1.0, + "content": "perform a distributed relation-set following on the reified KB. Let", + "type": "text" + }, + { + "bbox": [ + 367, + 452, + 398, + 463 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { s u b j , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 451, + 426, + 464 + ], + "score": 1.0, + "content": "be the", + "type": "text" + }, + { + "bbox": [ + 426, + 452, + 432, + 461 + ], + "score": 0.73, + "content": "\\overrightarrow { \\imath } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "th shard of matrix", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 132, + 477 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 461, + 173, + 481 + ], + "score": 1.0, + "content": ", and thus", + "type": "text" + }, + { + "bbox": [ + 173, + 462, + 362, + 478 + ], + "score": 0.84, + "content": "\\mathbf { M } _ { s u b j } = [ \\mathbf { M } _ { s u b j , 1 } ^ { T } ; . . . ; \\mathbf { M } _ { s u b j , m } ^ { T } ] _ { . } ^ { T } \\in \\mathbb { R } ^ { N _ { T } \\times N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 461, + 366, + 481 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 367, + 464, + 389, + 477 + ], + "score": 0.81, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 461, + 408, + 481 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 464, + 429, + 476 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 461, + 507, + 481 + ], + "score": 1.0, + "content": "are represented in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "the similar way. A distributed relation-set following is computed as a combination of relation-set", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 486, + 273, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 273, + 498 + ], + "score": 1.0, + "content": "following results on all shards of the KB.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 500, + 474, + 598 + ], + "lines": [ + { + "bbox": [ + 134, + 500, + 474, + 598 + ], + "spans": [ + { + "bbox": [ + 134, + 500, + 474, + 598 + ], + "score": 0.94, + "content": "\\begin{array} { l } { f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = ( \\mathbf { x } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j } } \\\\ { \\quad \\quad = \\left( [ \\mathbf { x } \\mathbf { M } _ { s u b j , 1 } ^ { T } ; \\dots ; \\mathbf { x } \\mathbf { M } _ { s u b j , m } ^ { T } ] \\odot [ \\mathbf { r } \\mathbf { M } _ { r e l , 1 } ^ { T } ; \\dots ; \\mathbf { r } \\mathbf { M } _ { r e l , m } ^ { T } ] \\right) \\left[ \\begin{array} { c } { \\mathbf { M } _ { o b j , 1 } } \\\\ { \\vdots } \\\\ { \\mathbf { M } _ { o b j , m } } \\end{array} \\right] } \\\\ { \\quad \\quad = \\displaystyle \\sum _ { i = 1 } ^ { m } ( \\mathbf { x } \\mathbf { M } _ { s u b j , i } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l , i } ^ { T } ) \\mathbf { M } _ { o b j , i } } \\end{array}", + "type": "interline_equation", + "image_path": "0b5e59de4740a902b50e82441c19aa176665e564ed30a29bae3358f76c2e650b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 134, + 500, + 474, + 532.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 134, + 532.6666666666666, + 474, + 565.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 134, + 565.3333333333333, + 474, + 597.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 376, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 376, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 364, + 620 + ], + "score": 1.0, + "content": "This method can be easily extended to a mini-batch of examples", + "type": "text" + }, + { + "bbox": [ + 365, + 607, + 373, + 617 + ], + "score": 0.4, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 605, + 376, + 620 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 633, + 257, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 258, + 649 + ], + "score": 1.0, + "content": "E EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 506, + 715 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Reproducing experiments. To reproduce these experiments, first download and install the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "Google language package5. Many of the experiments in this paper can be reproduced us-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "ing scripts stored in the some subdirectory of the source directory language/nql/demos:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 691, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 705 + ], + "score": 1.0, + "content": "for example, the scalability experiments of Figure 1 can be performed using scripts in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 702, + 333, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 333, + 716 + ], + "score": 1.0, + "content": "language/nql/demos/gridworld_scaling/.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 721, + 377, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 378, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 378, + 734 + ], + "score": 1.0, + "content": "5https://github.com/google-research/language.git", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 81, + 434, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 435, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 435, + 95 + ], + "score": 1.0, + "content": "C MINIBATCHED COMPUTATIONS OF NAIVE AND LATE MIXING", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "The major problem with naive mixing is that, in the absence of general sparse tensor contractions,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 355, + 129 + ], + "score": 1.0, + "content": "it is difficult to adapt to mini-batches—i.e., a setting in which", + "type": "text" + }, + { + "bbox": [ + 356, + 119, + 363, + 127 + ], + "score": 0.58, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 117, + 380, + 129 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 119, + 387, + 127 + ], + "score": 0.44, + "content": "\\mathbf { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 117, + 495, + 129 + ], + "score": 1.0, + "content": "are replaced with matrices", + "type": "text" + }, + { + "bbox": [ + 496, + 117, + 505, + 127 + ], + "score": 0.52, + "content": "\\mathbf { X }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 123, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 128, + 132, + 138 + ], + "score": 0.44, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 128, + 213, + 140 + ], + "score": 1.0, + "content": "with minibatch size", + "type": "text" + }, + { + "bbox": [ + 214, + 128, + 219, + 138 + ], + "score": 0.65, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 128, + 505, + 140 + ], + "score": 1.0, + "content": ". An alternative strategy is late mixing, which mixes the output of many", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 139, + 365, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 365, + 151 + ], + "score": 1.0, + "content": "single-relation following steps, rather than mixing the KB itself:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 105, + 506, + 151 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 154, + 377, + 189 + ], + "lines": [ + { + "bbox": [ + 232, + 154, + 377, + 189 + ], + "spans": [ + { + "bbox": [ + 232, + 154, + 377, + 189 + ], + "score": 0.95, + "content": "f o l l o w ( { \\mathbf { X } } , { \\mathbf { R } } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( { \\mathbf { R } } [ : , k ] \\cdot { \\mathbf { X } } { \\mathbf { M } } _ { k } )", + "type": "interline_equation", + "image_path": "5fd9da30082a9c8d474b329e2d980546fdd5067c5dbfa7bb2c53bcb814075e10.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 154, + 377, + 171.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 232, + 171.5, + 377, + 189.0 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 128, + 205 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 129, + 193, + 155, + 205 + ], + "score": 0.92, + "content": "\\mathbf { R } [ : , k ]", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 193, + 174, + 205 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 175, + 194, + 182, + 203 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 193, + 239, + 205 + ], + "score": 1.0, + "content": "-th column of", + "type": "text" + }, + { + "bbox": [ + 239, + 194, + 247, + 203 + ], + "score": 0.57, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 193, + 412, + 205 + ], + "score": 1.0, + "content": ", is “broadcast” to element of the matrix", + "type": "text" + }, + { + "bbox": [ + 412, + 194, + 435, + 204 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 193, + 505, + 205 + ], + "score": 1.0, + "content": ". As noted in the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 204, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 233, + 216 + ], + "score": 1.0, + "content": "body of the text, while there are", + "type": "text" + }, + { + "bbox": [ + 234, + 205, + 249, + 215 + ], + "score": 0.9, + "content": "N _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 204, + 285, + 216 + ], + "score": 1.0, + "content": "matrices", + "type": "text" + }, + { + "bbox": [ + 286, + 204, + 308, + 215 + ], + "score": 0.9, + "content": "\\mathbf { X M } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 204, + 361, + 216 + ], + "score": 1.0, + "content": ", each of size", + "type": "text" + }, + { + "bbox": [ + 361, + 204, + 396, + 216 + ], + "score": 0.92, + "content": "O ( b N _ { E } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 204, + 506, + 216 + ], + "score": 1.0, + "content": ", they need not all be stored", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 215, + 504, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 272, + 228 + ], + "score": 1.0, + "content": "at once, so the space complexity becomes", + "type": "text" + }, + { + "bbox": [ + 272, + 216, + 364, + 227 + ], + "score": 0.91, + "content": "O ( b N _ { E } + b N _ { R } + N _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 215, + 488, + 228 + ], + "score": 1.0, + "content": "; however we must now sum up", + "type": "text" + }, + { + "bbox": [ + 488, + 216, + 504, + 227 + ], + "score": 0.87, + "content": "N _ { R }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 226, + 171, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 171, + 238 + ], + "score": 1.0, + "content": "dense matrices.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 193, + 506, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 242, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "The implementation of relation-set following for the reified KB can be straightforwardedly extended", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 254, + 168, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 168, + 265 + ], + "score": 1.0, + "content": "to a minibatch:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 242, + 505, + 265 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 262, + 389, + 279 + ], + "lines": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "spans": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "score": 0.92, + "content": "f o l l o w ( \\mathbf { X } , \\mathbf { R } ) = ( \\mathbf { X } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { R } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }", + "type": "interline_equation", + "image_path": "adf5729b59dbf1ae158cc89bfe0704d02036f5cf54735c05cd231229711d6b21.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 219, + 262, + 389, + 279 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 293, + 334, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 335, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 335, + 309 + ], + "score": 1.0, + "content": "D DISTRIBUTED MATRIX MULTIPLICATION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 504, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 192, + 329 + ], + "score": 1.0, + "content": "Matrix multiplication", + "type": "text" + }, + { + "bbox": [ + 193, + 317, + 209, + 327 + ], + "score": 0.34, + "content": "\\mathbf { x M }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 317, + 317, + 329 + ], + "score": 1.0, + "content": "was distributed as follows:", + "type": "text" + }, + { + "bbox": [ + 317, + 319, + 324, + 327 + ], + "score": 0.44, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 317, + 494, + 329 + ], + "score": 1.0, + "content": "can be split into a “horizontal stacking” of", + "type": "text" + }, + { + "bbox": [ + 494, + 320, + 504, + 327 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 327, + 507, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 231, + 341 + ], + "score": 1.0, + "content": "submatrices, which we write as", + "type": "text" + }, + { + "bbox": [ + 231, + 328, + 281, + 340 + ], + "score": 0.93, + "content": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { m } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 327, + 301, + 341 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 302, + 329, + 312, + 338 + ], + "score": 0.42, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 327, + 439, + 341 + ], + "score": 1.0, + "content": "can be similarly partitioned into", + "type": "text" + }, + { + "bbox": [ + 440, + 328, + 454, + 338 + ], + "score": 0.89, + "content": "m ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 327, + 507, + 341 + ], + "score": 1.0, + "content": "submatrices.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 339, + 219, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 219, + 351 + ], + "score": 1.0, + "content": "We then have the result that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 317, + 507, + 351 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 352, + 502, + 398 + ], + "lines": [ + { + "bbox": [ + 111, + 352, + 502, + 398 + ], + "spans": [ + { + "bbox": [ + 111, + 352, + 502, + 398 + ], + "score": 0.93, + "content": "\\mathbf { x M } = [ \\mathbf { x } _ { 1 } ; \\mathbf { x } _ { 2 } ; \\ldots ; \\mathbf { x } _ { m } ] \\left[ { \\begin{array} { c c c c } { \\mathbf { M } _ { 1 , 1 } } & { \\mathbf { M } _ { 1 , 2 } } & { \\ldots } & { \\mathbf { M } _ { 1 , m } } \\\\ { \\vdots } & { \\vdots } & { } & { \\vdots } \\\\ { \\mathbf { M } _ { m , 1 } } & { \\mathbf { M } _ { m , 2 } } & { \\ldots } & { \\mathbf { M } _ { m , m } } \\end{array} } \\right] = \\left[ ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { 1 } \\mathbf { M } _ { i , 1 } ) ; \\ldots ; ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { m } \\mathbf { M } _ { i , m } ) \\right]", + "type": "interline_equation", + "image_path": "7a710c684b53bfed47f68fa5155755cd9dffead3f8f8bcb45d57e9ca0943e93f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 111, + 352, + 502, + 367.3333333333333 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 111, + 367.3333333333333, + 502, + 382.66666666666663 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 111, + 382.66666666666663, + 502, + 397.99999999999994 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 504, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 281, + 414 + ], + "score": 1.0, + "content": "This can be computed without storing either", + "type": "text" + }, + { + "bbox": [ + 281, + 402, + 290, + 411 + ], + "score": 0.7, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 401, + 301, + 414 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 301, + 402, + 312, + 412 + ], + "score": 0.54, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "on a single machine, and mathematically applies", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "to both dense and sparse matrices. In our experiments we distibuted the matrices that define a reified", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 423, + 413, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 287, + 435 + ], + "score": 1.0, + "content": "KB “horizontally”, so that different triple ids", + "type": "text" + }, + { + "bbox": [ + 288, + 424, + 294, + 433 + ], + "score": 0.8, + "content": "\\ell", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 423, + 413, + 435 + ], + "score": 1.0, + "content": "are stored on different GPUs.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 401, + 506, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 307, + 453 + ], + "score": 1.0, + "content": "Specifically, we shard the “triple index” dimension", + "type": "text" + }, + { + "bbox": [ + 307, + 441, + 322, + 451 + ], + "score": 0.9, + "content": "N _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 439, + 369, + 453 + ], + "score": 1.0, + "content": "of matrices", + "type": "text" + }, + { + "bbox": [ + 369, + 441, + 395, + 452 + ], + "score": 0.85, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 439, + 398, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 399, + 441, + 420, + 452 + ], + "score": 0.87, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 439, + 437, + 453 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 437, + 441, + 460, + 452 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "in Eq. 4 to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 367, + 464 + ], + "score": 1.0, + "content": "perform a distributed relation-set following on the reified KB. Let", + "type": "text" + }, + { + "bbox": [ + 367, + 452, + 398, + 463 + ], + "score": 0.89, + "content": "\\mathbf { M } _ { s u b j , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 451, + 426, + 464 + ], + "score": 1.0, + "content": "be the", + "type": "text" + }, + { + "bbox": [ + 426, + 452, + 432, + 461 + ], + "score": 0.73, + "content": "\\overrightarrow { \\imath } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "th shard of matrix", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 507, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 132, + 477 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { s u b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 461, + 173, + 481 + ], + "score": 1.0, + "content": ", and thus", + "type": "text" + }, + { + "bbox": [ + 173, + 462, + 362, + 478 + ], + "score": 0.84, + "content": "\\mathbf { M } _ { s u b j } = [ \\mathbf { M } _ { s u b j , 1 } ^ { T } ; . . . ; \\mathbf { M } _ { s u b j , m } ^ { T } ] _ { . } ^ { T } \\in \\mathbb { R } ^ { N _ { T } \\times N _ { E } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 461, + 366, + 481 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 367, + 464, + 389, + 477 + ], + "score": 0.81, + "content": "\\mathbf { M } _ { o b j }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 461, + 408, + 481 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 464, + 429, + 476 + ], + "score": 0.9, + "content": "{ { \\bf { M } } _ { r e l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 461, + 507, + 481 + ], + "score": 1.0, + "content": "are represented in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "the similar way. A distributed relation-set following is computed as a combination of relation-set", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 486, + 273, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 273, + 498 + ], + "score": 1.0, + "content": "following results on all shards of the KB.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 439, + 507, + 498 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 500, + 474, + 598 + ], + "lines": [ + { + "bbox": [ + 134, + 500, + 474, + 598 + ], + "spans": [ + { + "bbox": [ + 134, + 500, + 474, + 598 + ], + "score": 0.94, + "content": "\\begin{array} { l } { f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = ( \\mathbf { x } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j } } \\\\ { \\quad \\quad = \\left( [ \\mathbf { x } \\mathbf { M } _ { s u b j , 1 } ^ { T } ; \\dots ; \\mathbf { x } \\mathbf { M } _ { s u b j , m } ^ { T } ] \\odot [ \\mathbf { r } \\mathbf { M } _ { r e l , 1 } ^ { T } ; \\dots ; \\mathbf { r } \\mathbf { M } _ { r e l , m } ^ { T } ] \\right) \\left[ \\begin{array} { c } { \\mathbf { M } _ { o b j , 1 } } \\\\ { \\vdots } \\\\ { \\mathbf { M } _ { o b j , m } } \\end{array} \\right] } \\\\ { \\quad \\quad = \\displaystyle \\sum _ { i = 1 } ^ { m } ( \\mathbf { x } \\mathbf { M } _ { s u b j , i } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l , i } ^ { T } ) \\mathbf { M } _ { o b j , i } } \\end{array}", + "type": "interline_equation", + "image_path": "0b5e59de4740a902b50e82441c19aa176665e564ed30a29bae3358f76c2e650b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 134, + 500, + 474, + 532.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 134, + 532.6666666666666, + 474, + 565.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 134, + 565.3333333333333, + 474, + 597.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 376, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 376, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 364, + 620 + ], + "score": 1.0, + "content": "This method can be easily extended to a mini-batch of examples", + "type": "text" + }, + { + "bbox": [ + 365, + 607, + 373, + 617 + ], + "score": 0.4, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 605, + 376, + 620 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 605, + 376, + 620 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 633, + 257, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 258, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 258, + 649 + ], + "score": 1.0, + "content": "E EXPERIMENTAL DETAILS", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 658, + 506, + 715 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Reproducing experiments. To reproduce these experiments, first download and install the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "Google language package5. Many of the experiments in this paper can be reproduced us-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 694 + ], + "score": 1.0, + "content": "ing scripts stored in the some subdirectory of the source directory language/nql/demos:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 691, + 506, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 705 + ], + "score": 1.0, + "content": "for example, the scalability experiments of Figure 1 can be performed using scripts in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 702, + 333, + 716 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 333, + 716 + ], + "score": 1.0, + "content": "language/nql/demos/gridworld_scaling/.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 659, + 507, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 353, + 96 + ], + "score": 1.0, + "content": "Grid experiments. In the grid experiments, the entity vector", + "type": "text" + }, + { + "bbox": [ + 354, + 85, + 361, + 92 + ], + "score": 0.42, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "is a randomly-chosen singleton set,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "and the relation vector r weights relations roughly uniformly—more specifically, each relation has", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 136, + 117 + ], + "score": 1.0, + "content": "weight", + "type": "text" + }, + { + "bbox": [ + 136, + 105, + 153, + 115 + ], + "score": 0.8, + "content": "1 { + } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 104, + 180, + 117 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 181, + 106, + 186, + 114 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "is a drawn uniformly at random between 0 and 0.001.6 We vary the number of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 195, + 128 + ], + "score": 1.0, + "content": "relations by inventing", + "type": "text" + }, + { + "bbox": [ + 195, + 117, + 205, + 126 + ], + "score": 0.64, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "new relation names and assigning existing grid edges to each new relation.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 421, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 291, + 141 + ], + "score": 1.0, + "content": "These experiments were conducted on a Titan", + "type": "text" + }, + { + "bbox": [ + 291, + 127, + 305, + 138 + ], + "score": 0.28, + "content": "\\mathrm { X p }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 125, + 421, + 141 + ], + "score": 1.0, + "content": "GPU with 12Gb of memory.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "For key-value networks, the key is the concatenation of a relation and a subject entity, and the value", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "is the object entity. We considered only the run-time for queries on an untrained randomly-initialized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "network (since run-time performance on a trained network would be the same); however, it should be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "noted that considerable time that might be needed to train the key-value memory to approximate the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "KB. (In fact, it is not obvious under what conditions a KB can be approximated well by the key-value", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 149, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 149, + 211 + ], + "score": 1.0, + "content": "memory.)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 503, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "We do not show results on the grid task for smaller minibatch sizes, but both reified and late mixing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 315, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 145, + 238 + ], + "score": 1.0, + "content": "are about", + "type": "text" + }, + { + "bbox": [ + 146, + 227, + 162, + 236 + ], + "score": 0.38, + "content": "4 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 226, + 212, + 238 + ], + "score": 1.0, + "content": "slower with", + "type": "text" + }, + { + "bbox": [ + 212, + 226, + 236, + 236 + ], + "score": 0.89, + "content": "b = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 226, + 277, + 238 + ], + "score": 1.0, + "content": "than with", + "type": "text" + }, + { + "bbox": [ + 277, + 226, + 311, + 236 + ], + "score": 0.89, + "content": "b = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 226, + 315, + 238 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "WebQuestionsSP experiments. For efficiency, on this problem we exploit the type structure of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "problem (see Appendix A). Our model uses two types of nodes, CVT and entity nodes. The model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "also uses three types of relations: relations mapping entities to entities, relations mapping entities to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 360, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 360, + 288 + ], + "score": 1.0, + "content": "CVT nodes; and relations mapping CVT nodes to entity nodes.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 504, + 304 + ], + "score": 1.0, + "content": "MetaQA experiments. An example of a 2-hop question in MetaQA could be “Who co-starred with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Robert Downey Jr. in their movies?”, and the answer would be a set of actor entities, e.g., “Chris", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "Hemsworth”, “Thomas Stanley”, etc. Triples in the knowledge base are represented as (subject,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 1.0, + "content": "relation, object) triples, e.g., (“Robert Downey Jr.”, “act_in”, “Avengers: Endgame”), (“Avengers:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 477, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 477, + 349 + ], + "score": 1.0, + "content": "Endgame”, “stars”, “Thomas Stanley”), etc. The quoted strings here all indicate KB entities.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "We also observed that in the MetaQA 2-hop and 3-hop questions, the questions often exclude the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "seed entities (e.g., “other movies with the same director as Pulp Fiction”). This can be modeled by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 376, + 497, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 411, + 388 + ], + "score": 1.0, + "content": "masking out seed entities from the predictions after the second hop (ReifKB", + "type": "text" + }, + { + "bbox": [ + 412, + 376, + 420, + 385 + ], + "score": 0.68, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 376, + 497, + 388 + ], + "score": 1.0, + "content": "mask in the table).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "table", + "bbox": [ + 194, + 424, + 419, + 483 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 392, + 503, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "score": 1.0, + "content": "Timing on MetaQA and other natural problems. The raw data for the bubble plot of Table 5 is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 137, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 137, + 416 + ], + "score": 1.0, + "content": "below.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "table_body", + "bbox": [ + 194, + 424, + 419, + 483 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 424, + 419, + 483 + ], + "spans": [ + { + "bbox": [ + 194, + 424, + 419, + 483 + ], + "score": 0.976, + "html": "
Time (seconds)Accuracy (hits@1)Method
72.679.7ReifKB
189.810.1KV-mem
28.977.2GRAFT-Net
1131.091.4PullNet
", + "type": "table", + "image_path": "26afe5533113bd17da255f42714bc55be0ea3cf57ffd5b77200921796a37e0d4.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 424, + 419, + 438.75 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 194, + 438.75, + 419, + 453.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 194, + 453.5, + 419, + 468.25 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 468.25, + 419, + 483.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 105, + 487, + 396, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 485, + 397, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 397, + 501 + ], + "score": 1.0, + "content": "Discussion of the KB completion model. The KB completion model is", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 511, + 466, + 525 + ], + "lines": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "spans": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "score": 0.72, + "content": "t = 1 , \\dots , T \\colon \\ \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\ \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "99fea0cb2f46b12e261d245e1ed9b28bc781b4c5692f155c4ee54c39339175ba.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 302, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 303, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 303, + 551 + ], + "score": 1.0, + "content": "It may not be immediately obvious why we used", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 560, + 365, + 576 + ], + "lines": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "spans": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "59233240114df4037089620f17c83d4b131874be5f56444d1f775551db5f85a7.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 195, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 195, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 195, + 601 + ], + "score": 1.0, + "content": "instead of the simpler", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 606, + 349, + 622 + ], + "lines": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "spans": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )", + "type": "interline_equation", + "image_path": "e8cddb7f9993360fa8ca5ebde7b42f398cf7beb225c6f4d0dda47838dba58fa5.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 503, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 493, + 646 + ], + "score": 1.0, + "content": "In the main text, we say that this “gives the model access to outputs of all chains of length less than", + "type": "text" + }, + { + "bbox": [ + 494, + 635, + 503, + 645 + ], + "score": 0.78, + "content": "t ^ { \\ast }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "This statement is probably easiest to understand by considering a concete example. Let us simplify", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 358, + 670 + ], + "score": 1.0, + "content": "notation slightly by dropping the subscripts and writing follow", + "type": "text" + }, + { + "bbox": [ + 359, + 656, + 398, + 669 + ], + "score": 0.86, + "content": "( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 655, + 410, + 670 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 410, + 656, + 447, + 668 + ], + "score": 0.92, + "content": "f ^ { t } ( \\mathbf { \\bar { x } } ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 655, + 506, + 670 + ], + "score": 1.0, + "content": ". Now expand", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 174, + 680 + ], + "score": 1.0, + "content": "the definition of", + "type": "text" + }, + { + "bbox": [ + 175, + 667, + 185, + 677 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 666, + 291, + 680 + ], + "score": 1.0, + "content": "for a few small values of", + "type": "text" + }, + { + "bbox": [ + 291, + 669, + 296, + 677 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 666, + 506, + 680 + ], + "score": 1.0, + "content": ", using the linearity of the definition of relation-set", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "6If the relation weights do not vary from trial to trial, some versions of Tensorflow will optimize computation", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 712, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 712, + 255, + 722 + ], + "score": 1.0, + "content": "by precomputing and caching the matrix", + "type": "text" + }, + { + "bbox": [ + 255, + 712, + 271, + 721 + ], + "score": 0.83, + "content": "\\mathbf { M } _ { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 712, + 506, + 722 + ], + "score": 1.0, + "content": "from Eq. 1, which speeds up the naive method considerably. Of", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 348, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 348, + 733 + ], + "score": 1.0, + "content": "course, this optimization is impossible when learning relation sets.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 353, + 96 + ], + "score": 1.0, + "content": "Grid experiments. In the grid experiments, the entity vector", + "type": "text" + }, + { + "bbox": [ + 354, + 85, + 361, + 92 + ], + "score": 0.42, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "is a randomly-chosen singleton set,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "and the relation vector r weights relations roughly uniformly—more specifically, each relation has", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 136, + 117 + ], + "score": 1.0, + "content": "weight", + "type": "text" + }, + { + "bbox": [ + 136, + 105, + 153, + 115 + ], + "score": 0.8, + "content": "1 { + } \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 104, + 180, + 117 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 181, + 106, + 186, + 114 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "is a drawn uniformly at random between 0 and 0.001.6 We vary the number of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 195, + 128 + ], + "score": 1.0, + "content": "relations by inventing", + "type": "text" + }, + { + "bbox": [ + 195, + 117, + 205, + 126 + ], + "score": 0.64, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "new relation names and assigning existing grid edges to each new relation.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 421, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 291, + 141 + ], + "score": 1.0, + "content": "These experiments were conducted on a Titan", + "type": "text" + }, + { + "bbox": [ + 291, + 127, + 305, + 138 + ], + "score": 0.28, + "content": "\\mathrm { X p }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 125, + 421, + 141 + ], + "score": 1.0, + "content": "GPU with 12Gb of memory.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 141 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "For key-value networks, the key is the concatenation of a relation and a subject entity, and the value", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "is the object entity. We considered only the run-time for queries on an untrained randomly-initialized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 177 + ], + "score": 1.0, + "content": "network (since run-time performance on a trained network would be the same); however, it should be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "noted that considerable time that might be needed to train the key-value memory to approximate the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "KB. (In fact, it is not obvious under what conditions a KB can be approximated well by the key-value", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 149, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 149, + 211 + ], + "score": 1.0, + "content": "memory.)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 143, + 505, + 211 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 503, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "We do not show results on the grid task for smaller minibatch sizes, but both reified and late mixing", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 315, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 145, + 238 + ], + "score": 1.0, + "content": "are about", + "type": "text" + }, + { + "bbox": [ + 146, + 227, + 162, + 236 + ], + "score": 0.38, + "content": "4 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 226, + 212, + 238 + ], + "score": 1.0, + "content": "slower with", + "type": "text" + }, + { + "bbox": [ + 212, + 226, + 236, + 236 + ], + "score": 0.89, + "content": "b = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 226, + 277, + 238 + ], + "score": 1.0, + "content": "than with", + "type": "text" + }, + { + "bbox": [ + 277, + 226, + 311, + 236 + ], + "score": 0.89, + "content": "b = 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 226, + 315, + 238 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 213, + 505, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "WebQuestionsSP experiments. For efficiency, on this problem we exploit the type structure of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 267 + ], + "score": 1.0, + "content": "problem (see Appendix A). Our model uses two types of nodes, CVT and entity nodes. The model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "also uses three types of relations: relations mapping entities to entities, relations mapping entities to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 360, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 360, + 288 + ], + "score": 1.0, + "content": "CVT nodes; and relations mapping CVT nodes to entity nodes.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 243, + 506, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 504, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 504, + 304 + ], + "score": 1.0, + "content": "MetaQA experiments. An example of a 2-hop question in MetaQA could be “Who co-starred with", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Robert Downey Jr. in their movies?”, and the answer would be a set of actor entities, e.g., “Chris", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "Hemsworth”, “Thomas Stanley”, etc. Triples in the knowledge base are represented as (subject,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 1.0, + "content": "relation, object) triples, e.g., (“Robert Downey Jr.”, “act_in”, “Avengers: Endgame”), (“Avengers:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 336, + 477, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 477, + 349 + ], + "score": 1.0, + "content": "Endgame”, “stars”, “Thomas Stanley”), etc. The quoted strings here all indicate KB entities.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 293, + 507, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "We also observed that in the MetaQA 2-hop and 3-hop questions, the questions often exclude the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 378 + ], + "score": 1.0, + "content": "seed entities (e.g., “other movies with the same director as Pulp Fiction”). This can be modeled by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 376, + 497, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 411, + 388 + ], + "score": 1.0, + "content": "masking out seed entities from the predictions after the second hop (ReifKB", + "type": "text" + }, + { + "bbox": [ + 412, + 376, + 420, + 385 + ], + "score": 0.68, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 376, + 497, + 388 + ], + "score": 1.0, + "content": "mask in the table).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 353, + 505, + 388 + ] + }, + { + "type": "table", + "bbox": [ + 194, + 424, + 419, + 483 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 392, + 503, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 406 + ], + "score": 1.0, + "content": "Timing on MetaQA and other natural problems. The raw data for the bubble plot of Table 5 is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 137, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 137, + 416 + ], + "score": 1.0, + "content": "below.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "table_body", + "bbox": [ + 194, + 424, + 419, + 483 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 194, + 424, + 419, + 483 + ], + "spans": [ + { + "bbox": [ + 194, + 424, + 419, + 483 + ], + "score": 0.976, + "html": "
Time (seconds)Accuracy (hits@1)Method
72.679.7ReifKB
189.810.1KV-mem
28.977.2GRAFT-Net
1131.091.4PullNet
", + "type": "table", + "image_path": "26afe5533113bd17da255f42714bc55be0ea3cf57ffd5b77200921796a37e0d4.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 424, + 419, + 438.75 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 194, + 438.75, + 419, + 453.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 194, + 453.5, + 419, + 468.25 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 194, + 468.25, + 419, + 483.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 105, + 487, + 396, + 499 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 485, + 397, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 397, + 501 + ], + "score": 1.0, + "content": "Discussion of the KB completion model. The KB completion model is", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 511, + 466, + 525 + ], + "lines": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "spans": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "score": 0.72, + "content": "t = 1 , \\dots , T \\colon \\ \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\ \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "99fea0cb2f46b12e261d245e1ed9b28bc781b4c5692f155c4ee54c39339175ba.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 230, + 511, + 466, + 525 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 302, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 303, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 303, + 551 + ], + "score": 1.0, + "content": "It may not be immediately obvious why we used", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 536, + 303, + 551 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 560, + 365, + 576 + ], + "lines": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "spans": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "score": 0.9, + "content": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "59233240114df4037089620f17c83d4b131874be5f56444d1f775551db5f85a7.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 245, + 560, + 365, + 576 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 195, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 195, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 195, + 601 + ], + "score": 1.0, + "content": "instead of the simpler", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 586, + 195, + 601 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 606, + 349, + 622 + ], + "lines": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "spans": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "score": 0.88, + "content": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )", + "type": "interline_equation", + "image_path": "e8cddb7f9993360fa8ca5ebde7b42f398cf7beb225c6f4d0dda47838dba58fa5.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 261, + 606, + 349, + 622 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 503, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 493, + 646 + ], + "score": 1.0, + "content": "In the main text, we say that this “gives the model access to outputs of all chains of length less than", + "type": "text" + }, + { + "bbox": [ + 494, + 635, + 503, + 645 + ], + "score": 0.78, + "content": "t ^ { \\ast }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "This statement is probably easiest to understand by considering a concete example. Let us simplify", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 104, + 655, + 358, + 670 + ], + "score": 1.0, + "content": "notation slightly by dropping the subscripts and writing follow", + "type": "text" + }, + { + "bbox": [ + 359, + 656, + 398, + 669 + ], + "score": 0.86, + "content": "( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 655, + 410, + 670 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 410, + 656, + 447, + 668 + ], + "score": 0.92, + "content": "f ^ { t } ( \\mathbf { \\bar { x } } ^ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 655, + 506, + 670 + ], + "score": 1.0, + "content": ". Now expand", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 174, + 680 + ], + "score": 1.0, + "content": "the definition of", + "type": "text" + }, + { + "bbox": [ + 175, + 667, + 185, + 677 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 666, + 291, + 680 + ], + "score": 1.0, + "content": "for a few small values of", + "type": "text" + }, + { + "bbox": [ + 291, + 669, + 296, + 677 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 666, + 506, + 680 + ], + "score": 1.0, + "content": ", using the linearity of the definition of relation-set", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 634, + 506, + 680 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 271, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 271, + 97 + ], + "score": 1.0, + "content": "following where appropriate to simplify:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 103, + 97, + 500, + 208 + ], + "lines": [ + { + "bbox": [ + 103, + 97, + 500, + 208 + ], + "spans": [ + { + "bbox": [ + 103, + 97, + 500, + 208 + ], + "score": 0.9, + "content": "{ \\begin{array} { r c l } { \\mathbf { x } ^ { 1 } } & { = } & { f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ { \\mathbf { x } ^ { 2 } } & { = } & { f ^ { 2 } ( \\mathbf { x } ^ { 1 } ) + \\mathbf { x } ^ { 1 } } \\\\ & { = } & { f ^ { 2 } \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) \\right. \\right. } \\\\ & { = } & { \\left. f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right. } \\\\ { \\mathbf { x } ^ { 3 } } & { = } & { f ^ { 3 } ( \\mathbf { x } ^ { 2 } ) + \\mathbf { x } ^ { 2 } } \\\\ & { = } & { f ^ { 3 } \\left( \\left( f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) \\right) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ & { = } & { f ^ { 3 } { \\big ( } f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) \\big ) } + f ^ { 3 } { \\big ( } f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 3 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) } \\end{array} }", + "type": "interline_equation", + "image_path": "7c7a23e29df4774f88ec352ade65abc1e34a183fc9216d6202cf89fb7e01f791.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 103, + 97, + 500, + 134.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 134.0, + 500, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 103, + 171.0, + 500, + 208.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 321, + 237 + ], + "score": 1.0, + "content": "A pattern is now clear: with this recursive definition", + "type": "text" + }, + { + "bbox": [ + 322, + 225, + 331, + 235 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "expands to a mixture of many paths, each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 264, + 248 + ], + "score": 1.0, + "content": "of which applies a different subset of", + "type": "text" + }, + { + "bbox": [ + 264, + 235, + 276, + 248 + ], + "score": 0.82, + "content": "f ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 235, + 298, + 248 + ], + "score": 1.0, + "content": ", . . . ,", + "type": "text" + }, + { + "bbox": [ + 299, + 236, + 309, + 248 + ], + "score": 0.84, + "content": "f ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 235, + 389, + 248 + ], + "score": 1.0, + "content": "to the initial input", + "type": "text" + }, + { + "bbox": [ + 389, + 238, + 396, + 246 + ], + "score": 0.47, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 235, + 506, + 248 + ], + "score": 1.0, + "content": ". Since the weights of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 446, + 259 + ], + "score": 1.0, + "content": "mixture can to a large extent be controlled by varying the norm of the relation vectors", + "type": "text" + }, + { + "bbox": [ + 447, + 246, + 484, + 258 + ], + "score": 0.83, + "content": "\\mathbf { r } ^ { 1 } , \\ldots . . . ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 246, + 506, + 259 + ], + "score": 1.0, + "content": ", this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "score": 1.0, + "content": "“kernel-like trick” increases the expressive power of the model without introducing new parameters.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 267, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 204, + 282 + ], + "score": 1.0, + "content": "The final mixture of the", + "type": "text" + }, + { + "bbox": [ + 204, + 268, + 214, + 279 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 267, + 507, + 282 + ], + "score": 1.0, + "content": "’s seems to provide a bias towards accepting the output of shorter paths,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 279, + 262, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 262, + 292 + ], + "score": 1.0, + "content": "which appears to be useful in practice.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + } + ], + "page_idx": 16, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 270, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 271, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 271, + 97 + ], + "score": 1.0, + "content": "following where appropriate to simplify:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 271, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 103, + 97, + 500, + 208 + ], + "lines": [ + { + "bbox": [ + 103, + 97, + 500, + 208 + ], + "spans": [ + { + "bbox": [ + 103, + 97, + 500, + 208 + ], + "score": 0.9, + "content": "{ \\begin{array} { r c l } { \\mathbf { x } ^ { 1 } } & { = } & { f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ { \\mathbf { x } ^ { 2 } } & { = } & { f ^ { 2 } ( \\mathbf { x } ^ { 1 } ) + \\mathbf { x } ^ { 1 } } \\\\ & { = } & { f ^ { 2 } \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) \\right. \\right. } \\\\ & { = } & { \\left. f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right. } \\\\ { \\mathbf { x } ^ { 3 } } & { = } & { f ^ { 3 } ( \\mathbf { x } ^ { 2 } ) + \\mathbf { x } ^ { 2 } } \\\\ & { = } & { f ^ { 3 } \\left( \\left( f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) \\right) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ & { = } & { f ^ { 3 } { \\big ( } f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) \\big ) } + f ^ { 3 } { \\big ( } f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 3 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) } \\end{array} }", + "type": "interline_equation", + "image_path": "7c7a23e29df4774f88ec352ade65abc1e34a183fc9216d6202cf89fb7e01f791.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 103, + 97, + 500, + 134.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 103, + 134.0, + 500, + 171.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 103, + 171.0, + 500, + 208.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 321, + 237 + ], + "score": 1.0, + "content": "A pattern is now clear: with this recursive definition", + "type": "text" + }, + { + "bbox": [ + 322, + 225, + 331, + 235 + ], + "score": 0.86, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "expands to a mixture of many paths, each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 264, + 248 + ], + "score": 1.0, + "content": "of which applies a different subset of", + "type": "text" + }, + { + "bbox": [ + 264, + 235, + 276, + 248 + ], + "score": 0.82, + "content": "f ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 235, + 298, + 248 + ], + "score": 1.0, + "content": ", . . . ,", + "type": "text" + }, + { + "bbox": [ + 299, + 236, + 309, + 248 + ], + "score": 0.84, + "content": "f ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 235, + 389, + 248 + ], + "score": 1.0, + "content": "to the initial input", + "type": "text" + }, + { + "bbox": [ + 389, + 238, + 396, + 246 + ], + "score": 0.47, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 235, + 506, + 248 + ], + "score": 1.0, + "content": ". Since the weights of the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 246, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 446, + 259 + ], + "score": 1.0, + "content": "mixture can to a large extent be controlled by varying the norm of the relation vectors", + "type": "text" + }, + { + "bbox": [ + 447, + 246, + 484, + 258 + ], + "score": 0.83, + "content": "\\mathbf { r } ^ { 1 } , \\ldots . . . ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 246, + 506, + 259 + ], + "score": 1.0, + "content": ", this", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "score": 1.0, + "content": "“kernel-like trick” increases the expressive power of the model without introducing new parameters.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 267, + 507, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 204, + 282 + ], + "score": 1.0, + "content": "The final mixture of the", + "type": "text" + }, + { + "bbox": [ + 204, + 268, + 214, + 279 + ], + "score": 0.85, + "content": "\\mathbf { x } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 267, + 507, + 282 + ], + "score": 1.0, + "content": "’s seems to provide a bias towards accepting the output of shorter paths,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 279, + 262, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 262, + 292 + ], + "score": 1.0, + "content": "which appears to be useful in practice.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 224, + 507, + 292 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/BJlguT4YPr/BJlguT4YPr_model.json b/parse/train/BJlguT4YPr/BJlguT4YPr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..4c075b2a50ff4b256d13b08edb1a95f866bb1d87 --- /dev/null +++ b/parse/train/BJlguT4YPr/BJlguT4YPr_model.json @@ -0,0 +1,27645 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1351, + 1405, + 1351, + 1405, + 1777, + 298, + 1777 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1030, + 1404, + 1030, + 1404, + 1334, + 298, + 1334 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 398, + 621, + 1303, + 621, + 1303, + 925, + 398, + 925 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1794, + 1403, + 1794, + 1403, + 1978, + 298, + 1978 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 301, + 220, + 1362, + 220, + 1362, + 325, + 301, + 325 + ], + "score": 0.964 + }, + { + "category_id": 2, + "poly": [ + 336, + 2005, + 610, + 2005, + 610, + 2033, + 336, + 2033 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 302, + 980, + 573, + 980, + 573, + 1015, + 302, + 1015 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 304, + 373, + 1153, + 373, + 1153, + 469, + 304, + 469 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 104, + 299, + 104 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 773, + 550, + 926, + 550, + 926, + 583, + 773, + 583 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.736 + }, + { + "category_id": 13, + "poly": [ + 1172, + 1657, + 1241, + 1657, + 1241, + 1689, + 1172, + 1689 + ], + "score": 0.91, + "latex": "( q , A )" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1662, + 1352, + 1662, + 1352, + 1689, + 1334, + 1689 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1688, + 1040, + 1688, + 1040, + 1714, + 1016, + 1714 + ], + "score": 0.75, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 635, + 1688, + 659, + 1688, + 659, + 1714, + 635, + 1714 + ], + "score": 0.73, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1692, + 1402, + 1692, + 1402, + 1719, + 1384, + 1719 + ], + "score": 0.72, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 688, + 1718, + 712, + 1718, + 712, + 1745, + 688, + 1745 + ], + "score": 0.5, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 628, + 652, + 667, + 652, + 667, + 679, + 628, + 679 + ], + "score": 0.28, + "latex": "K B" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 216.0, + 1030.0, + 216.0, + 1030.0, + 273.0, + 295.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 274.0, + 1367.0, + 274.0, + 1367.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1998.0, + 614.0, + 1998.0, + 614.0, + 2040.0, + 332.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 579.0, + 977.0, + 579.0, + 1024.0, + 294.0, + 1024.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, + 549.0, + 932.0, + 549.0, + 932.0, + 586.0, + 769.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1350.0, + 1406.0, + 1350.0, + 1406.0, + 1386.0, + 293.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1384.0, + 1406.0, + 1384.0, + 1406.0, + 1416.0, + 296.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1407.0, + 1412.0, + 1407.0, + 1448.0, + 295.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1441.0, + 1407.0, + 1441.0, + 1407.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1406.0, + 1470.0, + 1406.0, + 1510.0, + 293.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1544.0, + 291.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1534.0, + 1407.0, + 1534.0, + 1407.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1565.0, + 1406.0, + 1565.0, + 1406.0, + 1601.0, + 295.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1596.0, + 1406.0, + 1596.0, + 1406.0, + 1631.0, + 293.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1623.0, + 1403.0, + 1623.0, + 1403.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1654.0, + 1171.0, + 1654.0, + 1171.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1654.0, + 1333.0, + 1654.0, + 1333.0, + 1692.0, + 1242.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1654.0, + 1407.0, + 1654.0, + 1407.0, + 1692.0, + 1353.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1684.0, + 634.0, + 1684.0, + 634.0, + 1725.0, + 292.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1684.0, + 1015.0, + 1684.0, + 1015.0, + 1725.0, + 660.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1684.0, + 1383.0, + 1684.0, + 1383.0, + 1725.0, + 1041.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1725.0, + 1403.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1716.0, + 687.0, + 1716.0, + 687.0, + 1754.0, + 292.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1754.0, + 713.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1745.0, + 433.0, + 1745.0, + 433.0, + 1784.0, + 293.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1068.0, + 292.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1406.0, + 1061.0, + 1406.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1091.0, + 1405.0, + 1091.0, + 1405.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1121.0, + 1404.0, + 1121.0, + 1404.0, + 1155.0, + 293.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1192.0, + 292.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1183.0, + 1404.0, + 1183.0, + 1404.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1244.0, + 1406.0, + 1244.0, + 1406.0, + 1279.0, + 294.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1310.0, + 296.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 869.0, + 1304.0, + 869.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 620.0, + 1307.0, + 620.0, + 1307.0, + 656.0, + 396.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 649.0, + 627.0, + 649.0, + 627.0, + 686.0, + 391.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 649.0, + 1307.0, + 649.0, + 1307.0, + 686.0, + 668.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 681.0, + 1304.0, + 681.0, + 1304.0, + 714.0, + 394.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 713.0, + 1304.0, + 713.0, + 1304.0, + 746.0, + 394.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 744.0, + 1308.0, + 744.0, + 1308.0, + 776.0, + 394.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 774.0, + 1307.0, + 774.0, + 1307.0, + 807.0, + 394.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 805.0, + 1305.0, + 805.0, + 1305.0, + 837.0, + 394.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 834.0, + 1304.0, + 834.0, + 1304.0, + 867.0, + 395.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 863.0, + 1305.0, + 863.0, + 1305.0, + 899.0, + 392.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 894.0, + 598.0, + 894.0, + 598.0, + 927.0, + 394.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1793.0, + 1404.0, + 1793.0, + 1404.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1825.0, + 1405.0, + 1825.0, + 1405.0, + 1861.0, + 294.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1856.0, + 1404.0, + 1856.0, + 1404.0, + 1891.0, + 293.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1407.0, + 1885.0, + 1407.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1954.0, + 292.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1947.0, + 1405.0, + 1947.0, + 1405.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 373.0, + 1148.0, + 373.0, + 1148.0, + 412.0, + 312.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 404.0, + 455.0, + 404.0, + 455.0, + 443.0, + 312.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 434.0, + 1069.0, + 434.0, + 1069.0, + 475.0, + 314.0, + 475.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1717, + 1406, + 1717, + 1406, + 1964, + 297, + 1964 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1487, + 1405, + 1487, + 1405, + 1703, + 297, + 1703 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1257, + 1406, + 1257, + 1406, + 1472, + 298, + 1472 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 671, + 1404, + 671, + 1404, + 947, + 298, + 947 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 961, + 1404, + 961, + 1404, + 1115, + 299, + 1115 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 501, + 1405, + 501, + 1405, + 655, + 298, + 655 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 312, + 224, + 1408, + 224, + 1408, + 338, + 312, + 338 + ], + "score": 0.957 + }, + { + "category_id": 2, + "poly": [ + 332, + 2005, + 802, + 2005, + 802, + 2034, + 332, + 2034 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 299, + 1151, + 980, + 1151, + 980, + 1185, + 299, + 1185 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 299, + 1204, + 538, + 1204, + 538, + 1237, + 299, + 1237 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 105, + 300, + 105 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 299, + 374, + 1402, + 374, + 1402, + 436, + 299, + 436 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.727 + }, + { + "category_id": 6, + "poly": [ + 299, + 374, + 1402, + 374, + 1402, + 436, + 299, + 436 + ], + "score": 0.102 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.102 + }, + { + "category_id": 13, + "poly": [ + 827, + 1411, + 1151, + 1411, + 1151, + 1445, + 827, + 1445 + ], + "score": 0.94, + "latex": "\\left\\{ 1 , \\dots , N _ { E } \\right\\} \\times \\left\\{ 1 , \\dots , N _ { E } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 957, + 1932, + 1149, + 1932, + 1149, + 1965, + 957, + 1965 + ], + "score": 0.93, + "latex": "\\mathbf { M } _ { r } [ i , j ] \\in \\{ 0 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 524, + 1901, + 616, + 1901, + 616, + 1934, + 524, + 1934 + ], + "score": 0.93, + "latex": "\\mathbf { M } _ { r } [ i , j ]" + }, + { + "category_id": 13, + "poly": [ + 731, + 1381, + 818, + 1381, + 818, + 1414, + 731, + 1414 + ], + "score": 0.92, + "latex": "( x _ { i } , x _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1608, + 1316, + 1608, + 1316, + 1639, + 1210, + 1639 + ], + "score": 0.92, + "latex": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { E } }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1902, + 1199, + 1902, + 1199, + 1935, + 1098, + 1935 + ], + "score": 0.91, + "latex": "r ( x _ { i } , x _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 418, + 1674, + 513, + 1674, + 513, + 1705, + 418, + 1705 + ], + "score": 0.91, + "latex": "k = | X |" + }, + { + "category_id": 13, + "poly": [ + 684, + 1550, + 761, + 1550, + 761, + 1581, + 684, + 1581 + ], + "score": 0.91, + "latex": "x \\not \\in X" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1869, + 1397, + 1869, + 1397, + 1901, + 1216, + 1901 + ], + "score": 0.91, + "latex": "\\mathbf { M } _ { r } \\in \\mathbb { R } ^ { N _ { E } \\times N _ { E } }" + }, + { + "category_id": 13, + "poly": [ + 879, + 1550, + 956, + 1550, + 956, + 1578, + 879, + 1578 + ], + "score": 0.9, + "latex": "x \\in X" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1290, + 1331, + 1290, + 1331, + 1320, + 1287, + 1320 + ], + "score": 0.9, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1810, + 1084, + 1810, + 1084, + 1840, + 1041, + 1840 + ], + "score": 0.89, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1290, + 1197, + 1290, + 1197, + 1320, + 1154, + 1320 + ], + "score": 0.89, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 913, + 1810, + 956, + 1810, + 956, + 1840, + 913, + 1840 + ], + "score": 0.88, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 742, + 1645, + 771, + 1645, + 771, + 1672, + 742, + 1672 + ], + "score": 0.87, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 760, + 1324, + 788, + 1324, + 788, + 1351, + 760, + 1351 + ], + "score": 0.87, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 742, + 280, + 780, + 280, + 780, + 308, + 742, + 308 + ], + "score": 0.86, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 1033, + 1354, + 1061, + 1354, + 1061, + 1381, + 1033, + 1381 + ], + "score": 0.86, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1385, + 376, + 1385, + 376, + 1414, + 345, + 1414 + ], + "score": 0.85, + "latex": "x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1783, + 434, + 1783, + 434, + 1810, + 404, + 1810 + ], + "score": 0.85, + "latex": "r _ { k }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1813, + 718, + 1813, + 718, + 1840, + 688, + 1840 + ], + "score": 0.85, + "latex": "r _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 226, + 1214, + 226, + 1214, + 252, + 1174, + 252 + ], + "score": 0.84, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 869, + 1642, + 897, + 1642, + 897, + 1668, + 869, + 1668 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 514, + 280, + 559, + 280, + 559, + 307, + 514, + 307 + ], + "score": 0.84, + "latex": "{ \\bf { M } } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 649, + 1521, + 677, + 1521, + 677, + 1547, + 649, + 1547 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1581, + 1234, + 1581, + 1234, + 1607, + 1207, + 1607 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1174, + 253, + 1214, + 253, + 1214, + 279, + 1174, + 279 + ], + "score": 0.82, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1612, + 772, + 1612, + 772, + 1638, + 744, + 1638 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 496, + 1489, + 528, + 1489, + 528, + 1517, + 496, + 1517 + ], + "score": 0.82, + "latex": "^ { 6 6 } k" + }, + { + "category_id": 13, + "poly": [ + 313, + 280, + 351, + 280, + 351, + 307, + 313, + 307 + ], + "score": 0.82, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 803, + 1642, + 831, + 1642, + 831, + 1669, + 803, + 1669 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1174, + 281, + 1213, + 281, + 1213, + 307, + 1174, + 307 + ], + "score": 0.82, + "latex": "N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 853, + 1581, + 882, + 1581, + 882, + 1607, + 853, + 1607 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 627, + 1811, + 646, + 1811, + 646, + 1837, + 627, + 1837 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 737, + 1781, + 756, + 1781, + 756, + 1808, + 737, + 1808 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1117, + 226, + 1143, + 226, + 1143, + 250, + 1117, + 250 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 479, + 1842, + 504, + 1842, + 504, + 1869, + 479, + 1869 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 382, + 1614, + 409, + 1614, + 409, + 1638, + 382, + 1638 + ], + "score": 0.79, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1265, + 1187, + 1265, + 1187, + 1286, + 1167, + 1286 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1116, + 253, + 1139, + 253, + 1139, + 277, + 1116, + 277 + ], + "score": 0.77, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 338, + 1644, + 350, + 1644, + 350, + 1668, + 338, + 1668 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 346, + 1294, + 363, + 1294, + 363, + 1317, + 346, + 1317 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 476, + 1586, + 495, + 1586, + 495, + 1607, + 476, + 1607 + ], + "score": 0.75, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 672, + 1754, + 689, + 1754, + 689, + 1776, + 672, + 1776 + ], + "score": 0.74, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 805, + 1878, + 822, + 1878, + 822, + 1898, + 805, + 1898 + ], + "score": 0.73, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 450, + 1526, + 469, + 1526, + 469, + 1547, + 450, + 1547 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 989, + 280, + 1044, + 280, + 1044, + 309, + 989, + 309 + ], + "score": 0.72, + "latex": "( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 545, + 1646, + 562, + 1646, + 562, + 1668, + 545, + 1668 + ], + "score": 0.72, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 758, + 1677, + 776, + 1677, + 776, + 1699, + 758, + 1699 + ], + "score": 0.72, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 309, + 1065, + 309, + 1065, + 332, + 1051, + 332 + ], + "score": 0.72, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 313, + 309, + 376, + 309, + 376, + 338, + 313, + 338 + ], + "score": 0.71, + "latex": "\\mathbf { M } _ { s u b j }" + }, + { + "category_id": 13, + "poly": [ + 388, + 1418, + 405, + 1418, + 405, + 1439, + 388, + 1439 + ], + "score": 0.69, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 470, + 286, + 487, + 286, + 487, + 305, + 470, + 305 + ], + "score": 0.69, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1676, + 1293, + 1676, + 1293, + 1700, + 1275, + 1700 + ], + "score": 0.65, + "latex": "\\dot { \\boldsymbol { x } }" + }, + { + "category_id": 13, + "poly": [ + 516, + 253, + 538, + 253, + 538, + 277, + 516, + 277 + ], + "score": 0.64, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 515, + 225, + 541, + 225, + 541, + 250, + 515, + 250 + ], + "score": 0.64, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1322, + 1103, + 1322, + 1103, + 1347, + 1091, + 1347 + ], + "score": 0.6, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 314, + 258, + 329, + 258, + 329, + 277, + 314, + 277 + ], + "score": 0.6, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1330, + 1642, + 1348, + 1642, + 1348, + 1668, + 1330, + 1668 + ], + "score": 0.54, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 450, + 308, + 500, + 308, + 500, + 337, + 450, + 337 + ], + "score": 0.51, + "latex": "{ { \\bf { M } } _ { r e l } }" + }, + { + "category_id": 13, + "poly": [ + 343, + 308, + 501, + 308, + 501, + 338, + 343, + 338 + ], + "score": 0.42, + "latex": "\\mathbf { \\tau } _ { s u b j } , \\mathbf { M } _ { o b j } , \\mathbf { M } _ { r e l }" + }, + { + "category_id": 13, + "poly": [ + 797, + 1841, + 1126, + 1841, + 1126, + 1874, + 797, + 1874 + ], + "score": 0.38, + "latex": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}" + }, + { + "category_id": 13, + "poly": [ + 314, + 231, + 331, + 231, + 331, + 249, + 314, + 249 + ], + "score": 0.34, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 385, + 308, + 440, + 308, + 440, + 338, + 385, + 338 + ], + "score": 0.32, + "latex": "\\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 922, + 280, + 1044, + 280, + 1044, + 310, + 922, + 310 + ], + "score": 0.29, + "latex": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 339, + 1876, + 357, + 1876, + 357, + 1898, + 339, + 1898 + ], + "score": 0.27, + "latex": "\\mathbf { r }" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1997.0, + 808.0, + 1997.0, + 808.0, + 2040.0, + 330.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1147.0, + 983.0, + 1147.0, + 983.0, + 1190.0, + 292.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1204.0, + 542.0, + 1204.0, + 542.0, + 1240.0, + 295.0, + 1240.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": [ + 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, + 373.0, + 1404.0, + 373.0, + 1404.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 404.0, + 829.0, + 404.0, + 829.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1714.0, + 1407.0, + 1714.0, + 1407.0, + 1751.0, + 292.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 671.0, + 1750.0, + 671.0, + 1780.0, + 295.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1750.0, + 1408.0, + 1750.0, + 1408.0, + 1780.0, + 690.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1779.0, + 403.0, + 1779.0, + 403.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1779.0, + 736.0, + 1779.0, + 736.0, + 1813.0, + 435.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1779.0, + 1404.0, + 1779.0, + 1404.0, + 1813.0, + 757.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1808.0, + 626.0, + 1808.0, + 626.0, + 1843.0, + 294.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1808.0, + 687.0, + 1808.0, + 687.0, + 1843.0, + 647.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1808.0, + 912.0, + 1808.0, + 912.0, + 1843.0, + 719.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1808.0, + 1040.0, + 1808.0, + 1040.0, + 1843.0, + 957.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1808.0, + 1406.0, + 1808.0, + 1406.0, + 1843.0, + 1085.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1841.0, + 478.0, + 1841.0, + 478.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1841.0, + 796.0, + 1841.0, + 796.0, + 1874.0, + 505.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1841.0, + 1406.0, + 1841.0, + 1406.0, + 1874.0, + 1127.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1868.0, + 338.0, + 1868.0, + 338.0, + 1903.0, + 291.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1868.0, + 804.0, + 1868.0, + 804.0, + 1903.0, + 358.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1868.0, + 1215.0, + 1868.0, + 1215.0, + 1903.0, + 823.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1868.0, + 1408.0, + 1868.0, + 1408.0, + 1903.0, + 1398.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1900.0, + 523.0, + 1900.0, + 523.0, + 1937.0, + 294.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1900.0, + 1097.0, + 1900.0, + 1097.0, + 1937.0, + 617.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1900.0, + 1406.0, + 1900.0, + 1406.0, + 1937.0, + 1200.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1931.0, + 956.0, + 1931.0, + 956.0, + 1968.0, + 294.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1931.0, + 1161.0, + 1931.0, + 1161.0, + 1968.0, + 1150.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1488.0, + 495.0, + 1488.0, + 495.0, + 1522.0, + 295.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1488.0, + 1405.0, + 1488.0, + 1405.0, + 1522.0, + 529.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 449.0, + 1520.0, + 449.0, + 1554.0, + 295.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1520.0, + 648.0, + 1520.0, + 648.0, + 1554.0, + 470.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1554.0, + 678.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1551.0, + 683.0, + 1551.0, + 683.0, + 1581.0, + 296.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1551.0, + 878.0, + 1551.0, + 878.0, + 1581.0, + 762.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1551.0, + 1406.0, + 1551.0, + 1406.0, + 1581.0, + 957.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1579.0, + 475.0, + 1579.0, + 475.0, + 1614.0, + 295.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1579.0, + 852.0, + 1579.0, + 852.0, + 1614.0, + 496.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1579.0, + 1206.0, + 1579.0, + 1206.0, + 1614.0, + 883.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1579.0, + 1408.0, + 1579.0, + 1408.0, + 1614.0, + 1235.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1607.0, + 381.0, + 1607.0, + 381.0, + 1644.0, + 291.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1607.0, + 743.0, + 1607.0, + 743.0, + 1644.0, + 410.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1607.0, + 1209.0, + 1607.0, + 1209.0, + 1644.0, + 773.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1607.0, + 1408.0, + 1607.0, + 1408.0, + 1644.0, + 1317.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 337.0, + 1639.0, + 337.0, + 1673.0, + 294.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1639.0, + 544.0, + 1639.0, + 544.0, + 1673.0, + 351.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1639.0, + 741.0, + 1639.0, + 741.0, + 1673.0, + 563.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1639.0, + 802.0, + 1639.0, + 802.0, + 1673.0, + 772.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1639.0, + 868.0, + 1639.0, + 868.0, + 1673.0, + 832.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1639.0, + 1329.0, + 1639.0, + 1329.0, + 1673.0, + 898.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1639.0, + 1410.0, + 1639.0, + 1410.0, + 1673.0, + 1349.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 417.0, + 1672.0, + 417.0, + 1706.0, + 295.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1672.0, + 757.0, + 1672.0, + 757.0, + 1706.0, + 514.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1672.0, + 1274.0, + 1672.0, + 1274.0, + 1706.0, + 777.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1672.0, + 1303.0, + 1672.0, + 1303.0, + 1706.0, + 1294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 1166.0, + 1256.0, + 1166.0, + 1293.0, + 295.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1256.0, + 1404.0, + 1256.0, + 1404.0, + 1293.0, + 1188.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1291.0, + 345.0, + 1291.0, + 345.0, + 1321.0, + 296.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1291.0, + 1153.0, + 1291.0, + 1153.0, + 1321.0, + 364.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1291.0, + 1286.0, + 1291.0, + 1286.0, + 1321.0, + 1198.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1321.0, + 1332.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1319.0, + 759.0, + 1319.0, + 759.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 1319.0, + 1090.0, + 1319.0, + 1090.0, + 1352.0, + 789.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1319.0, + 1404.0, + 1319.0, + 1404.0, + 1352.0, + 1104.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1350.0, + 1032.0, + 1350.0, + 1032.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1350.0, + 1409.0, + 1350.0, + 1409.0, + 1384.0, + 1062.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1379.0, + 344.0, + 1379.0, + 344.0, + 1414.0, + 293.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1379.0, + 730.0, + 1379.0, + 730.0, + 1414.0, + 377.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1379.0, + 1406.0, + 1379.0, + 1406.0, + 1414.0, + 819.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 387.0, + 1410.0, + 387.0, + 1448.0, + 292.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1410.0, + 826.0, + 1410.0, + 826.0, + 1448.0, + 406.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1410.0, + 1407.0, + 1410.0, + 1407.0, + 1448.0, + 1152.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 714.0, + 1442.0, + 714.0, + 1473.0, + 293.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 669.0, + 1405.0, + 669.0, + 1405.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 732.0, + 1406.0, + 732.0, + 1406.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 762.0, + 1405.0, + 762.0, + 1405.0, + 797.0, + 292.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1404.0, + 823.0, + 1404.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 856.0, + 1402.0, + 856.0, + 1402.0, + 889.0, + 296.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 886.0, + 1404.0, + 886.0, + 1404.0, + 919.0, + 296.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 1366.0, + 917.0, + 1366.0, + 950.0, + 294.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 963.0, + 1403.0, + 963.0, + 1403.0, + 996.0, + 297.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 1401.0, + 1023.0, + 1401.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1084.0, + 1155.0, + 1084.0, + 1155.0, + 1117.0, + 295.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 499.0, + 1409.0, + 499.0, + 1409.0, + 540.0, + 292.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 534.0, + 1406.0, + 534.0, + 1406.0, + 567.0, + 296.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 563.0, + 1406.0, + 563.0, + 1406.0, + 600.0, + 295.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 594.0, + 1406.0, + 594.0, + 1406.0, + 630.0, + 292.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 624.0, + 1246.0, + 624.0, + 1246.0, + 660.0, + 293.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 225.0, + 436.0, + 225.0, + 436.0, + 256.0, + 332.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 222.0, + 793.0, + 222.0, + 793.0, + 256.0, + 542.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 225.0, + 1116.0, + 225.0, + 1116.0, + 253.0, + 921.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 225.0, + 1389.0, + 225.0, + 1389.0, + 253.0, + 1215.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 252.0, + 313.0, + 252.0, + 313.0, + 279.0, + 309.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 252.0, + 455.0, + 252.0, + 455.0, + 279.0, + 330.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 250.0, + 801.0, + 250.0, + 801.0, + 282.0, + 539.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 252.0, + 1115.0, + 252.0, + 1115.0, + 282.0, + 918.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 252.0, + 1145.0, + 252.0, + 1145.0, + 282.0, + 1140.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 252.0, + 1402.0, + 252.0, + 1402.0, + 281.0, + 1215.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 278.0, + 469.0, + 278.0, + 469.0, + 308.0, + 352.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 278.0, + 509.0, + 278.0, + 509.0, + 308.0, + 488.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 278.0, + 513.0, + 278.0, + 513.0, + 312.0, + 510.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 278.0, + 741.0, + 278.0, + 741.0, + 312.0, + 560.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 278.0, + 921.0, + 278.0, + 921.0, + 312.0, + 781.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 278.0, + 1152.0, + 278.0, + 1152.0, + 312.0, + 1045.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 280.0, + 1378.0, + 280.0, + 1378.0, + 309.0, + 1214.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 306.0, + 1050.0, + 306.0, + 1050.0, + 340.0, + 502.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 306.0, + 1411.0, + 306.0, + 1411.0, + 340.0, + 1066.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 373.0, + 1404.0, + 373.0, + 1404.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 404.0, + 829.0, + 404.0, + 829.0, + 439.0, + 295.0, + 439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 705, + 1405, + 705, + 1405, + 891, + 297, + 891 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 567, + 1403, + 567, + 1403, + 691, + 298, + 691 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 969, + 1406, + 969, + 1406, + 1094, + 297, + 1094 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 414, + 297, + 414 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1316, + 1404, + 1316, + 1404, + 1440, + 297, + 1440 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1147, + 1406, + 1147, + 1406, + 1303, + 298, + 1303 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 428, + 1403, + 428, + 1403, + 553, + 298, + 553 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 715, + 1452, + 984, + 1452, + 984, + 1542, + 715, + 1542 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 615, + 1595, + 1080, + 1595, + 1080, + 1684, + 615, + 1684 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 293, + 1970, + 1401, + 1970, + 1401, + 2036, + 293, + 2036 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 294, + 1549, + 1029, + 1549, + 1029, + 1583, + 294, + 1583 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 292, + 1798, + 1118, + 1798, + 1118, + 1832, + 292, + 1832 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 918, + 616, + 918, + 616, + 950, + 299, + 950 + ], + "score": 0.919 + }, + { + "category_id": 8, + "poly": [ + 497, + 1103, + 1203, + 1103, + 1203, + 1140, + 497, + 1140 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 298, + 1846, + 1021, + 1846, + 1021, + 1880, + 298, + 1880 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1480, + 1400, + 1480, + 1400, + 1511, + 1366, + 1511 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1624, + 1400, + 1624, + 1400, + 1654, + 1366, + 1654 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 298, + 1915, + 1068, + 1915, + 1068, + 1948, + 298, + 1948 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 296, + 1690, + 1401, + 1690, + 1401, + 1784, + 296, + 1784 + ], + "score": 0.836 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.662 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.422 + }, + { + "category_id": 14, + "poly": [ + 614, + 1591, + 1081, + 1591, + 1081, + 1687, + 614, + 1687 + ], + "score": 0.95, + "latex": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) \\equiv \\mathbf { x } \\mathbf { M } _ { R } = \\mathbf { x } ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )" + }, + { + "category_id": 14, + "poly": [ + 715, + 1446, + 984, + 1446, + 984, + 1544, + 715, + 1544 + ], + "score": 0.95, + "latex": "\\mathbf { M } _ { R } \\equiv ( \\sum _ { k = 1 } ^ { N _ { R } } \\mathbf { r } [ k ] \\cdot \\mathbf { M } _ { r _ { k } } )" + }, + { + "category_id": 13, + "poly": [ + 405, + 2001, + 686, + 2001, + 686, + 2037, + 405, + 2037 + ], + "score": 0.92, + "latex": "\\hat { N _ { R } } < \\hat { N _ { E } } < \\hat { N _ { T } } \\ll \\hat { N _ { E } ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 930, + 460, + 1010, + 460, + 1010, + 493, + 930, + 493 + ], + "score": 0.92, + "latex": "O ( N _ { r } )" + }, + { + "category_id": 13, + "poly": [ + 1280, + 290, + 1324, + 290, + 1324, + 325, + 1280, + 325 + ], + "score": 0.9, + "latex": "N _ { E } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 934, + 830, + 977, + 830, + 977, + 859, + 934, + 859 + ], + "score": 0.89, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 908, + 1380, + 957, + 1380, + 957, + 1409, + 908, + 1409 + ], + "score": 0.89, + "latex": "\\mathbf { M } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1094, + 2005, + 1135, + 2005, + 1135, + 2034, + 1094, + 2034 + ], + "score": 0.89, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 970, + 1242, + 1159, + 1242, + 1159, + 1274, + 970, + 1274 + ], + "score": 0.89, + "latex": "R ^ { \\prime } = \\{ a c t o r { \\_ } o f \\}" + }, + { + "category_id": 13, + "poly": [ + 838, + 829, + 881, + 829, + 881, + 859, + 838, + 859 + ], + "score": 0.89, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 919, + 1976, + 962, + 1976, + 962, + 2003, + 919, + 2003 + ], + "score": 0.89, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1974, + 1319, + 1974, + 1319, + 2003, + 1277, + 2003 + ], + "score": 0.88, + "latex": "N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1974, + 1124, + 1974, + 1124, + 2003, + 1081, + 2003 + ], + "score": 0.88, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1104, + 1201, + 1104, + 1201, + 1140, + 1051, + 1140 + ], + "score": 0.88, + "latex": "( x _ { i } , x _ { j } ) \\in r \\}" + }, + { + "category_id": 13, + "poly": [ + 825, + 1035, + 856, + 1035, + 856, + 1065, + 825, + 1065 + ], + "score": 0.88, + "latex": "x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 857, + 430, + 894, + 430, + 894, + 460, + 857, + 460 + ], + "score": 0.88, + "latex": "N _ { r }" + }, + { + "category_id": 13, + "poly": [ + 643, + 1800, + 703, + 1800, + 703, + 1833, + 643, + 1833 + ], + "score": 0.87, + "latex": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1035, + 1121, + 1035, + 1121, + 1062, + 1092, + 1062 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1242, + 1249, + 1242, + 1249, + 1269, + 1217, + 1269 + ], + "score": 0.85, + "latex": "R ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1350, + 803, + 1350, + 803, + 1376, + 775, + 1376 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 496, + 1104, + 967, + 1104, + 967, + 1140, + 496, + 1140 + ], + "score": 0.84, + "latex": "R – n e i g h b o r s ( X ) \\equiv \\{ x _ { j } : \\exists r \\in R , x _ { i } \\in X" + }, + { + "category_id": 13, + "poly": [ + 476, + 1150, + 500, + 1150, + 500, + 1177, + 476, + 1177 + ], + "score": 0.84, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 603, + 1410, + 627, + 1410, + 627, + 1436, + 603, + 1436 + ], + "score": 0.84, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 542, + 1036, + 569, + 1036, + 569, + 1061, + 542, + 1061 + ], + "score": 0.83, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 535, + 1753, + 559, + 1753, + 559, + 1779, + 535, + 1779 + ], + "score": 0.82, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1350, + 1347, + 1350, + 1347, + 1376, + 1319, + 1376 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 691, + 1242, + 716, + 1242, + 716, + 1268, + 691, + 1268 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 669, + 1319, + 693, + 1319, + 693, + 1345, + 669, + 1345 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 854, + 1350, + 878, + 1350, + 878, + 1376, + 854, + 1376 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 952, + 1210, + 1257, + 1210, + 1257, + 1241, + 952, + 1241 + ], + "score": 0.8, + "latex": "X = \\{ Q u e n t i n \\_ T a r a n t i n o \\}" + }, + { + "category_id": 13, + "poly": [ + 335, + 1211, + 359, + 1211, + 359, + 1237, + 335, + 1237 + ], + "score": 0.8, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 319, + 1062, + 716, + 1062, + 716, + 1096, + 319, + 1096 + ], + "score": 0.78, + "latex": "{ \\cdot } n e i g h b o r s ( x ) \\equiv \\left\\{ x _ { j } : ( x _ { i } , x _ { j } ) \\in r \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 976, + 1556, + 992, + 1556, + 992, + 1577, + 976, + 1577 + ], + "score": 0.73, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 409, + 1271, + 458, + 1271, + 458, + 1303, + 409, + 1303 + ], + "score": 0.73, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 479, + 1212, + 518, + 1212, + 518, + 1240, + 479, + 1240 + ], + "score": 0.73, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1037, + 1350, + 1037, + 1350, + 1059, + 1334, + 1059 + ], + "score": 0.71, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1379, + 1006, + 1396, + 1006, + 1396, + 1028, + 1379, + 1028 + ], + "score": 0.7, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 933, + 1353, + 952, + 1353, + 952, + 1376, + 933, + 1376 + ], + "score": 0.65, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1242, + 1396, + 1242, + 1396, + 1268, + 1373, + 1268 + ], + "score": 0.65, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 298, + 1068, + 313, + 1068, + 313, + 1089, + 298, + 1089 + ], + "score": 0.61, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 906, + 1555, + 925, + 1555, + 925, + 1578, + 906, + 1578 + ], + "score": 0.6, + "latex": "\\boldsymbol { x }" + }, + { + "category_id": 13, + "poly": [ + 559, + 1210, + 904, + 1210, + 904, + 1243, + 559, + 1243 + ], + "score": 0.56, + "latex": "R = \\{ p r o d u c e r \\_ o f , w r i t e r \\_ o f \\}" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1801, + 1110, + 1801, + 1110, + 1830, + 1074, + 1830 + ], + "score": 0.52, + "latex": "X )" + }, + { + "category_id": 13, + "poly": [ + 298, + 467, + 314, + 467, + 314, + 488, + 298, + 488 + ], + "score": 0.38, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1722, + 1258, + 1722, + 1258, + 1754, + 1200, + 1754 + ], + "score": 0.35, + "latex": "\\operatorname { E q } 2" + }, + { + "category_id": 13, + "poly": [ + 925, + 1800, + 949, + 1800, + 949, + 1827, + 925, + 1827 + ], + "score": 0.33, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 952, + 1210, + 1031, + 1210, + 1031, + 1241, + 952, + 1241 + ], + "score": 0.29, + "latex": "X = \\left\\{ \\begin{array} { r l r l } \\end{array} \\right." + }, + { + "category_id": 14, + "poly": [ + 491, + 1102, + 1205, + 1102, + 1205, + 1142, + 491, + 1142 + ], + "score": 0.27, + "latex": "R \\neg n e i g h b o r s ( X ) \\equiv \\left\\{ x _ { j } : \\exists r \\in R , x _ { i } \\in X \\mathrm { ~ s o ~ t h a t ~ } ( x _ { i } , x _ { j } ) \\in r \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 704, + 492, + 782, + 492, + 782, + 522, + 704, + 522 + ], + "score": 0.25, + "latex": "( C O O )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 620.0, + 915.0, + 620.0, + 955.0, + 293.0, + 955.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": [ + 294.0, + 1914.0, + 1071.0, + 1914.0, + 1071.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 705.0, + 1407.0, + 705.0, + 1407.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 737.0, + 1406.0, + 737.0, + 1406.0, + 772.0, + 295.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 769.0, + 1402.0, + 769.0, + 1402.0, + 801.0, + 296.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 799.0, + 1403.0, + 799.0, + 1403.0, + 831.0, + 296.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 829.0, + 837.0, + 829.0, + 837.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 829.0, + 933.0, + 829.0, + 933.0, + 862.0, + 882.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 829.0, + 1406.0, + 829.0, + 1406.0, + 862.0, + 978.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 1015.0, + 859.0, + 1015.0, + 892.0, + 294.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 566.0, + 1407.0, + 566.0, + 1407.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 599.0, + 1407.0, + 599.0, + 1407.0, + 634.0, + 293.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 631.0, + 1403.0, + 631.0, + 1403.0, + 664.0, + 294.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 661.0, + 1040.0, + 661.0, + 1040.0, + 693.0, + 294.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1006.0, + 292.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1378.0, + 1001.0, + 1378.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1001.0, + 1409.0, + 1001.0, + 1409.0, + 1034.0, + 1397.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 541.0, + 1030.0, + 541.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1030.0, + 824.0, + 1030.0, + 824.0, + 1068.0, + 570.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1030.0, + 1091.0, + 1030.0, + 1091.0, + 1068.0, + 857.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1030.0, + 1333.0, + 1030.0, + 1333.0, + 1068.0, + 1122.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1030.0, + 1411.0, + 1030.0, + 1411.0, + 1068.0, + 1351.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1062.0, + 297.0, + 1062.0, + 297.0, + 1096.0, + 292.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1062.0, + 318.0, + 1062.0, + 318.0, + 1096.0, + 314.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1062.0, + 1186.0, + 1062.0, + 1186.0, + 1096.0, + 717.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1401.0, + 261.0, + 1401.0, + 293.0, + 296.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 1279.0, + 290.0, + 1279.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 326.0, + 1325.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 355.0, + 1404.0, + 355.0, + 1404.0, + 384.0, + 297.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 382.0, + 1250.0, + 382.0, + 1250.0, + 417.0, + 295.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 668.0, + 1317.0, + 668.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1317.0, + 1404.0, + 1317.0, + 1404.0, + 1350.0, + 694.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 774.0, + 1348.0, + 774.0, + 1383.0, + 292.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1348.0, + 853.0, + 1348.0, + 853.0, + 1383.0, + 804.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1348.0, + 932.0, + 1348.0, + 932.0, + 1383.0, + 879.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1348.0, + 1318.0, + 1348.0, + 1318.0, + 1383.0, + 953.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1383.0, + 1348.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 907.0, + 1378.0, + 907.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1378.0, + 1404.0, + 1378.0, + 1404.0, + 1412.0, + 958.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 602.0, + 1407.0, + 602.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1407.0, + 678.0, + 1407.0, + 678.0, + 1442.0, + 628.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1149.0, + 475.0, + 1149.0, + 475.0, + 1182.0, + 297.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1149.0, + 1404.0, + 1149.0, + 1404.0, + 1182.0, + 501.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1177.0, + 1404.0, + 1177.0, + 1404.0, + 1214.0, + 295.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 334.0, + 1208.0, + 334.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1208.0, + 478.0, + 1208.0, + 478.0, + 1245.0, + 360.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1208.0, + 558.0, + 1208.0, + 558.0, + 1245.0, + 519.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1208.0, + 951.0, + 1208.0, + 951.0, + 1245.0, + 905.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1208.0, + 1408.0, + 1208.0, + 1408.0, + 1245.0, + 1258.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 690.0, + 1240.0, + 690.0, + 1274.0, + 293.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1240.0, + 969.0, + 1240.0, + 969.0, + 1274.0, + 717.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1240.0, + 1216.0, + 1240.0, + 1216.0, + 1274.0, + 1160.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1240.0, + 1372.0, + 1240.0, + 1372.0, + 1274.0, + 1250.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1240.0, + 1409.0, + 1240.0, + 1409.0, + 1274.0, + 1397.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1270.0, + 408.0, + 1270.0, + 408.0, + 1308.0, + 296.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1270.0, + 1277.0, + 1270.0, + 1277.0, + 1308.0, + 459.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 856.0, + 428.0, + 856.0, + 465.0, + 294.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 428.0, + 1404.0, + 428.0, + 1404.0, + 465.0, + 895.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 297.0, + 461.0, + 297.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 461.0, + 929.0, + 461.0, + 929.0, + 494.0, + 315.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 461.0, + 1405.0, + 461.0, + 1405.0, + 494.0, + 1011.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 492.0, + 703.0, + 492.0, + 703.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 492.0, + 1404.0, + 492.0, + 1404.0, + 524.0, + 783.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 523.0, + 735.0, + 523.0, + 735.0, + 555.0, + 294.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 918.0, + 1971.0, + 918.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1971.0, + 1080.0, + 1971.0, + 1080.0, + 2007.0, + 963.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1971.0, + 1276.0, + 1971.0, + 1276.0, + 2007.0, + 1125.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 1320.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 404.0, + 1998.0, + 404.0, + 2042.0, + 292.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1998.0, + 1093.0, + 1998.0, + 1093.0, + 2042.0, + 687.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1998.0, + 1411.0, + 1998.0, + 1411.0, + 2042.0, + 1136.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 905.0, + 1545.0, + 905.0, + 1588.0, + 294.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1545.0, + 975.0, + 1545.0, + 975.0, + 1588.0, + 926.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1545.0, + 1032.0, + 1545.0, + 1032.0, + 1588.0, + 993.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 642.0, + 1794.0, + 642.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1794.0, + 924.0, + 1794.0, + 924.0, + 1838.0, + 704.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1794.0, + 1073.0, + 1794.0, + 1073.0, + 1838.0, + 950.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1794.0, + 1120.0, + 1794.0, + 1120.0, + 1838.0, + 1111.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1844.0, + 1026.0, + 1844.0, + 1026.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1688.0, + 1405.0, + 1688.0, + 1405.0, + 1725.0, + 295.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 1199.0, + 1722.0, + 1199.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1722.0, + 1403.0, + 1722.0, + 1403.0, + 1756.0, + 1259.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 534.0, + 1750.0, + 534.0, + 1787.0, + 295.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1750.0, + 1174.0, + 1750.0, + 1174.0, + 1787.0, + 560.0, + 1787.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 535, + 1405, + 535, + 1405, + 721, + 297, + 721 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 315, + 223, + 1386, + 223, + 1386, + 416, + 315, + 416 + ], + "score": 0.98, + "html": "
StrategyDefinitionBatch?Space complexity# Operations
sp-dense matmuldense +or ⊙sparse +
naive mixingEq 1-2noO(Nr+NE+NR)10NR
late mixingEq3yesO(NT +bNE +bNR)NRNR0
reified KBEq 4yesO(bNr+bNE)310
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1117, + 1404, + 1117, + 1404, + 1303, + 297, + 1303 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1689, + 1405, + 1689, + 1405, + 1878, + 296, + 1878 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 948, + 1404, + 948, + 1404, + 1103, + 297, + 1103 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 735, + 1404, + 735, + 1404, + 857, + 298, + 857 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1403, + 1316, + 1403, + 1410, + 298, + 1410 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1524, + 1402, + 1524, + 1402, + 1618, + 298, + 1618 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1891, + 1403, + 1891, + 1403, + 1985, + 299, + 1985 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 664, + 856, + 1031, + 856, + 1031, + 942, + 664, + 942 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 296, + 448, + 1399, + 448, + 1399, + 513, + 296, + 513 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 628, + 1631, + 1065, + 1631, + 1065, + 1676, + 628, + 1676 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 307, + 1421, + 1374, + 1421, + 1374, + 1496, + 307, + 1496 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1366, + 882, + 1400, + 882, + 1400, + 912, + 1366, + 912 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1639, + 1400, + 1639, + 1400, + 1668, + 1366, + 1668 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 327, + 2003, + 1236, + 2003, + 1236, + 2035, + 327, + 2035 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.797 + }, + { + "category_id": 14, + "poly": [ + 664, + 848, + 1031, + 848, + 1031, + 945, + 664, + 945 + ], + "score": 0.95, + "latex": "f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( \\mathbf { r } [ k ] \\cdot \\mathbf { x } \\mathbf { M } _ { r _ { k } } )" + }, + { + "category_id": 14, + "poly": [ + 625, + 1629, + 1069, + 1629, + 1069, + 1676, + 625, + 1676 + ], + "score": 0.93, + "latex": "f o l l o w \\mathbf { ( x , r ) } = ( \\mathbf { x M } _ { s u b j } ^ { T } \\odot \\mathbf { r M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 478, + 567, + 563, + 567, + 563, + 600, + 478, + 600 + ], + "score": 0.93, + "latex": "O ( N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 407, + 1815, + 504, + 1815, + 504, + 1848, + 407, + 1848 + ], + "score": 0.93, + "latex": "O ( b N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 807, + 1814, + 905, + 1814, + 905, + 1848, + 807, + 1848 + ], + "score": 0.93, + "latex": "O ( b N _ { E } )" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1349, + 1278, + 1349, + 1278, + 1381, + 1165, + 1381 + ], + "score": 0.93, + "latex": "( i _ { \\ell } , j _ { \\ell } , k _ { \\ell } )" + }, + { + "category_id": 13, + "poly": [ + 905, + 980, + 1035, + 980, + 1035, + 1013, + 905, + 1013 + ], + "score": 0.93, + "latex": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { b } \\right]" + }, + { + "category_id": 13, + "poly": [ + 952, + 1349, + 1117, + 1349, + 1117, + 1380, + 952, + 1380 + ], + "score": 0.92, + "latex": "\\ell = 1 , \\ldots , N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 430, + 1688, + 517, + 1688, + 517, + 1729, + 430, + 1729 + ], + "score": 0.92, + "latex": "\\mathbf { x M } _ { s u b j } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 766, + 537, + 851, + 537, + 851, + 571, + 766, + 571 + ], + "score": 0.92, + "latex": "O ( N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1088, + 1688, + 1158, + 1688, + 1158, + 1726, + 1088, + 1726 + ], + "score": 0.92, + "latex": "\\mathbf { r } \\mathbf { M } _ { r e l } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1317, + 1169, + 1317, + 1169, + 1350, + 1086, + 1350 + ], + "score": 0.92, + "latex": "( i , j , k )" + }, + { + "category_id": 13, + "poly": [ + 894, + 1784, + 979, + 1784, + 979, + 1817, + 894, + 1817 + ], + "score": 0.92, + "latex": "O ( N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 848, + 1317, + 963, + 1317, + 963, + 1351, + 848, + 1351 + ], + "score": 0.92, + "latex": "r _ { k } ( x _ { i } , x _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1814, + 1336, + 1814, + 1336, + 1848, + 1153, + 1848 + ], + "score": 0.91, + "latex": "O ( b N _ { T } + b N _ { E } )" + }, + { + "category_id": 14, + "poly": [ + 309, + 1420, + 1373, + 1420, + 1373, + 1498, + 309, + 1498 + ], + "score": 0.91, + "latex": "\\mathbf { M } _ { s u b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = i \\ell } & \\mathbf { M } _ { o b j } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = j \\ell } & { \\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv \\left\\{ \\begin{array} { l l } { 1 \\mathrm { ~ i f ~ } m = k _ { \\ell } } \\\\ { 0 \\mathrm { ~ e l s e ~ } } & { } \\end{array} \\right. \\right. } \\end{array} \\right. \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 621, + 1010, + 718, + 1010, + 718, + 1042, + 621, + 1042 + ], + "score": 0.91, + "latex": "O ( b N _ { E } )" + }, + { + "category_id": 13, + "poly": [ + 453, + 1527, + 525, + 1527, + 525, + 1559, + 453, + 1559 + ], + "score": 0.9, + "latex": "\\mathbf { M } _ { s u b j }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1318, + 1316, + 1318, + 1316, + 1348, + 1252, + 1348 + ], + "score": 0.9, + "latex": "i , j , k" + }, + { + "category_id": 13, + "poly": [ + 422, + 1557, + 480, + 1557, + 480, + 1587, + 422, + 1587 + ], + "score": 0.9, + "latex": "{ { \\bf { M } } _ { r e l } }" + }, + { + "category_id": 13, + "poly": [ + 400, + 1011, + 463, + 1011, + 463, + 1041, + 400, + 1041 + ], + "score": 0.9, + "latex": "\\mathbf { X M } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1754, + 360, + 1754, + 360, + 1788, + 296, + 1788 + ], + "score": 0.9, + "latex": "\\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 413, + 1352, + 480, + 1352, + 480, + 1381, + 413, + 1381 + ], + "score": 0.9, + "latex": "x _ { i } , x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 420, + 599, + 482, + 599, + 482, + 629, + 420, + 629 + ], + "score": 0.89, + "latex": "\\mathbf { x M } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 450, + 1164, + 450, + 1164, + 480, + 1122, + 480 + ], + "score": 0.89, + "latex": "N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 684, + 481, + 728, + 481, + 728, + 511, + 684, + 511 + ], + "score": 0.89, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 504, + 1847, + 547, + 1847, + 547, + 1876, + 504, + 1876 + ], + "score": 0.89, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 692, + 1348, + 735, + 1348, + 735, + 1378, + 692, + 1378 + ], + "score": 0.89, + "latex": "N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 629, + 1397, + 629, + 1397, + 662, + 1174, + 662 + ], + "score": 0.88, + "latex": "O ( N _ { T } + N _ { E } + N _ { R } )" + }, + { + "category_id": 13, + "poly": [ + 385, + 1072, + 429, + 1072, + 429, + 1103, + 385, + 1103 + ], + "score": 0.88, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 980, + 1401, + 980, + 1401, + 1011, + 1357, + 1011 + ], + "score": 0.88, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1527, + 1178, + 1527, + 1178, + 1559, + 1115, + 1559 + ], + "score": 0.88, + "latex": "\\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 534, + 1042, + 790, + 1042, + 790, + 1074, + 534, + 1074 + ], + "score": 0.88, + "latex": "O ( b N _ { E } + b N _ { R } + N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1252, + 598, + 1338, + 598, + 1338, + 630, + 1252, + 630 + ], + "score": 0.88, + "latex": "O ( N _ { E } )" + }, + { + "category_id": 13, + "poly": [ + 381, + 481, + 424, + 481, + 424, + 511, + 381, + 511 + ], + "score": 0.88, + "latex": "N _ { E }" + }, + { + "category_id": 13, + "poly": [ + 1325, + 538, + 1374, + 538, + 1374, + 569, + 1325, + 569 + ], + "score": 0.88, + "latex": "\\mathbf { M } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 538, + 1351, + 567, + 1351, + 567, + 1378, + 538, + 1378 + ], + "score": 0.86, + "latex": "r _ { k }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1590, + 396, + 1590, + 396, + 1615, + 371, + 1615 + ], + "score": 0.84, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 1203, + 354, + 1245, + 354, + 1245, + 380, + 1203, + 380 + ], + "score": 0.83, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1307, + 319, + 1350, + 319, + 1350, + 348, + 1307, + 348 + ], + "score": 0.81, + "latex": "\\overline { { N _ { R } } }" + }, + { + "category_id": 13, + "poly": [ + 797, + 1952, + 859, + 1952, + 859, + 1982, + 797, + 1982 + ], + "score": 0.8, + "latex": "{ \\mathrm { K B s } } ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 767, + 351, + 1025, + 351, + 1025, + 381, + 767, + 381 + ], + "score": 0.79, + "latex": "O ( N _ { T } + b N _ { E } + b N _ { R } )" + }, + { + "category_id": 13, + "poly": [ + 771, + 981, + 787, + 981, + 787, + 1007, + 771, + 1007 + ], + "score": 0.78, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 699, + 1527, + 715, + 1527, + 715, + 1553, + 699, + 1553 + ], + "score": 0.76, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 550, + 1557, + 565, + 1557, + 565, + 1583, + 550, + 1583 + ], + "score": 0.75, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 298, + 1380, + 313, + 1380, + 313, + 1406, + 298, + 1406 + ], + "score": 0.74, + "latex": "\\ell \\cdot" + }, + { + "category_id": 13, + "poly": [ + 1084, + 354, + 1126, + 354, + 1126, + 379, + 1084, + 379 + ], + "score": 0.74, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 804, + 381, + 987, + 381, + 987, + 412, + 804, + 412 + ], + "score": 0.74, + "latex": "O ( b N _ { T } + b N _ { E } )" + }, + { + "category_id": 13, + "poly": [ + 1245, + 1527, + 1261, + 1527, + 1261, + 1553, + 1245, + 1553 + ], + "score": 0.73, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1050, + 482, + 1065, + 482, + 1065, + 508, + 1050, + 508 + ], + "score": 0.73, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 778, + 320, + 1018, + 320, + 1018, + 350, + 778, + 350 + ], + "score": 0.73, + "latex": "O ( N _ { T } + N _ { E } + N _ { R } )" + }, + { + "category_id": 13, + "poly": [ + 1083, + 629, + 1144, + 629, + 1144, + 662, + 1083, + 662 + ], + "score": 0.72, + "latex": "\\mathbf { \\nabla } \\cdot ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 786, + 1527, + 801, + 1527, + 801, + 1553, + 786, + 1553 + ], + "score": 0.65, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 880, + 1699, + 899, + 1699, + 899, + 1721, + 880, + 1721 + ], + "score": 0.65, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1386, + 951, + 1401, + 951, + 1401, + 977, + 1386, + 977 + ], + "score": 0.65, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 540, + 981, + 564, + 981, + 564, + 1008, + 540, + 1008 + ], + "score": 0.6, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 290, + 1262, + 290, + 1262, + 315, + 1238, + 315 + ], + "score": 0.45, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 423, + 1730, + 440, + 1730, + 440, + 1751, + 423, + 1751 + ], + "score": 0.41, + "latex": "\\mathbf { r }" + }, + { + "category_id": 13, + "poly": [ + 640, + 660, + 693, + 660, + 693, + 691, + 640, + 691 + ], + "score": 0.39, + "latex": "\\operatorname { E q } 2" + }, + { + "category_id": 13, + "poly": [ + 1318, + 292, + 1339, + 292, + 1339, + 314, + 1318, + 314 + ], + "score": 0.37, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 895, + 604, + 915, + 604, + 915, + 627, + 895, + 627 + ], + "score": 0.36, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 628, + 1145, + 628, + 1145, + 662, + 1010, + 662 + ], + "score": 0.27, + "latex": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "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": [ + 330.0, + 1998.0, + 1240.0, + 1998.0, + 1240.0, + 2041.0, + 330.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 537.0, + 765.0, + 537.0, + 765.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 537.0, + 1324.0, + 537.0, + 1324.0, + 573.0, + 852.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 537.0, + 1405.0, + 537.0, + 1405.0, + 573.0, + 1375.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 565.0, + 477.0, + 565.0, + 477.0, + 601.0, + 295.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 565.0, + 1405.0, + 565.0, + 1405.0, + 601.0, + 564.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 596.0, + 419.0, + 596.0, + 419.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 596.0, + 894.0, + 596.0, + 894.0, + 636.0, + 483.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 596.0, + 1251.0, + 596.0, + 1251.0, + 636.0, + 916.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 596.0, + 1407.0, + 596.0, + 1407.0, + 636.0, + 1339.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 628.0, + 1009.0, + 628.0, + 1009.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 628.0, + 1173.0, + 628.0, + 1173.0, + 664.0, + 1146.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 628.0, + 1407.0, + 628.0, + 1407.0, + 664.0, + 1398.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 655.0, + 639.0, + 655.0, + 639.0, + 697.0, + 292.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 655.0, + 1406.0, + 655.0, + 1406.0, + 697.0, + 694.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 691.0, + 588.0, + 691.0, + 588.0, + 721.0, + 293.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1116.0, + 1406.0, + 1116.0, + 1406.0, + 1153.0, + 292.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1147.0, + 1406.0, + 1147.0, + 1406.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1213.0, + 294.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1209.0, + 1405.0, + 1209.0, + 1405.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1238.0, + 1405.0, + 1238.0, + 1405.0, + 1274.0, + 294.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1271.0, + 1128.0, + 1271.0, + 1128.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1678.0, + 429.0, + 1678.0, + 429.0, + 1742.0, + 285.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1678.0, + 879.0, + 1678.0, + 879.0, + 1742.0, + 518.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1678.0, + 1087.0, + 1678.0, + 1087.0, + 1742.0, + 900.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1678.0, + 1415.0, + 1678.0, + 1415.0, + 1742.0, + 1159.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1722.0, + 422.0, + 1722.0, + 422.0, + 1759.0, + 293.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1759.0, + 441.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1753.0, + 1406.0, + 1753.0, + 1406.0, + 1789.0, + 361.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 893.0, + 1784.0, + 893.0, + 1818.0, + 294.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1784.0, + 1406.0, + 1784.0, + 1406.0, + 1818.0, + 980.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1812.0, + 406.0, + 1812.0, + 406.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1812.0, + 806.0, + 1812.0, + 806.0, + 1852.0, + 505.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1812.0, + 1152.0, + 1812.0, + 1152.0, + 1852.0, + 906.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1812.0, + 1406.0, + 1812.0, + 1406.0, + 1852.0, + 1337.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1845.0, + 503.0, + 1845.0, + 503.0, + 1883.0, + 295.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1845.0, + 558.0, + 1845.0, + 558.0, + 1883.0, + 548.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 946.0, + 1385.0, + 946.0, + 1385.0, + 984.0, + 294.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 946.0, + 1407.0, + 946.0, + 1407.0, + 984.0, + 1402.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 539.0, + 976.0, + 539.0, + 1016.0, + 294.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 976.0, + 770.0, + 976.0, + 770.0, + 1016.0, + 565.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 976.0, + 904.0, + 976.0, + 904.0, + 1016.0, + 788.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 976.0, + 1356.0, + 976.0, + 1356.0, + 1016.0, + 1036.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1016.0, + 1402.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1008.0, + 399.0, + 1008.0, + 399.0, + 1047.0, + 292.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1008.0, + 620.0, + 1008.0, + 620.0, + 1047.0, + 464.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1008.0, + 1406.0, + 1008.0, + 1406.0, + 1047.0, + 719.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1037.0, + 533.0, + 1037.0, + 533.0, + 1077.0, + 292.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1037.0, + 1407.0, + 1037.0, + 1407.0, + 1077.0, + 791.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 384.0, + 1071.0, + 384.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1071.0, + 609.0, + 1071.0, + 609.0, + 1107.0, + 430.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 736.0, + 1406.0, + 736.0, + 1406.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 764.0, + 1406.0, + 764.0, + 1406.0, + 803.0, + 292.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 834.0, + 292.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 830.0, + 452.0, + 830.0, + 452.0, + 856.0, + 297.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 847.0, + 1314.0, + 847.0, + 1351.0, + 293.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1314.0, + 1085.0, + 1314.0, + 1085.0, + 1351.0, + 964.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1314.0, + 1251.0, + 1314.0, + 1251.0, + 1351.0, + 1170.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1314.0, + 1404.0, + 1314.0, + 1404.0, + 1351.0, + 1317.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1347.0, + 412.0, + 1347.0, + 412.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1347.0, + 537.0, + 1347.0, + 537.0, + 1381.0, + 481.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1347.0, + 691.0, + 1347.0, + 691.0, + 1381.0, + 568.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1347.0, + 951.0, + 1347.0, + 951.0, + 1381.0, + 736.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1347.0, + 1164.0, + 1347.0, + 1164.0, + 1381.0, + 1118.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1347.0, + 1404.0, + 1347.0, + 1404.0, + 1381.0, + 1279.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 297.0, + 1376.0, + 297.0, + 1413.0, + 293.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1376.0, + 787.0, + 1376.0, + 787.0, + 1413.0, + 314.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1524.0, + 452.0, + 1524.0, + 452.0, + 1561.0, + 296.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1524.0, + 698.0, + 1524.0, + 698.0, + 1561.0, + 526.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1524.0, + 785.0, + 1524.0, + 785.0, + 1561.0, + 716.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1524.0, + 1114.0, + 1524.0, + 1114.0, + 1561.0, + 802.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1524.0, + 1244.0, + 1524.0, + 1244.0, + 1561.0, + 1179.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1524.0, + 1407.0, + 1524.0, + 1407.0, + 1561.0, + 1262.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1556.0, + 421.0, + 1556.0, + 421.0, + 1590.0, + 296.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1556.0, + 549.0, + 1556.0, + 549.0, + 1590.0, + 481.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1556.0, + 1408.0, + 1556.0, + 1408.0, + 1590.0, + 566.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1584.0, + 370.0, + 1584.0, + 370.0, + 1621.0, + 295.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1584.0, + 647.0, + 1584.0, + 647.0, + 1621.0, + 397.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1889.0, + 1404.0, + 1889.0, + 1404.0, + 1927.0, + 293.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1919.0, + 1404.0, + 1919.0, + 1404.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1954.0, + 796.0, + 1954.0, + 796.0, + 1983.0, + 295.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1954.0, + 870.0, + 1954.0, + 870.0, + 1983.0, + 860.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 450.0, + 1121.0, + 450.0, + 1121.0, + 482.0, + 296.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 450.0, + 1401.0, + 450.0, + 1401.0, + 482.0, + 1165.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 479.0, + 380.0, + 479.0, + 380.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 479.0, + 683.0, + 479.0, + 683.0, + 515.0, + 425.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 479.0, + 1049.0, + 479.0, + 1049.0, + 515.0, + 729.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 479.0, + 1217.0, + 479.0, + 1217.0, + 515.0, + 1066.0, + 515.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1127, + 1404, + 1127, + 1404, + 1374, + 297, + 1374 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1404, + 1819, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1557, + 1403, + 1557, + 1403, + 1741, + 299, + 1741 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 747, + 1405, + 747, + 1405, + 995, + 298, + 995 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1388, + 1404, + 1388, + 1404, + 1542, + 298, + 1542 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 403, + 244, + 1298, + 244, + 1298, + 581, + 403, + 581 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 298, + 614, + 1400, + 614, + 1400, + 708, + 298, + 708 + ], + "score": 0.954 + }, + { + "category_id": 0, + "poly": [ + 301, + 1769, + 715, + 1769, + 715, + 1801, + 301, + 1801 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 300, + 1078, + 529, + 1078, + 529, + 1109, + 300, + 1109 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 1025, + 557, + 1025, + 557, + 1060, + 300, + 1060 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.725 + }, + { + "category_id": 13, + "poly": [ + 345, + 1218, + 419, + 1218, + 419, + 1253, + 345, + 1253 + ], + "score": 0.93, + "latex": "O ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1187, + 1316, + 1187, + 1316, + 1220, + 1241, + 1220 + ], + "score": 0.91, + "latex": "O ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 471, + 1250, + 565, + 1250, + 565, + 1278, + 471, + 1278 + ], + "score": 0.91, + "latex": "b = 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1193, + 1097, + 1193, + 1097, + 1216, + 1077, + 1216 + ], + "score": 0.76, + "latex": "^ n" + }, + { + "category_id": 13, + "poly": [ + 671, + 1589, + 703, + 1589, + 703, + 1616, + 671, + 1616 + ], + "score": 0.76, + "latex": "7 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1164, + 381, + 1164, + 381, + 1186, + 361, + 1186 + ], + "score": 0.76, + "latex": "\\mathbf { \\nabla } \\cdot n" + }, + { + "category_id": 13, + "poly": [ + 360, + 1281, + 477, + 1281, + 477, + 1313, + 360, + 1313 + ], + "score": 0.76, + "latex": "\\mathrm { \\ q p s { = } 1 } 2 8 0" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1194, + 1035, + 1194, + 1035, + 1216, + 1014, + 1216 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 298, + 1163, + 317, + 1163, + 317, + 1186, + 298, + 1186 + ], + "score": 0.74, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 508, + 1450, + 567, + 1450, + 567, + 1478, + 508, + 1478 + ], + "score": 0.64, + "latex": "2 5 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 1047, + 934, + 1063, + 934, + 1063, + 960, + 1047, + 960 + ], + "score": 0.61, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1480, + 1332, + 1480, + 1332, + 1509, + 1285, + 1509 + ], + "score": 0.57, + "latex": "5 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 431, + 1710, + 477, + 1710, + 477, + 1738, + 431, + 1738 + ], + "score": 0.51, + "latex": "2 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1221, + 1360, + 1221, + 1360, + 1252, + 1189, + 1252 + ], + "score": 0.42, + "latex": "( f o l l o w ( \\mathbf { x } , \\mathbf { r } ) , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 939, + 1281, + 1017, + 1281, + 1017, + 1310, + 939, + 1310 + ], + "score": 0.37, + "latex": "1 0 0 \\mathrm { m s }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1420, + 1114, + 1420, + 1114, + 1447, + 1082, + 1447 + ], + "score": 0.32, + "latex": "3 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 903, + 1091, + 903, + 1091, + 931, + 1041, + 931 + ], + "score": 0.29, + "latex": "K B s" + }, + { + "category_id": 13, + "poly": [ + 836, + 1511, + 929, + 1511, + 929, + 1541, + 836, + 1541 + ], + "score": 0.28, + "latex": "1 2 { , } 0 0 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1679, + 1300, + 1679, + 1300, + 1708, + 1254, + 1708 + ], + "score": 0.26, + "latex": "1 0 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 245.0, + 647.0, + 245.0, + 647.0, + 270.0, + 477.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 249.0, + 952.0, + 249.0, + 952.0, + 269.0, + 777.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 246.0, + 1233.0, + 246.0, + 1233.0, + 270.0, + 1096.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 274.0, + 435.0, + 274.0, + 435.0, + 297.0, + 405.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 273.0, + 658.0, + 273.0, + 658.0, + 294.0, + 611.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 274.0, + 1039.0, + 274.0, + 1039.0, + 298.0, + 1008.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 270.0, + 1163.0, + 270.0, + 1163.0, + 295.0, + 1072.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 285.0, + 685.0, + 285.0, + 685.0, + 327.0, + 610.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 299.0, + 741.0, + 299.0, + 741.0, + 326.0, + 704.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 292.0, + 1130.0, + 292.0, + 1130.0, + 310.0, + 1073.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 326.0, + 436.0, + 326.0, + 436.0, + 349.0, + 407.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 321.0, + 677.0, + 321.0, + 677.0, + 345.0, + 611.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 331.0, + 1038.0, + 331.0, + 1038.0, + 354.0, + 1008.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 380.0, + 434.0, + 380.0, + 434.0, + 401.0, + 408.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 385.0, + 1042.0, + 385.0, + 1042.0, + 409.0, + 1007.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 414.0, + 736.0, + 414.0, + 736.0, + 437.0, + 706.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 432.0, + 434.0, + 432.0, + 434.0, + 453.0, + 408.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 485.0, + 434.0, + 485.0, + 434.0, + 505.0, + 408.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 468.0, + 741.0, + 468.0, + 741.0, + 492.0, + 705.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 467.0, + 846.0, + 467.0, + 846.0, + 504.0, + 773.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 501.0, + 814.0, + 501.0, + 814.0, + 519.0, + 775.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 497.0, + 1039.0, + 497.0, + 1039.0, + 521.0, + 1008.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 526.0, + 736.0, + 526.0, + 736.0, + 545.0, + 697.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 514.0, + 839.0, + 514.0, + 839.0, + 539.0, + 774.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 544.0, + 518.0, + 544.0, + 518.0, + 568.0, + 488.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 546.0, + 604.0, + 546.0, + 604.0, + 565.0, + 573.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 545.0, + 693.0, + 545.0, + 693.0, + 568.0, + 663.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 544.0, + 804.0, + 544.0, + 804.0, + 568.0, + 773.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 544.0, + 899.0, + 544.0, + 899.0, + 568.0, + 868.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 545.0, + 995.0, + 545.0, + 995.0, + 568.0, + 963.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 545.0, + 1067.0, + 545.0, + 1067.0, + 568.0, + 1036.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 544.0, + 1181.0, + 544.0, + 1181.0, + 568.0, + 1150.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 545.0, + 1295.0, + 545.0, + 1295.0, + 568.0, + 1265.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 563.0, + 604.0, + 563.0, + 604.0, + 583.0, + 523.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 563.0, + 910.0, + 563.0, + 910.0, + 583.0, + 819.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 563.0, + 1210.0, + 563.0, + 1210.0, + 583.0, + 1121.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.75, + 357.5, + 739.75, + 357.5, + 739.75, + 380.5, + 702.75, + 380.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.25, + 441.5, + 1040.25, + 441.5, + 1040.25, + 464.5, + 1004.25, + 464.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 646.0, + 1405.0, + 646.0, + 1405.0, + 680.0, + 294.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 674.0, + 963.0, + 674.0, + 963.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1769.0, + 718.0, + 1769.0, + 718.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1075.0, + 535.0, + 1075.0, + 535.0, + 1114.0, + 293.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1021.0, + 562.0, + 1021.0, + 562.0, + 1067.0, + 291.0, + 1067.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": [ + 292.0, + 1126.0, + 1405.0, + 1126.0, + 1405.0, + 1163.0, + 292.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 297.0, + 1158.0, + 297.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1158.0, + 360.0, + 1158.0, + 360.0, + 1195.0, + 318.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1158.0, + 1406.0, + 1158.0, + 1406.0, + 1195.0, + 382.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1187.0, + 1013.0, + 1187.0, + 1013.0, + 1223.0, + 292.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1187.0, + 1076.0, + 1187.0, + 1076.0, + 1223.0, + 1036.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1187.0, + 1240.0, + 1187.0, + 1240.0, + 1223.0, + 1098.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1187.0, + 1405.0, + 1187.0, + 1405.0, + 1223.0, + 1317.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 344.0, + 1218.0, + 344.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1218.0, + 1188.0, + 1218.0, + 1188.0, + 1255.0, + 420.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1218.0, + 1406.0, + 1218.0, + 1406.0, + 1255.0, + 1361.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1248.0, + 470.0, + 1248.0, + 470.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1248.0, + 1405.0, + 1248.0, + 1405.0, + 1285.0, + 566.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1279.0, + 359.0, + 1279.0, + 359.0, + 1316.0, + 291.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1279.0, + 938.0, + 1279.0, + 938.0, + 1316.0, + 478.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1316.0, + 1018.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1342.0, + 1338.0, + 1342.0, + 1338.0, + 1376.0, + 295.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1408.0, + 1818.0, + 1408.0, + 1855.0, + 293.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1916.0, + 292.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2011.0, + 291.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2004.0, + 1224.0, + 2004.0, + 1224.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1554.0, + 1405.0, + 1554.0, + 1405.0, + 1592.0, + 293.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 670.0, + 1583.0, + 670.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1624.0, + 704.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1616.0, + 1407.0, + 1616.0, + 1407.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1681.0, + 297.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1253.0, + 1677.0, + 1253.0, + 1714.0, + 293.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1714.0, + 1301.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1711.0, + 430.0, + 1711.0, + 430.0, + 1743.0, + 297.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1711.0, + 685.0, + 1711.0, + 685.0, + 1743.0, + 478.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 785.0, + 293.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 779.0, + 1407.0, + 779.0, + 1407.0, + 817.0, + 293.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 811.0, + 1407.0, + 811.0, + 1407.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 840.0, + 1407.0, + 840.0, + 1407.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 901.0, + 1040.0, + 901.0, + 1040.0, + 935.0, + 296.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 901.0, + 1403.0, + 901.0, + 1403.0, + 935.0, + 1092.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 933.0, + 1046.0, + 933.0, + 1046.0, + 966.0, + 295.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 933.0, + 1408.0, + 933.0, + 1408.0, + 966.0, + 1064.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 963.0, + 706.0, + 963.0, + 706.0, + 997.0, + 295.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1417.0, + 1081.0, + 1417.0, + 1081.0, + 1450.0, + 296.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1417.0, + 1401.0, + 1417.0, + 1401.0, + 1450.0, + 1115.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 507.0, + 1446.0, + 507.0, + 1485.0, + 293.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1446.0, + 1409.0, + 1446.0, + 1409.0, + 1485.0, + 568.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1478.0, + 1284.0, + 1478.0, + 1284.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1478.0, + 1408.0, + 1478.0, + 1408.0, + 1515.0, + 1333.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1509.0, + 835.0, + 1509.0, + 835.0, + 1546.0, + 294.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1509.0, + 1276.0, + 1509.0, + 1276.0, + 1546.0, + 930.0, + 1546.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 855, + 1405, + 855, + 1405, + 1253, + 297, + 1253 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1423, + 1406, + 1423, + 1406, + 1639, + 297, + 1639 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 445, + 297, + 445 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1772, + 1404, + 1772, + 1404, + 1927, + 298, + 1927 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 459, + 1403, + 459, + 1403, + 583, + 299, + 583 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 686, + 1405, + 686, + 1405, + 841, + 298, + 841 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1315, + 1405, + 1315, + 1405, + 1408, + 298, + 1408 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1402, + 1941, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 471, + 1675, + 1228, + 1675, + 1228, + 1752, + 471, + 1752 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1269, + 1140, + 1269, + 1140, + 1301, + 298, + 1301 + ], + "score": 0.926 + }, + { + "category_id": 8, + "poly": [ + 554, + 591, + 1145, + 591, + 1145, + 631, + 554, + 631 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 313, + 639, + 1160, + 639, + 1160, + 673, + 313, + 673 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.782 + }, + { + "category_id": 13, + "poly": [ + 735, + 748, + 798, + 748, + 798, + 782, + 735, + 782 + ], + "score": 0.93, + "latex": "f ^ { t } ( q )" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1775, + 1295, + 1775, + 1295, + 1805, + 1204, + 1805 + ], + "score": 0.89, + "latex": "f _ { \\mathrm { C V T E } }" + }, + { + "category_id": 14, + "poly": [ + 469, + 1672, + 1231, + 1672, + 1231, + 1755, + 469, + 1755 + ], + "score": 0.89, + "latex": "\\begin{array} { r l } & { \\mathbf { r } _ { \\mathrm { E E } } = f _ { \\mathrm { E E } } ( q ) ; \\mathbf { r } _ { \\mathrm { E C V T } } = f _ { \\mathrm { E C V T } } ( q ) ; \\mathbf { r } _ { \\mathrm { C V T E } } = f _ { \\mathrm { C V T E } } ( q ) } \\\\ & { \\qquad \\hat { \\mathbf { a } } = f o l l o w ( f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E C V T } } ) , \\mathbf { r } _ { \\mathrm { C V T E } } ) + f o l l o w ( \\mathbf { x } , \\mathbf { r } _ { \\mathrm { E E } } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 557, + 590, + 1139, + 590, + 1139, + 631, + 557, + 631 + ], + "score": 0.87, + "latex": "\\mathrm { f o r } t = 1 , 2 , 3 ; ~ { \\bf r } ^ { t } = f ^ { t } ( q ) ; ~ { \\bf x } ^ { t } = f o l l o w ( { \\bf x } ^ { t - 1 } , { \\bf r } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1258, + 685, + 1293, + 685, + 1293, + 716, + 1258, + 716 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 454, + 550, + 484, + 550, + 484, + 580, + 454, + 580 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 490, + 1334, + 490, + 1334, + 518, + 1309, + 518 + ], + "score": 0.85, + "latex": "\\mathbf { r } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1057, + 1775, + 1146, + 1775, + 1146, + 1806, + 1057, + 1806 + ], + "score": 0.83, + "latex": "f _ { \\mathrm { E C V T } }" + }, + { + "category_id": 13, + "poly": [ + 982, + 1775, + 1045, + 1775, + 1045, + 1806, + 982, + 1806 + ], + "score": 0.83, + "latex": "f _ { \\mathrm { E \\to E } }" + }, + { + "category_id": 13, + "poly": [ + 580, + 689, + 604, + 689, + 604, + 715, + 580, + 715 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 442, + 638, + 551, + 638, + 551, + 674, + 442, + 674 + ], + "score": 0.8, + "latex": "\\left( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 794, + 1808, + 811, + 1808, + 811, + 1835, + 794, + 1835 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1130, + 1582, + 1147, + 1582, + 1147, + 1608, + 1130, + 1608 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 338, + 785, + 355, + 785, + 355, + 811, + 338, + 811 + ], + "score": 0.76, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 893, + 557, + 910, + 557, + 910, + 584, + 893, + 584 + ], + "score": 0.76, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 398, + 1382, + 415, + 1382, + 415, + 1409, + 398, + 1409 + ], + "score": 0.75, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 873, + 785, + 892, + 785, + 892, + 811, + 873, + 811 + ], + "score": 0.7, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1032, + 979, + 1155, + 979, + 1155, + 1011, + 1032, + 1011 + ], + "score": 0.48, + "latex": "\\ell o l l o w ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 780, + 1381, + 799, + 1381, + 799, + 1404, + 780, + 1404 + ], + "score": 0.45, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 614, + 1774, + 633, + 1774, + 633, + 1801, + 614, + 1801 + ], + "score": 0.33, + "latex": "\\hat { \\mathbf { a } }" + }, + { + "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": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 856.0, + 1407.0, + 856.0, + 1407.0, + 892.0, + 294.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1405.0, + 885.0, + 1405.0, + 924.0, + 294.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 984.0, + 295.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 979.0, + 1031.0, + 979.0, + 1031.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 979.0, + 1405.0, + 979.0, + 1405.0, + 1015.0, + 1156.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1048.0, + 291.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1076.0, + 292.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1070.0, + 1405.0, + 1070.0, + 1405.0, + 1106.0, + 294.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1138.0, + 294.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1128.0, + 1403.0, + 1128.0, + 1403.0, + 1167.0, + 292.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1228.0, + 292.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1220.0, + 415.0, + 1220.0, + 415.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1426.0, + 1403.0, + 1426.0, + 1403.0, + 1457.0, + 296.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1454.0, + 1406.0, + 1454.0, + 1406.0, + 1489.0, + 292.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1484.0, + 1406.0, + 1484.0, + 1406.0, + 1519.0, + 294.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1406.0, + 1514.0, + 1406.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1403.0, + 1545.0, + 1403.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1575.0, + 1129.0, + 1575.0, + 1129.0, + 1611.0, + 292.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1575.0, + 1406.0, + 1575.0, + 1406.0, + 1611.0, + 1148.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 926.0, + 1605.0, + 926.0, + 1642.0, + 294.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 381.0, + 1404.0, + 381.0, + 1404.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 428.0, + 411.0, + 428.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1772.0, + 613.0, + 1772.0, + 613.0, + 1810.0, + 296.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1772.0, + 981.0, + 1772.0, + 981.0, + 1810.0, + 634.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1772.0, + 1056.0, + 1772.0, + 1056.0, + 1810.0, + 1046.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1772.0, + 1203.0, + 1772.0, + 1203.0, + 1810.0, + 1147.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1772.0, + 1404.0, + 1772.0, + 1404.0, + 1810.0, + 1296.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 793.0, + 1803.0, + 793.0, + 1836.0, + 294.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1836.0, + 812.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 1406.0, + 1832.0, + 1406.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1899.0, + 293.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1895.0, + 915.0, + 1895.0, + 915.0, + 1924.0, + 298.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1408.0, + 459.0, + 1408.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1308.0, + 488.0, + 1308.0, + 527.0, + 292.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 488.0, + 1405.0, + 488.0, + 1405.0, + 527.0, + 1335.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 550.0, + 453.0, + 550.0, + 453.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 550.0, + 892.0, + 550.0, + 892.0, + 586.0, + 485.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 550.0, + 1154.0, + 550.0, + 1154.0, + 586.0, + 911.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 685.0, + 579.0, + 685.0, + 579.0, + 721.0, + 295.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 685.0, + 1257.0, + 685.0, + 1257.0, + 721.0, + 605.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 685.0, + 1405.0, + 685.0, + 1405.0, + 721.0, + 1294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 717.0, + 1407.0, + 717.0, + 1407.0, + 754.0, + 295.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 745.0, + 734.0, + 745.0, + 734.0, + 786.0, + 293.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 745.0, + 1406.0, + 745.0, + 1406.0, + 786.0, + 799.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 337.0, + 778.0, + 337.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 778.0, + 872.0, + 778.0, + 872.0, + 815.0, + 356.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 778.0, + 1405.0, + 778.0, + 1405.0, + 815.0, + 893.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 806.0, + 1408.0, + 806.0, + 1408.0, + 846.0, + 293.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1407.0, + 1312.0, + 1407.0, + 1353.0, + 293.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 1405.0, + 1343.0, + 1405.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1376.0, + 397.0, + 1376.0, + 397.0, + 1412.0, + 293.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1376.0, + 779.0, + 1376.0, + 779.0, + 1412.0, + 416.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1376.0, + 990.0, + 1376.0, + 990.0, + 1412.0, + 800.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 1140.0, + 1265.0, + 1140.0, + 1307.0, + 293.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 637.0, + 441.0, + 637.0, + 441.0, + 677.0, + 307.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 637.0, + 1168.0, + 637.0, + 1168.0, + 677.0, + 552.0, + 677.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1274, + 1405, + 1274, + 1405, + 1611, + 297, + 1611 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 778, + 1405, + 778, + 1405, + 1059, + 296, + 1059 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1624, + 1405, + 1624, + 1405, + 1872, + 297, + 1872 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 397, + 1404, + 397, + 1404, + 554, + 297, + 554 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 385, + 298, + 385 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 627, + 1403, + 627, + 1403, + 765, + 298, + 765 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1130, + 1404, + 1130, + 1404, + 1260, + 297, + 1260 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1887, + 1404, + 1887, + 1404, + 1980, + 300, + 1980 + ], + "score": 0.966 + }, + { + "category_id": 2, + "poly": [ + 321, + 2003, + 1308, + 2003, + 1308, + 2035, + 321, + 2035 + ], + "score": 0.912 + }, + { + "category_id": 8, + "poly": [ + 394, + 570, + 1298, + 570, + 1298, + 612, + 394, + 612 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.767 + }, + { + "category_id": 8, + "poly": [ + 377, + 1074, + 1316, + 1074, + 1316, + 1115, + 377, + 1115 + ], + "score": 0.734 + }, + { + "category_id": 8, + "poly": [ + 375, + 1074, + 1317, + 1074, + 1317, + 1115, + 375, + 1115 + ], + "score": 0.186 + }, + { + "category_id": 13, + "poly": [ + 849, + 520, + 931, + 520, + 931, + 555, + 849, + 555 + ], + "score": 0.93, + "latex": "\\mathbf { x } _ { i } ^ { 0 } = \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 828, + 2004, + 987, + 2004, + 987, + 2035, + 828, + 2035 + ], + "score": 0.93, + "latex": "T \\in \\{ 1 , \\ldots , 6 \\}" + }, + { + "category_id": 13, + "poly": [ + 1034, + 2004, + 1177, + 2004, + 1177, + 2035, + 1034, + 2035 + ], + "score": 0.93, + "latex": "N \\in \\{ 1 , 2 , 3 \\}" + }, + { + "category_id": 13, + "poly": [ + 834, + 629, + 869, + 629, + 869, + 665, + 834, + 665 + ], + "score": 0.92, + "latex": "\\mathbf { x } _ { i } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 376, + 668, + 673, + 668, + 673, + 706, + 376, + 706 + ], + "score": 0.92, + "latex": "\\mathbf { x } _ { i } ^ { t + 1 } = f o l l o w ( \\mathbf { x } _ { i } ^ { t } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 297, + 994, + 541, + 994, + 541, + 1029, + 297, + 1029 + ], + "score": 0.92, + "latex": "\\mathbf { \\bar { x } } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 499, + 1162, + 980, + 1162, + 980, + 1203, + 499, + 1203 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { t = 1 } ^ { T } \\mathbf { x } ^ { t } \\cdot p ^ { t } \\prod _ { t ^ { \\prime } < t } ( 1 - p ^ { t ^ { \\prime } } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1327, + 702, + 1355, + 702, + 1355, + 736, + 1327, + 736 + ], + "score": 0.89, + "latex": "f _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 1168, + 1178, + 1168, + 1178, + 1199, + 1149, + 1199 + ], + "score": 0.88, + "latex": "f _ { r }" + }, + { + "category_id": 13, + "poly": [ + 512, + 1026, + 565, + 1026, + 565, + 1055, + 512, + 1055 + ], + "score": 0.88, + "latex": "\\mathbf { r } ^ { i - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 628, + 1343, + 628, + 1343, + 672, + 1019, + 672 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\hat { \\mathbf { a } } = s o f t m a x ( \\sum _ { i \\in \\{ 1 \\ldots N \\} } \\mathbf { x } _ { i } ^ { T } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 541, + 1200, + 570, + 1200, + 570, + 1231, + 541, + 1231 + ], + "score": 0.88, + "latex": "f _ { p }" + }, + { + "category_id": 14, + "poly": [ + 378, + 1074, + 1321, + 1074, + 1321, + 1115, + 378, + 1115 + ], + "score": 0.87, + "latex": "p ^ { t } = f _ { p } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { r } ^ { t } = f _ { r } ( \\mathbf { h } ^ { t - 1 } ) ; ~ \\mathbf { x } ^ { t } = f o l l o w ( \\mathbf { x } ^ { t - 1 } , \\mathbf { r } ^ { t } ) ; ~ \\mathbf { h } ^ { t } = \\mathrm { L S T M } ( \\mathbf { h } ^ { t - 1 } , \\mathbf { r } ^ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 751, + 901, + 783, + 901, + 783, + 933, + 751, + 933 + ], + "score": 0.87, + "latex": " { \\mathbf { h } } ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 966, + 323, + 966, + 323, + 996, + 298, + 996 + ], + "score": 0.86, + "latex": "p ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1810, + 1166, + 1810, + 1166, + 1839, + 1093, + 1839 + ], + "score": 0.85, + "latex": "8 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1085, + 994, + 1115, + 994, + 1115, + 1025, + 1085, + 1025 + ], + "score": 0.85, + "latex": "\\mathbf { h } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 866, + 1135, + 894, + 1135, + 894, + 1162, + 866, + 1162 + ], + "score": 0.85, + "latex": "\\mathbf { X } _ { t }" + }, + { + "category_id": 14, + "poly": [ + 413, + 569, + 1300, + 569, + 1300, + 611, + 413, + 611 + ], + "score": 0.84, + "latex": "\\mathrm { o r } i = 1 , \\dots , N \\mathrm { ~ a n d ~ } t = 1 , \\dots , T ; \\quad \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\quad \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 492, + 1131, + 492, + 1131, + 518, + 1108, + 518 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 828, + 965, + 854, + 965, + 854, + 994, + 828, + 994 + ], + "score": 0.83, + "latex": "\\mathbf { r } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 492, + 1312, + 492, + 1312, + 518, + 1284, + 518 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 572, + 1231, + 596, + 1231, + 596, + 1256, + 572, + 1256 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 298, + 937, + 321, + 937, + 321, + 963, + 298, + 963 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 899, + 707, + 917, + 707, + 917, + 734, + 899, + 734 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 655, + 736, + 673, + 736, + 673, + 765, + 655, + 765 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 677, + 436, + 694, + 436, + 694, + 462, + 677, + 462 + ], + "score": 0.79, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1138, + 1400, + 1138, + 1400, + 1164, + 1373, + 1164 + ], + "score": 0.79, + "latex": "p _ { t }" + }, + { + "category_id": 13, + "poly": [ + 732, + 1030, + 746, + 1030, + 746, + 1054, + 732, + 1054 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 758, + 939, + 772, + 939, + 772, + 964, + 758, + 964 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 427, + 1171, + 440, + 1171, + 440, + 1195, + 427, + 1195 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1388, + 675, + 1401, + 675, + 1401, + 698, + 1388, + 698 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1108, + 525, + 1121, + 525, + 1121, + 550, + 1108, + 550 + ], + "score": 0.69, + "latex": "\\romannumeral 1" + }, + { + "category_id": 13, + "poly": [ + 1086, + 435, + 1104, + 435, + 1104, + 457, + 1086, + 457 + ], + "score": 0.68, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 874, + 1810, + 912, + 1810, + 912, + 1838, + 874, + 1838 + ], + "score": 0.63, + "latex": "@ 1" + }, + { + "category_id": 13, + "poly": [ + 440, + 575, + 591, + 575, + 591, + 607, + 440, + 607 + ], + "score": 0.56, + "latex": "i = 1 , \\ldots , N" + }, + { + "category_id": 13, + "poly": [ + 577, + 1628, + 608, + 1628, + 608, + 1655, + 577, + 1655 + ], + "score": 0.39, + "latex": "@ ." + }, + { + "category_id": 13, + "poly": [ + 825, + 1810, + 912, + 1810, + 912, + 1839, + 825, + 1839 + ], + "score": 0.35, + "latex": "\\mathrm { H i t s } @ 1" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1999.0, + 827.0, + 1999.0, + 827.0, + 2040.0, + 330.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1999.0, + 1033.0, + 1999.0, + 1033.0, + 2040.0, + 988.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1999.0, + 1312.0, + 1999.0, + 1312.0, + 2040.0, + 1178.0, + 2040.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": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1310.0, + 295.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1305.0, + 1405.0, + 1305.0, + 1405.0, + 1342.0, + 294.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1336.0, + 1408.0, + 1336.0, + 1408.0, + 1372.0, + 291.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1366.0, + 1405.0, + 1366.0, + 1405.0, + 1403.0, + 294.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1407.0, + 1398.0, + 1407.0, + 1433.0, + 294.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 1406.0, + 1429.0, + 1406.0, + 1462.0, + 292.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1456.0, + 1407.0, + 1456.0, + 1407.0, + 1493.0, + 292.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1405.0, + 1487.0, + 1405.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1514.0, + 1408.0, + 1514.0, + 1408.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1405.0, + 1551.0, + 1405.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1580.0, + 789.0, + 1580.0, + 789.0, + 1614.0, + 295.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 777.0, + 1405.0, + 777.0, + 1405.0, + 815.0, + 295.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 1402.0, + 810.0, + 1402.0, + 843.0, + 295.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 1405.0, + 839.0, + 1405.0, + 873.0, + 294.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 907.0, + 293.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 750.0, + 901.0, + 750.0, + 940.0, + 293.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 901.0, + 1406.0, + 901.0, + 1406.0, + 940.0, + 784.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 930.0, + 297.0, + 930.0, + 297.0, + 975.0, + 291.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 930.0, + 757.0, + 930.0, + 757.0, + 975.0, + 322.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 930.0, + 1408.0, + 930.0, + 1408.0, + 975.0, + 773.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 961.0, + 297.0, + 961.0, + 297.0, + 1002.0, + 293.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 961.0, + 827.0, + 961.0, + 827.0, + 1002.0, + 324.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 961.0, + 1408.0, + 961.0, + 1408.0, + 1002.0, + 855.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 986.0, + 296.0, + 986.0, + 296.0, + 1035.0, + 288.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 986.0, + 1084.0, + 986.0, + 1084.0, + 1035.0, + 542.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 986.0, + 1410.0, + 986.0, + 1410.0, + 1035.0, + 1116.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1019.0, + 511.0, + 1019.0, + 511.0, + 1064.0, + 289.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1019.0, + 731.0, + 1019.0, + 731.0, + 1064.0, + 566.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1019.0, + 1130.0, + 1019.0, + 1130.0, + 1064.0, + 747.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1626.0, + 576.0, + 1626.0, + 576.0, + 1660.0, + 295.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1626.0, + 1408.0, + 1626.0, + 1408.0, + 1660.0, + 609.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1659.0, + 1407.0, + 1659.0, + 1407.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1688.0, + 1405.0, + 1688.0, + 1405.0, + 1721.0, + 295.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1717.0, + 1407.0, + 1717.0, + 1407.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 1405.0, + 1748.0, + 1405.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1806.0, + 824.0, + 1806.0, + 824.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1806.0, + 1092.0, + 1806.0, + 1092.0, + 1846.0, + 913.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1806.0, + 1406.0, + 1806.0, + 1406.0, + 1846.0, + 1167.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1840.0, + 899.0, + 1840.0, + 899.0, + 1874.0, + 295.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 398.0, + 1404.0, + 398.0, + 1404.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 676.0, + 429.0, + 676.0, + 466.0, + 295.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 429.0, + 1085.0, + 429.0, + 1085.0, + 466.0, + 695.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 429.0, + 1406.0, + 429.0, + 1406.0, + 466.0, + 1105.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1405.0, + 461.0, + 1405.0, + 494.0, + 295.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 490.0, + 1107.0, + 490.0, + 1107.0, + 524.0, + 296.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 490.0, + 1283.0, + 490.0, + 1283.0, + 524.0, + 1132.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 490.0, + 1405.0, + 490.0, + 1405.0, + 524.0, + 1313.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 520.0, + 848.0, + 520.0, + 848.0, + 557.0, + 295.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 520.0, + 1107.0, + 520.0, + 1107.0, + 557.0, + 932.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 520.0, + 1141.0, + 520.0, + 1141.0, + 557.0, + 1122.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 325.0, + 292.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 319.0, + 1405.0, + 319.0, + 1405.0, + 359.0, + 292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 349.0, + 1390.0, + 349.0, + 1390.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 624.0, + 833.0, + 624.0, + 833.0, + 675.0, + 291.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 624.0, + 1018.0, + 624.0, + 1018.0, + 675.0, + 870.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 624.0, + 1408.0, + 624.0, + 1408.0, + 675.0, + 1344.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 664.0, + 375.0, + 664.0, + 375.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 664.0, + 1387.0, + 664.0, + 1387.0, + 710.0, + 674.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 664.0, + 1408.0, + 664.0, + 1408.0, + 710.0, + 1402.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 702.0, + 898.0, + 702.0, + 898.0, + 737.0, + 296.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 702.0, + 1326.0, + 702.0, + 1326.0, + 737.0, + 918.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 737.0, + 1356.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 654.0, + 731.0, + 654.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 731.0, + 838.0, + 731.0, + 838.0, + 769.0, + 674.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1124.0, + 865.0, + 1124.0, + 865.0, + 1171.0, + 291.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1124.0, + 1372.0, + 1124.0, + 1372.0, + 1171.0, + 895.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1171.0, + 1401.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1160.0, + 426.0, + 1160.0, + 426.0, + 1211.0, + 287.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1160.0, + 498.0, + 1160.0, + 498.0, + 1211.0, + 441.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1160.0, + 1148.0, + 1160.0, + 1148.0, + 1211.0, + 981.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1160.0, + 1412.0, + 1160.0, + 1412.0, + 1211.0, + 1179.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1195.0, + 540.0, + 1195.0, + 540.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1195.0, + 1406.0, + 1195.0, + 1406.0, + 1235.0, + 571.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1227.0, + 571.0, + 1227.0, + 571.0, + 1264.0, + 293.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1227.0, + 1166.0, + 1227.0, + 1166.0, + 1264.0, + 597.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1886.0, + 1404.0, + 1886.0, + 1404.0, + 1920.0, + 296.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1917.0, + 1408.0, + 1917.0, + 1408.0, + 1954.0, + 294.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1946.0, + 1404.0, + 1946.0, + 1404.0, + 1983.0, + 295.0, + 1983.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1056, + 1404, + 1056, + 1404, + 1303, + 298, + 1303 + ], + "score": 0.981 + }, + { + "category_id": 5, + "poly": [ + 296, + 222, + 1516, + 222, + 1516, + 511, + 296, + 511 + ], + "score": 0.981, + "html": "
ReifKB (ours)ReifKB +maskKV-Mem (baseline)VRNGRAFT- NetPullNetnon-differentiable components of architectures
WebQSP MetaQA52.746.767.868.1KV-Meminitial memory retrieval
1-hop96.295.897.597.097.0
2-hop81.195.425.189.994.899.9VRNquestion-specific
3-hop72.379.710.162.577.291.4GRAFTNetsubgraph retrieval
Grid 5-hop98.4PullNetall iterative retrievals
10-hop89.71ReifKB(ours)none
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1316, + 1405, + 1316, + 1405, + 1471, + 298, + 1471 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 368, + 1762, + 1330, + 1762, + 1330, + 1939, + 368, + 1939 + ], + "score": 0.977, + "html": "
NELL-995NELL-995ReifKB (Ours) 64.1MINERVA 66.3
H@1H@10
ReifKB (Ours)64.182.4Grid with seed entity
DistMult*61.079.510-hop NSEW98.999.3
ComplEx*61.282.710-hop NSEW-VH73.634.4
ConvE*67.286.4MetaQA 3-hop72.341.7
" + }, + { + "category_id": 1, + "poly": [ + 298, + 887, + 1405, + 887, + 1405, + 1042, + 298, + 1042 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1485, + 1405, + 1485, + 1405, + 1703, + 296, + 1703 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 779, + 1401, + 779, + 1401, + 873, + 298, + 873 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 298, + 670, + 1405, + 670, + 1405, + 767, + 298, + 767 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.811 + }, + { + "category_id": 6, + "poly": [ + 296, + 531, + 1410, + 531, + 1410, + 625, + 296, + 625 + ], + "score": 0.707 + }, + { + "category_id": 6, + "poly": [ + 296, + 1960, + 1405, + 1960, + 1405, + 2054, + 296, + 2054 + ], + "score": 0.458 + }, + { + "category_id": 13, + "poly": [ + 682, + 1118, + 712, + 1118, + 712, + 1152, + 682, + 1152 + ], + "score": 0.89, + "latex": "f _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1669, + 1403, + 1669, + 1403, + 1699, + 1329, + 1699 + ], + "score": 0.84, + "latex": "9 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 665, + 1962, + 720, + 1962, + 720, + 1990, + 665, + 1990 + ], + "score": 0.76, + "latex": "@ 1 0" + }, + { + "category_id": 13, + "poly": [ + 624, + 814, + 649, + 814, + 649, + 839, + 624, + 839 + ], + "score": 0.74, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 697, + 2024, + 736, + 2024, + 736, + 2051, + 697, + 2051 + ], + "score": 0.69, + "latex": "@ 1" + }, + { + "category_id": 13, + "poly": [ + 675, + 920, + 722, + 920, + 722, + 949, + 675, + 949 + ], + "score": 0.55, + "latex": "7 5 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 441, + 533, + 480, + 533, + 480, + 561, + 441, + 561 + ], + "score": 0.51, + "latex": "@ 1" + }, + { + "category_id": 13, + "poly": [ + 520, + 1963, + 560, + 1963, + 560, + 1990, + 520, + 1990 + ], + "score": 0.4, + "latex": "@ 1" + }, + { + "category_id": 13, + "poly": [ + 549, + 920, + 608, + 920, + 608, + 949, + 549, + 949 + ], + "score": 0.34, + "latex": "1 5 4 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1301, + 1150, + 1340, + 1150, + 1340, + 1177, + 1301, + 1177 + ], + "score": 0.33, + "latex": "K B" + }, + { + "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, + 861.0, + 2085.0, + 861.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 527.0, + 440.0, + 527.0, + 440.0, + 570.0, + 292.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 527.0, + 1406.0, + 527.0, + 1406.0, + 570.0, + 481.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 562.0, + 1407.0, + 562.0, + 1407.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 550.0, + 590.0, + 550.0, + 628.0, + 294.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 519.0, + 1961.0, + 519.0, + 1995.0, + 294.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1961.0, + 664.0, + 1961.0, + 664.0, + 1995.0, + 561.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1961.0, + 1403.0, + 1961.0, + 1403.0, + 1995.0, + 721.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1992.0, + 1402.0, + 1992.0, + 1402.0, + 2025.0, + 294.0, + 2025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2023.0, + 696.0, + 2023.0, + 696.0, + 2053.0, + 295.0, + 2053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 2023.0, + 746.0, + 2023.0, + 746.0, + 2053.0, + 737.0, + 2053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1058.0, + 1405.0, + 1058.0, + 1405.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1087.0, + 1406.0, + 1087.0, + 1406.0, + 1123.0, + 292.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1117.0, + 681.0, + 1117.0, + 681.0, + 1154.0, + 293.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1117.0, + 1405.0, + 1117.0, + 1405.0, + 1154.0, + 713.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1300.0, + 1149.0, + 1300.0, + 1183.0, + 293.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1149.0, + 1404.0, + 1149.0, + 1404.0, + 1183.0, + 1341.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1181.0, + 1404.0, + 1181.0, + 1404.0, + 1214.0, + 294.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 1404.0, + 1208.0, + 1404.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 1405.0, + 1241.0, + 1405.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1270.0, + 1361.0, + 1270.0, + 1361.0, + 1306.0, + 295.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1354.0, + 293.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1346.0, + 1408.0, + 1346.0, + 1408.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1411.0, + 1402.0, + 1411.0, + 1402.0, + 1440.0, + 296.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1439.0, + 1387.0, + 1439.0, + 1387.0, + 1476.0, + 293.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 889.0, + 1405.0, + 889.0, + 1405.0, + 922.0, + 296.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 548.0, + 917.0, + 548.0, + 957.0, + 293.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 917.0, + 674.0, + 917.0, + 674.0, + 957.0, + 609.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 957.0, + 723.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 949.0, + 1406.0, + 949.0, + 1406.0, + 984.0, + 292.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 976.0, + 1410.0, + 976.0, + 1410.0, + 1015.0, + 293.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1010.0, + 990.0, + 1010.0, + 990.0, + 1047.0, + 295.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1486.0, + 1407.0, + 1486.0, + 1407.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1407.0, + 1514.0, + 1407.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1548.0, + 1408.0, + 1548.0, + 1408.0, + 1582.0, + 293.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 1406.0, + 1578.0, + 1406.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1642.0, + 293.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1407.0, + 1639.0, + 1407.0, + 1673.0, + 294.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1670.0, + 1328.0, + 1670.0, + 1328.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1670.0, + 1407.0, + 1670.0, + 1407.0, + 1705.0, + 1404.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 779.0, + 1406.0, + 779.0, + 1406.0, + 814.0, + 293.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 808.0, + 623.0, + 808.0, + 623.0, + 849.0, + 292.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 808.0, + 1406.0, + 808.0, + 1406.0, + 849.0, + 650.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 418.0, + 841.0, + 418.0, + 878.0, + 292.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 668.0, + 1406.0, + 668.0, + 1406.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 731.0, + 550.0, + 731.0, + 550.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 695, + 1404, + 695, + 1404, + 1062, + 298, + 1062 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1346, + 1403, + 1346, + 1403, + 1681, + 298, + 1681 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1698, + 1405, + 1698, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1178, + 1403, + 1178, + 1403, + 1331, + 299, + 1331 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 557, + 1404, + 557, + 1404, + 679, + 298, + 679 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 301, + 1112, + 587, + 1112, + 587, + 1147, + 301, + 1147 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.799 + }, + { + "category_id": 6, + "poly": [ + 299, + 464, + 1402, + 464, + 1402, + 527, + 299, + 527 + ], + "score": 0.65 + }, + { + "category_id": 5, + "poly": [ + 319, + 232, + 1382, + 232, + 1382, + 422, + 319, + 422 + ], + "score": 0.431, + "html": "
●Reif KB● KV-mem● GRAFT-Net●PulINet
NELL-995MetaQA-3hopWebQuestionsSP100
#Facts154,213196,45343,724,17575
#Entities75,49243,23012,942,79850
#Relations200961625
Time (seconds)44.372.618200 250 500
" + }, + { + "category_id": 1, + "poly": [ + 299, + 464, + 1402, + 464, + 1402, + 527, + 299, + 527 + ], + "score": 0.292 + }, + { + "category_id": 3, + "poly": [ + 1052, + 231, + 1377, + 231, + 1377, + 425, + 1052, + 425 + ], + "score": 0.259 + }, + { + "category_id": 13, + "poly": [ + 416, + 558, + 497, + 558, + 497, + 587, + 416, + 587 + ], + "score": 0.86, + "latex": "34 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 346, + 558, + 385, + 558, + 385, + 586, + 346, + 586 + ], + "score": 0.68, + "latex": "@ 1" + }, + { + "category_id": 13, + "poly": [ + 384, + 497, + 424, + 497, + 424, + 524, + 384, + 524 + ], + "score": 0.63, + "latex": "@ 1" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1109.0, + 593.0, + 1109.0, + 593.0, + 1153.0, + 292.0, + 1153.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, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 501.0, + 294.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 383.0, + 496.0, + 383.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 496.0, + 1343.0, + 496.0, + 1343.0, + 531.0, + 425.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 234.0, + 1332.0, + 234.0, + 1332.0, + 250.0, + 1087.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 251.0, + 1077.0, + 251.0, + 1077.0, + 271.0, + 1050.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 286.0, + 1078.0, + 286.0, + 1078.0, + 308.0, + 1054.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 321.0, + 1080.0, + 321.0, + 1080.0, + 344.0, + 1052.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 357.0, + 1080.0, + 357.0, + 1080.0, + 381.0, + 1052.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 395.0, + 1079.0, + 395.0, + 1079.0, + 413.0, + 1060.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 407.0, + 1108.0, + 407.0, + 1108.0, + 423.0, + 1091.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 405.0, + 1166.0, + 405.0, + 1166.0, + 424.0, + 1138.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 404.0, + 1219.0, + 404.0, + 1219.0, + 426.0, + 1188.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 404.0, + 1272.0, + 404.0, + 1272.0, + 426.0, + 1240.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 404.0, + 1326.0, + 404.0, + 1326.0, + 425.0, + 1291.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 404.0, + 1377.0, + 404.0, + 1377.0, + 425.0, + 1343.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 695.0, + 1408.0, + 695.0, + 1408.0, + 729.0, + 294.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 726.0, + 1404.0, + 726.0, + 1404.0, + 757.0, + 296.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 753.0, + 1406.0, + 753.0, + 1406.0, + 793.0, + 292.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 786.0, + 1405.0, + 786.0, + 1405.0, + 824.0, + 293.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 852.0, + 294.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 849.0, + 1408.0, + 849.0, + 1408.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1407.0, + 879.0, + 1407.0, + 913.0, + 294.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 906.0, + 1408.0, + 906.0, + 1408.0, + 943.0, + 293.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 939.0, + 1406.0, + 939.0, + 1406.0, + 973.0, + 294.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 966.0, + 1405.0, + 966.0, + 1405.0, + 1004.0, + 293.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1000.0, + 1407.0, + 1000.0, + 1407.0, + 1035.0, + 293.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1028.0, + 1154.0, + 1028.0, + 1154.0, + 1068.0, + 292.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1383.0, + 293.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1412.0, + 294.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1407.0, + 1405.0, + 1407.0, + 1405.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1438.0, + 1408.0, + 1438.0, + 1408.0, + 1474.0, + 291.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1504.0, + 292.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 1405.0, + 1500.0, + 1405.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1531.0, + 1407.0, + 1531.0, + 1407.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1559.0, + 1407.0, + 1559.0, + 1407.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 1408.0, + 1590.0, + 1408.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1405.0, + 1621.0, + 1405.0, + 1656.0, + 294.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1295.0, + 1652.0, + 1295.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1696.0, + 1408.0, + 1696.0, + 1408.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1727.0, + 1403.0, + 1727.0, + 1403.0, + 1762.0, + 295.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1794.0, + 293.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1825.0, + 292.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1856.0, + 292.0, + 1856.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": [ + 295.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1980.0, + 293.0, + 1980.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": [ + 293.0, + 2002.0, + 1113.0, + 2002.0, + 1113.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1407.0, + 1175.0, + 1407.0, + 1214.0, + 294.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1207.0, + 1408.0, + 1207.0, + 1408.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 1408.0, + 1236.0, + 1408.0, + 1278.0, + 292.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1306.0, + 292.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1299.0, + 960.0, + 1299.0, + 960.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 554.0, + 345.0, + 554.0, + 345.0, + 593.0, + 292.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 554.0, + 415.0, + 554.0, + 415.0, + 593.0, + 386.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 554.0, + 1409.0, + 554.0, + 1409.0, + 593.0, + 498.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 587.0, + 1406.0, + 587.0, + 1406.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 620.0, + 1406.0, + 620.0, + 1406.0, + 653.0, + 294.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 648.0, + 1154.0, + 648.0, + 1154.0, + 683.0, + 293.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 501.0, + 294.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 496.0, + 383.0, + 496.0, + 383.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 496.0, + 1343.0, + 496.0, + 1343.0, + 531.0, + 425.0, + 531.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 520, + 1405, + 520, + 1405, + 856, + 298, + 856 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1130, + 1404, + 1130, + 1404, + 1345, + 298, + 1345 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 872, + 1404, + 872, + 1404, + 1055, + 299, + 1055 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1360, + 1403, + 1360, + 1403, + 1482, + 299, + 1482 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 505, + 298, + 505 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 1570, + 1404, + 1570, + 1404, + 1632, + 296, + 1632 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 300, + 1081, + 562, + 1081, + 562, + 1117, + 300, + 1117 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 1519, + 557, + 1519, + 557, + 1547, + 301, + 1547 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.839 + }, + { + "category_id": 13, + "poly": [ + 928, + 415, + 994, + 415, + 994, + 443, + 928, + 443 + ], + "score": 0.83, + "latex": "{ \\bf 1 } - { \\bf x }" + }, + { + "category_id": 13, + "poly": [ + 871, + 415, + 899, + 415, + 899, + 441, + 871, + 441 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1075.0, + 566.0, + 1075.0, + 566.0, + 1126.0, + 290.0, + 1126.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": [ + 299.0, + 1521.0, + 558.0, + 1521.0, + 558.0, + 1550.0, + 299.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 552.0, + 1408.0, + 552.0, + 1408.0, + 586.0, + 292.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 580.0, + 1406.0, + 580.0, + 1406.0, + 617.0, + 293.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 612.0, + 1408.0, + 612.0, + 1408.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1408.0, + 642.0, + 1408.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 671.0, + 1410.0, + 671.0, + 1410.0, + 712.0, + 292.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 704.0, + 1406.0, + 704.0, + 1406.0, + 739.0, + 295.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 764.0, + 1406.0, + 764.0, + 1406.0, + 799.0, + 292.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 795.0, + 1406.0, + 795.0, + 1406.0, + 832.0, + 291.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 414.0, + 824.0, + 414.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1409.0, + 1129.0, + 1409.0, + 1167.0, + 294.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 1404.0, + 1161.0, + 1404.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1404.0, + 1192.0, + 1404.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1405.0, + 1223.0, + 1405.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1251.0, + 1407.0, + 1251.0, + 1407.0, + 1288.0, + 292.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1283.0, + 1405.0, + 1283.0, + 1405.0, + 1317.0, + 296.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1397.0, + 1315.0, + 1397.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 867.0, + 1405.0, + 867.0, + 1405.0, + 910.0, + 292.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 1406.0, + 933.0, + 1406.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 962.0, + 1405.0, + 962.0, + 1405.0, + 1000.0, + 293.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 996.0, + 1404.0, + 996.0, + 1404.0, + 1028.0, + 295.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1024.0, + 1077.0, + 1024.0, + 1077.0, + 1060.0, + 295.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 1407.0, + 1356.0, + 1407.0, + 1397.0, + 293.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1423.0, + 295.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 1408.0, + 1421.0, + 1408.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 930.0, + 1452.0, + 930.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 353.0, + 1405.0, + 353.0, + 1405.0, + 387.0, + 293.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 384.0, + 1404.0, + 384.0, + 1404.0, + 417.0, + 296.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 413.0, + 870.0, + 413.0, + 870.0, + 449.0, + 293.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 413.0, + 927.0, + 413.0, + 927.0, + 449.0, + 900.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 449.0, + 995.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 1407.0, + 443.0, + 1407.0, + 479.0, + 294.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 475.0, + 547.0, + 475.0, + 547.0, + 508.0, + 294.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1605.0, + 295.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1604.0, + 909.0, + 1604.0, + 909.0, + 1633.0, + 296.0, + 1633.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.886 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.824 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 488, + 228, + 488, + 261, + 300, + 261 + ], + "score": 0.818 + }, + { + "category_id": 1, + "poly": [ + 298, + 1662, + 1402, + 1662, + 1402, + 1757, + 298, + 1757 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 298, + 1067, + 1407, + 1067, + 1407, + 1191, + 298, + 1191 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 297, + 1210, + 1405, + 1210, + 1405, + 1399, + 297, + 1399 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 293, + 1416, + 1404, + 1416, + 1404, + 1480, + 293, + 1480 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 296, + 873, + 1401, + 873, + 1401, + 937, + 296, + 937 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 298, + 955, + 1406, + 955, + 1406, + 1049, + 298, + 1049 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 298, + 1776, + 1400, + 1776, + 1400, + 1840, + 298, + 1840 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 292, + 1579, + 1401, + 1579, + 1401, + 1646, + 292, + 1646 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 298, + 1858, + 1399, + 1858, + 1399, + 1922, + 298, + 1922 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 299, + 534, + 1401, + 534, + 1401, + 629, + 299, + 629 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 298, + 420, + 1403, + 420, + 1403, + 515, + 298, + 515 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 296, + 1497, + 1403, + 1497, + 1403, + 1563, + 296, + 1563 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 297, + 759, + 1408, + 759, + 1408, + 855, + 297, + 855 + ], + "score": 0.677 + }, + { + "category_id": 1, + "poly": [ + 296, + 646, + 1403, + 646, + 1403, + 742, + 296, + 742 + ], + "score": 0.668 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1406, + 1941, + 1406, + 2033, + 300, + 2033 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 297, + 279, + 1406, + 279, + 1406, + 403, + 297, + 403 + ], + "score": 0.496 + }, + { + "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": [ + 295.0, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1659.0, + 1407.0, + 1659.0, + 1407.0, + 1701.0, + 293.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1695.0, + 1404.0, + 1695.0, + 1404.0, + 1729.0, + 323.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1727.0, + 610.0, + 1727.0, + 610.0, + 1756.0, + 323.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 1410.0, + 1068.0, + 1410.0, + 1105.0, + 295.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1096.0, + 1407.0, + 1096.0, + 1407.0, + 1136.0, + 321.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1130.0, + 1410.0, + 1130.0, + 1410.0, + 1165.0, + 319.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1158.0, + 399.0, + 1158.0, + 399.0, + 1193.0, + 320.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1248.0, + 295.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1280.0, + 323.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1271.0, + 1405.0, + 1271.0, + 1405.0, + 1311.0, + 320.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1301.0, + 1406.0, + 1301.0, + 1406.0, + 1343.0, + 319.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1332.0, + 1411.0, + 1332.0, + 1411.0, + 1372.0, + 321.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1366.0, + 920.0, + 1366.0, + 920.0, + 1399.0, + 322.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1416.0, + 1404.0, + 1416.0, + 1404.0, + 1452.0, + 295.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1445.0, + 1267.0, + 1445.0, + 1267.0, + 1483.0, + 322.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 904.0, + 988.0, + 904.0, + 988.0, + 938.0, + 321.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 953.0, + 1404.0, + 953.0, + 1404.0, + 991.0, + 295.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 986.0, + 1406.0, + 986.0, + 1406.0, + 1024.0, + 321.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1019.0, + 573.0, + 1019.0, + 573.0, + 1049.0, + 325.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1808.0, + 1256.0, + 1808.0, + 1256.0, + 1840.0, + 326.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1577.0, + 1404.0, + 1577.0, + 1404.0, + 1618.0, + 294.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1611.0, + 1389.0, + 1611.0, + 1389.0, + 1648.0, + 323.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 1404.0, + 1857.0, + 1404.0, + 1896.0, + 294.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1891.0, + 707.0, + 1891.0, + 707.0, + 1922.0, + 319.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 534.0, + 1405.0, + 534.0, + 1405.0, + 572.0, + 294.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 566.0, + 1406.0, + 566.0, + 1406.0, + 602.0, + 323.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 596.0, + 826.0, + 596.0, + 826.0, + 630.0, + 324.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 421.0, + 1404.0, + 421.0, + 1404.0, + 455.0, + 294.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 450.0, + 1408.0, + 450.0, + 1408.0, + 491.0, + 320.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 477.0, + 398.0, + 477.0, + 398.0, + 518.0, + 320.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1564.0, + 324.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 759.0, + 1406.0, + 759.0, + 1406.0, + 795.0, + 295.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 790.0, + 1404.0, + 790.0, + 1404.0, + 824.0, + 324.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 824.0, + 798.0, + 824.0, + 798.0, + 856.0, + 321.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 647.0, + 1406.0, + 647.0, + 1406.0, + 682.0, + 296.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 714.0, + 324.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 710.0, + 1311.0, + 710.0, + 1311.0, + 744.0, + 323.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1409.0, + 1971.0, + 1409.0, + 2007.0, + 320.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2000.0, + 465.0, + 2000.0, + 465.0, + 2035.0, + 322.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 278.0, + 1404.0, + 278.0, + 1404.0, + 314.0, + 295.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 343.0, + 321.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 339.0, + 1407.0, + 339.0, + 1407.0, + 377.0, + 321.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 370.0, + 884.0, + 370.0, + 884.0, + 406.0, + 323.0, + 406.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 295, + 958, + 1403, + 958, + 1403, + 1025, + 295, + 1025 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 289, + 228, + 1404, + 228, + 1404, + 294, + 289, + 294 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 291, + 1610, + 1407, + 1610, + 1407, + 1675, + 291, + 1675 + ], + "score": 0.717 + }, + { + "category_id": 1, + "poly": [ + 296, + 876, + 1401, + 876, + 1401, + 941, + 296, + 941 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 299, + 1297, + 1402, + 1297, + 1402, + 1393, + 299, + 1393 + ], + "score": 0.703 + }, + { + "category_id": 1, + "poly": [ + 296, + 1154, + 1406, + 1154, + 1406, + 1280, + 296, + 1280 + ], + "score": 0.7 + }, + { + "category_id": 1, + "poly": [ + 295, + 1692, + 1403, + 1692, + 1403, + 1788, + 295, + 1788 + ], + "score": 0.69 + }, + { + "category_id": 1, + "poly": [ + 297, + 1041, + 1406, + 1041, + 1406, + 1134, + 297, + 1134 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 298, + 1495, + 1404, + 1495, + 1404, + 1592, + 298, + 1592 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 299, + 311, + 1402, + 311, + 1402, + 405, + 299, + 405 + ], + "score": 0.677 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1399, + 1971, + 1399, + 2035, + 299, + 2035 + ], + "score": 0.675 + }, + { + "category_id": 1, + "poly": [ + 291, + 1410, + 1404, + 1410, + 1404, + 1477, + 291, + 1477 + ], + "score": 0.662 + }, + { + "category_id": 1, + "poly": [ + 298, + 537, + 1402, + 537, + 1402, + 632, + 298, + 632 + ], + "score": 0.659 + }, + { + "category_id": 1, + "poly": [ + 302, + 424, + 1403, + 424, + 1403, + 520, + 302, + 520 + ], + "score": 0.646 + }, + { + "category_id": 1, + "poly": [ + 297, + 650, + 1407, + 650, + 1407, + 746, + 297, + 746 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 296, + 1806, + 1402, + 1806, + 1402, + 1871, + 296, + 1871 + ], + "score": 0.608 + }, + { + "category_id": 1, + "poly": [ + 296, + 1888, + 1399, + 1888, + 1399, + 1954, + 296, + 1954 + ], + "score": 0.59 + }, + { + "category_id": 1, + "poly": [ + 297, + 763, + 1406, + 763, + 1406, + 860, + 297, + 860 + ], + "score": 0.313 + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 958.0, + 1404.0, + 958.0, + 1404.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 990.0, + 943.0, + 990.0, + 943.0, + 1025.0, + 322.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 774.0, + 261.0, + 774.0, + 293.0, + 322.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1606.0, + 1404.0, + 1606.0, + 1404.0, + 1646.0, + 293.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1640.0, + 598.0, + 1640.0, + 598.0, + 1676.0, + 322.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 906.0, + 611.0, + 906.0, + 611.0, + 941.0, + 321.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1406.0, + 1298.0, + 1406.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1365.0, + 323.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1361.0, + 602.0, + 1361.0, + 602.0, + 1392.0, + 324.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1407.0, + 1157.0, + 1407.0, + 1190.0, + 294.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1184.0, + 1409.0, + 1184.0, + 1409.0, + 1222.0, + 319.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1215.0, + 1411.0, + 1215.0, + 1411.0, + 1254.0, + 320.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1245.0, + 919.0, + 1245.0, + 919.0, + 1283.0, + 323.0, + 1283.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": [ + 319.0, + 1720.0, + 1405.0, + 1720.0, + 1405.0, + 1763.0, + 319.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1755.0, + 848.0, + 1755.0, + 848.0, + 1789.0, + 322.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1080.0, + 292.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1071.0, + 1409.0, + 1071.0, + 1409.0, + 1109.0, + 320.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1099.0, + 399.0, + 1099.0, + 399.0, + 1140.0, + 320.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1497.0, + 1408.0, + 1497.0, + 1408.0, + 1531.0, + 296.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1529.0, + 1408.0, + 1529.0, + 1408.0, + 1564.0, + 322.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1558.0, + 926.0, + 1558.0, + 926.0, + 1593.0, + 320.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 309.0, + 1408.0, + 309.0, + 1408.0, + 350.0, + 294.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 343.0, + 1407.0, + 343.0, + 1407.0, + 377.0, + 320.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 368.0, + 397.0, + 368.0, + 397.0, + 409.0, + 319.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1405.0, + 1968.0, + 1405.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 1379.0, + 2003.0, + 1379.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1408.0, + 1405.0, + 1408.0, + 1405.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1442.0, + 1358.0, + 1442.0, + 1358.0, + 1477.0, + 322.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 536.0, + 1404.0, + 536.0, + 1404.0, + 575.0, + 294.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 565.0, + 1406.0, + 565.0, + 1406.0, + 609.0, + 322.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 603.0, + 673.0, + 603.0, + 673.0, + 632.0, + 322.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 423.0, + 1405.0, + 423.0, + 1405.0, + 462.0, + 296.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 456.0, + 1407.0, + 456.0, + 1407.0, + 493.0, + 322.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 487.0, + 817.0, + 487.0, + 817.0, + 521.0, + 322.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 686.0, + 296.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 681.0, + 1407.0, + 681.0, + 1407.0, + 715.0, + 324.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 711.0, + 988.0, + 711.0, + 988.0, + 747.0, + 323.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1806.0, + 1404.0, + 1806.0, + 1404.0, + 1842.0, + 296.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1835.0, + 1138.0, + 1835.0, + 1138.0, + 1873.0, + 321.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1887.0, + 1404.0, + 1887.0, + 1404.0, + 1924.0, + 295.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1920.0, + 1393.0, + 1920.0, + 1393.0, + 1955.0, + 321.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 802.0, + 296.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 794.0, + 1406.0, + 794.0, + 1406.0, + 832.0, + 321.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 825.0, + 1204.0, + 825.0, + 1204.0, + 862.0, + 321.0, + 862.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 402, + 1405, + 402, + 1405, + 527, + 299, + 527 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1405, + 229, + 1405, + 382, + 299, + 382 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 299, + 630, + 1403, + 630, + 1403, + 694, + 299, + 694 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 300, + 547, + 1402, + 547, + 1402, + 611, + 300, + 611 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 817, + 75, + 817, + 105, + 300, + 105 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.832 + }, + { + "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": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 404.0, + 1407.0, + 404.0, + 1407.0, + 440.0, + 295.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 435.0, + 1407.0, + 435.0, + 1407.0, + 472.0, + 321.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 463.0, + 1410.0, + 463.0, + 1410.0, + 503.0, + 318.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 497.0, + 504.0, + 497.0, + 504.0, + 528.0, + 323.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 259.0, + 1408.0, + 259.0, + 1408.0, + 296.0, + 319.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 327.0, + 319.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 316.0, + 1410.0, + 316.0, + 1410.0, + 358.0, + 318.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 350.0, + 396.0, + 350.0, + 396.0, + 386.0, + 321.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 630.0, + 1405.0, + 630.0, + 1405.0, + 666.0, + 298.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 662.0, + 1302.0, + 662.0, + 1302.0, + 697.0, + 323.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 543.0, + 1406.0, + 543.0, + 1406.0, + 587.0, + 295.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 579.0, + 1021.0, + 579.0, + 1021.0, + 612.0, + 321.0, + 612.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1151, + 1405, + 1151, + 1405, + 1307, + 296, + 1307 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 303, + 1404, + 303, + 1404, + 460, + 297, + 460 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 581, + 1405, + 581, + 1405, + 705, + 298, + 705 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1012, + 1404, + 1012, + 1404, + 1139, + 298, + 1139 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1612, + 1405, + 1612, + 1405, + 1769, + 297, + 1769 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1402, + 1941, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 827, + 1405, + 827, + 1405, + 922, + 297, + 922 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 474, + 1401, + 474, + 1401, + 568, + 299, + 568 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 720, + 1400, + 720, + 1400, + 814, + 299, + 814 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 666, + 1336, + 1014, + 1336, + 1014, + 1411, + 666, + 1411 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 293, + 1782, + 1402, + 1782, + 1402, + 1846, + 293, + 1846 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 936, + 1400, + 936, + 1400, + 995, + 298, + 995 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 427, + 1872, + 1272, + 1872, + 1272, + 1915, + 427, + 1915 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 300, + 1462, + 630, + 1462, + 630, + 1498, + 300, + 1498 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 296, + 1541, + 1117, + 1541, + 1117, + 1576, + 296, + 1576 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.864 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 1015, + 228, + 1015, + 262, + 299, + 262 + ], + "score": 0.854 + }, + { + "category_id": 13, + "poly": [ + 528, + 1106, + 608, + 1106, + 608, + 1139, + 528, + 1139 + ], + "score": 0.94, + "latex": "\\mathbf { M } [ i , j ]" + }, + { + "category_id": 13, + "poly": [ + 494, + 1275, + 608, + 1275, + 608, + 1309, + 494, + 1309 + ], + "score": 0.94, + "latex": "r _ { k } ( x _ { i } , x _ { j } )" + }, + { + "category_id": 14, + "poly": [ + 664, + 1335, + 1018, + 1335, + 1018, + 1413, + 664, + 1413 + ], + "score": 0.94, + "latex": "\\mathbf { M } _ { r e l } [ \\ell , m ] \\equiv { \\left\\{ \\begin{array} { l l } { w _ { \\ell } \\ \\mathrm { i f } \\ m = k _ { \\ell } } \\\\ { 0 \\ \\mathrm { e l s e } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 964, + 1075, + 1155, + 1075, + 1155, + 1109, + 964, + 1109 + ], + "score": 0.93, + "latex": "\\mathbf { M } _ { r } [ i , j ] = \\mathbf { w } _ { r } [ k ]" + }, + { + "category_id": 13, + "poly": [ + 466, + 505, + 587, + 505, + 587, + 539, + 466, + 539 + ], + "score": 0.93, + "latex": "( x , x ^ { \\prime } ) \\in r" + }, + { + "category_id": 13, + "poly": [ + 707, + 1614, + 896, + 1614, + 896, + 1648, + 707, + 1648 + ], + "score": 0.93, + "latex": "\\mathbf { z } = f o l l o w ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 785, + 1042, + 903, + 1042, + 903, + 1075, + 785, + 1075 + ], + "score": 0.93, + "latex": "\\mathbf { w } _ { r } \\in \\mathbb { R } ^ { \\widetilde { N } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 613, + 1226, + 613, + 1226, + 647, + 1104, + 647 + ], + "score": 0.93, + "latex": "\\omega \\| x \\in X ]" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1973, + 1318, + 1973, + 1318, + 2006, + 1080, + 2006 + ], + "score": 0.92, + "latex": "{ \\bf M } _ { R } [ i ( e _ { 1 } ) , i ( e _ { 2 } ) ] > 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 643, + 477, + 643, + 477, + 677, + 298, + 677 + ], + "score": 0.92, + "latex": "\\omega \\bar { \\left\\| { \\boldsymbol { x } } \\in { \\boldsymbol { X } } \\right\\| } \\equiv 0" + }, + { + "category_id": 13, + "poly": [ + 1007, + 826, + 1108, + 826, + 1108, + 857, + 1007, + 857 + ], + "score": 0.92, + "latex": "\\mathbf { x } \\in \\mathbb { R } ^ { N _ { \\tau } }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 505, + 1399, + 505, + 1399, + 542, + 1034, + 542 + ], + "score": 0.92, + "latex": "\\{ 1 , \\dots , N _ { \\tau _ { s u b j } } \\} \\times \\{ 1 , \\dots , N _ { \\tau _ { o b j } } \\}" + }, + { + "category_id": 13, + "poly": [ + 887, + 643, + 1040, + 643, + 1040, + 677, + 887, + 677 + ], + "score": 0.92, + "latex": "t y p e ( X ) = \\tau" + }, + { + "category_id": 13, + "poly": [ + 662, + 1076, + 719, + 1076, + 719, + 1109, + 662, + 1109 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1813, + 410, + 1813, + 410, + 1845, + 296, + 1845 + ], + "score": 0.92, + "latex": "\\mathbf { x } ^ { \\prime } = \\mathbf { x } \\mathbf { M } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 560, + 644, + 643, + 644, + 643, + 676, + 560, + 676 + ], + "score": 0.92, + "latex": "x \\not \\in X" + }, + { + "category_id": 13, + "poly": [ + 1039, + 859, + 1346, + 859, + 1346, + 893, + 1039, + 893 + ], + "score": 0.92, + "latex": "\\mathbf { x } [ i n d e x _ { \\tau } ( x ) ] = { \\boldsymbol { \\omega } } [ x \\in X ]" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1076, + 1298, + 1076, + 1298, + 1109, + 1241, + 1109 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 1048, + 399, + 1086, + 399, + 1086, + 428, + 1048, + 428 + ], + "score": 0.91, + "latex": "N _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1245, + 849, + 1245, + 849, + 1275, + 791, + 1275 + ], + "score": 0.9, + "latex": "{ { \\bf { M } } _ { r e l } }" + }, + { + "category_id": 13, + "poly": [ + 486, + 1676, + 530, + 1676, + 530, + 1708, + 486, + 1708 + ], + "score": 0.9, + "latex": "\\mathbf { z } [ j ]" + }, + { + "category_id": 13, + "poly": [ + 755, + 2004, + 826, + 2004, + 826, + 2031, + 755, + 2031 + ], + "score": 0.9, + "latex": "r \\in R" + }, + { + "category_id": 13, + "poly": [ + 651, + 1647, + 712, + 1647, + 712, + 1677, + 651, + 1677 + ], + "score": 0.9, + "latex": "R , X" + }, + { + "category_id": 13, + "poly": [ + 781, + 1942, + 823, + 1942, + 823, + 1975, + 781, + 1975 + ], + "score": 0.9, + "latex": "\\{ r \\}" + }, + { + "category_id": 13, + "poly": [ + 1045, + 1015, + 1132, + 1015, + 1132, + 1045, + 1045, + 1045 + ], + "score": 0.9, + "latex": "N _ { r } \\times 2" + }, + { + "category_id": 13, + "poly": [ + 297, + 965, + 415, + 965, + 415, + 995, + 297, + 995 + ], + "score": 0.89, + "latex": "\\mathbb { R } ^ { N _ { \\tau _ { 1 } } \\times N _ { \\tau _ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1153, + 1359, + 1153, + 1359, + 1183, + 1316, + 1183 + ], + "score": 0.89, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1785, + 753, + 1785, + 753, + 1814, + 711, + 1814 + ], + "score": 0.89, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 684, + 481, + 742, + 481, + 742, + 508, + 684, + 508 + ], + "score": 0.89, + "latex": "\\tau _ { s u b j }" + }, + { + "category_id": 13, + "poly": [ + 682, + 368, + 721, + 368, + 721, + 397, + 682, + 397 + ], + "score": 0.89, + "latex": "N _ { \\tau }" + }, + { + "category_id": 13, + "poly": [ + 1206, + 402, + 1252, + 402, + 1252, + 431, + 1206, + 431 + ], + "score": 0.89, + "latex": "x _ { \\tau , i }" + }, + { + "category_id": 13, + "poly": [ + 608, + 1706, + 651, + 1706, + 651, + 1739, + 608, + 1739 + ], + "score": 0.89, + "latex": "\\mathbf { z } [ j ]" + }, + { + "category_id": 13, + "poly": [ + 799, + 1975, + 847, + 1975, + 847, + 2003, + 799, + 2003 + ], + "score": 0.89, + "latex": "\\mathbf { M } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1106, + 462, + 1106, + 462, + 1136, + 406, + 1136 + ], + "score": 0.89, + "latex": "\\mathbf { I n d } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 606, + 1214, + 648, + 1214, + 648, + 1244, + 606, + 1244 + ], + "score": 0.88, + "latex": "{ { \\bf { M } } _ { r } }" + }, + { + "category_id": 13, + "poly": [ + 392, + 890, + 477, + 890, + 477, + 923, + 392, + 923 + ], + "score": 0.88, + "latex": "t y p e ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 954, + 480, + 1002, + 480, + 1002, + 508, + 954, + 508 + ], + "score": 0.88, + "latex": "\\tau _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 643, + 1544, + 703, + 1544, + 703, + 1577, + 643, + 1577 + ], + "score": 0.87, + "latex": "\\scriptstyle ( \\mathbf { x } , \\pmb { r } )" + }, + { + "category_id": 13, + "poly": [ + 1327, + 937, + 1403, + 937, + 1403, + 969, + 1327, + 969 + ], + "score": 0.87, + "latex": "{ \\mathbf { M } } _ { r } \\in { \\mathbf { \\Omega } }" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1015, + 1273, + 1015, + 1273, + 1046, + 1215, + 1046 + ], + "score": 0.87, + "latex": "\\mathbf { I n d } _ { r }" + }, + { + "category_id": 13, + "poly": [ + 401, + 1741, + 432, + 1741, + 432, + 1771, + 401, + 1771 + ], + "score": 0.87, + "latex": "x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1680, + 1371, + 1680, + 1371, + 1709, + 1340, + 1709 + ], + "score": 0.86, + "latex": "x _ { j }" + }, + { + "category_id": 13, + "poly": [ + 616, + 433, + 644, + 433, + 644, + 458, + 616, + 458 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 363, + 2007, + 392, + 2007, + 392, + 2034, + 363, + 2034 + ], + "score": 0.85, + "latex": "e _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 531, + 2007, + 560, + 2007, + 560, + 2034, + 531, + 2034 + ], + "score": 0.85, + "latex": "e _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 650, + 942, + 679, + 942, + 679, + 968, + 650, + 968 + ], + "score": 0.85, + "latex": "\\tau _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 638, + 1279, + 671, + 1279, + 671, + 1305, + 638, + 1305 + ], + "score": 0.85, + "latex": "w _ { \\ell }" + }, + { + "category_id": 13, + "poly": [ + 870, + 943, + 899, + 943, + 899, + 968, + 870, + 968 + ], + "score": 0.84, + "latex": "\\tau _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 728, + 1111, + 728, + 1111, + 752, + 1080, + 752 + ], + "score": 0.84, + "latex": "x _ { r }" + }, + { + "category_id": 13, + "poly": [ + 625, + 1815, + 652, + 1815, + 652, + 1841, + 625, + 1841 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 298, + 506, + 323, + 506, + 323, + 533, + 298, + 533 + ], + "score": 0.84, + "latex": "x ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 415, + 1708, + 442, + 1708, + 442, + 1734, + 415, + 1734 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 729, + 645, + 757, + 645, + 757, + 671, + 729, + 671 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 941, + 860, + 969, + 860, + 969, + 888, + 941, + 888 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1708, + 1310, + 1708, + 1310, + 1734, + 1282, + 1734 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 590, + 753, + 615, + 753, + 615, + 779, + 590, + 779 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 799, + 1078, + 818, + 1078, + 818, + 1103, + 799, + 1103 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 448, + 615, + 476, + 615, + 476, + 641, + 448, + 641 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 608, + 1739, + 631, + 1739, + 631, + 1764, + 608, + 1764 + ], + "score": 0.81, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 463, + 830, + 492, + 830, + 492, + 856, + 463, + 856 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 504, + 367, + 590, + 367, + 590, + 399, + 504, + 399 + ], + "score": 0.79, + "latex": "t y p e ( x )" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1615, + 1402, + 1615, + 1402, + 1642, + 1377, + 1642 + ], + "score": 0.79, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 703, + 1819, + 719, + 1819, + 719, + 1841, + 703, + 1841 + ], + "score": 0.79, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 685, + 895, + 705, + 895, + 705, + 917, + 685, + 917 + ], + "score": 0.78, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 575, + 835, + 595, + 835, + 595, + 856, + 575, + 856 + ], + "score": 0.77, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 458, + 430, + 470, + 430, + 470, + 455, + 458, + 455 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1137, + 372, + 1155, + 372, + 1155, + 394, + 1137, + 394 + ], + "score": 0.77, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 536, + 342, + 555, + 342, + 555, + 364, + 536, + 364 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1348, + 590, + 1368, + 590, + 1368, + 610, + 1348, + 610 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1335, + 481, + 1354, + 481, + 1354, + 502, + 1335, + 502 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 557, + 435, + 575, + 435, + 575, + 455, + 557, + 455 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 469, + 681, + 487, + 681, + 487, + 700, + 469, + 700 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 534, + 398, + 654, + 398, + 654, + 430, + 534, + 430 + ], + "score": 0.76, + "latex": "i n d e x _ { \\tau } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1299, + 372, + 1319, + 372, + 1319, + 394, + 1299, + 394 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 819, + 342, + 836, + 342, + 836, + 364, + 819, + 364 + ], + "score": 0.76, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1283, + 645, + 1308, + 645, + 1308, + 671, + 1283, + 671 + ], + "score": 0.75, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 298, + 1978, + 313, + 1978, + 313, + 2000, + 298, + 2000 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1791, + 1135, + 1791, + 1135, + 1811, + 1119, + 1811 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 574, + 862, + 588, + 862, + 588, + 887, + 574, + 887 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 677, + 512, + 694, + 512, + 694, + 533, + 677, + 533 + ], + "score": 0.74, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 421, + 943, + 438, + 943, + 438, + 964, + 421, + 964 + ], + "score": 0.74, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 432, + 1974, + 472, + 1974, + 472, + 2003, + 432, + 2003 + ], + "score": 0.73, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 945, + 1877, + 1049, + 1877, + 1049, + 1909, + 945, + 1909 + ], + "score": 0.73, + "latex": "\\exists x _ { i } \\in X" + }, + { + "category_id": 13, + "poly": [ + 462, + 482, + 478, + 482, + 478, + 502, + 462, + 502 + ], + "score": 0.73, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1231, + 831, + 1244, + 831, + 1244, + 856, + 1231, + 856 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 648, + 728, + 665, + 728, + 665, + 749, + 648, + 749 + ], + "score": 0.71, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 297, + 403, + 316, + 403, + 316, + 425, + 297, + 425 + ], + "score": 0.7, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1943, + 1197, + 1943, + 1197, + 1974, + 1137, + 1974 + ], + "score": 0.7, + "latex": "( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 328, + 864, + 346, + 864, + 346, + 887, + 328, + 887 + ], + "score": 0.7, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 343, + 1401, + 343, + 1401, + 364, + 1382, + 364 + ], + "score": 0.7, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 378, + 1276, + 394, + 1276, + 394, + 1302, + 378, + 1302 + ], + "score": 0.69, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1650, + 1297, + 1650, + 1297, + 1673, + 1278, + 1673 + ], + "score": 0.68, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 407, + 1949, + 425, + 1949, + 425, + 1970, + 407, + 1970 + ], + "score": 0.67, + "latex": "\\mathbf { r }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1816, + 1219, + 1816, + 1219, + 1841, + 1207, + 1841 + ], + "score": 0.67, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 949, + 895, + 967, + 895, + 967, + 917, + 949, + 917 + ], + "score": 0.63, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 297, + 782, + 625, + 782, + 625, + 816, + 297, + 816 + ], + "score": 0.58, + "latex": "R = \\{ w r i t e r \\_ o f , d i r e c t o r \\_ o f \\}" + }, + { + "category_id": 14, + "poly": [ + 425, + 1874, + 904, + 1874, + 904, + 1912, + 425, + 1912 + ], + "score": 0.56, + "latex": "\\mathbf { x } ^ { \\prime } [ j ] \\neq 0 \\mathrm { ~ i f f ~ } \\exists j : \\mathbf { M } _ { r } [ i , j ] \\neq 0 \\land \\mathbf { x } [ i ] \\neq 0" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1651, + 1365, + 1651, + 1365, + 1673, + 1348, + 1673 + ], + "score": 0.56, + "latex": "\\mathbf { r }" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1876, + 1270, + 1876, + 1270, + 1913, + 1134, + 1913 + ], + "score": 0.4, + "latex": "( x _ { i } , x _ { j } ) \\in r" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1544, + 1110, + 1544, + 1110, + 1575, + 1074, + 1575 + ], + "score": 0.39, + "latex": "X )" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1943, + 1198, + 1943, + 1198, + 1974, + 1063, + 1974 + ], + "score": 0.36, + "latex": "f o l l o w ( \\mathbf { x } , \\mathbf { r } )" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1621, + 1130, + 1621, + 1130, + 1643, + 1112, + 1643 + ], + "score": 0.3, + "latex": "\\mathbf { z }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1460.0, + 635.0, + 1460.0, + 635.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 1016.0, + 227.0, + 1016.0, + 267.0, + 296.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 1315.0, + 1150.0, + 1315.0, + 1185.0, + 295.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1150.0, + 1405.0, + 1150.0, + 1405.0, + 1185.0, + 1360.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1185.0, + 1402.0, + 1185.0, + 1402.0, + 1214.0, + 298.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1213.0, + 605.0, + 1213.0, + 605.0, + 1246.0, + 295.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1213.0, + 1403.0, + 1213.0, + 1403.0, + 1246.0, + 649.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1242.0, + 790.0, + 1242.0, + 790.0, + 1278.0, + 294.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1242.0, + 1405.0, + 1242.0, + 1405.0, + 1278.0, + 850.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 377.0, + 1272.0, + 377.0, + 1310.0, + 293.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1272.0, + 493.0, + 1272.0, + 493.0, + 1310.0, + 395.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1272.0, + 637.0, + 1272.0, + 637.0, + 1310.0, + 609.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1272.0, + 814.0, + 1272.0, + 814.0, + 1310.0, + 672.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 304.0, + 1409.0, + 304.0, + 1409.0, + 341.0, + 295.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 337.0, + 535.0, + 337.0, + 535.0, + 371.0, + 296.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 337.0, + 818.0, + 337.0, + 818.0, + 371.0, + 556.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 337.0, + 1381.0, + 337.0, + 1381.0, + 371.0, + 837.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 337.0, + 1405.0, + 337.0, + 1405.0, + 371.0, + 1402.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 365.0, + 503.0, + 365.0, + 503.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 365.0, + 681.0, + 365.0, + 681.0, + 403.0, + 591.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 365.0, + 1136.0, + 365.0, + 1136.0, + 403.0, + 722.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 365.0, + 1298.0, + 365.0, + 1298.0, + 403.0, + 1156.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 365.0, + 1406.0, + 365.0, + 1406.0, + 403.0, + 1320.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 296.0, + 392.0, + 296.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 392.0, + 533.0, + 392.0, + 533.0, + 436.0, + 317.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 392.0, + 1047.0, + 392.0, + 1047.0, + 436.0, + 655.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 392.0, + 1205.0, + 392.0, + 1205.0, + 436.0, + 1087.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 392.0, + 1405.0, + 392.0, + 1405.0, + 436.0, + 1253.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 428.0, + 457.0, + 428.0, + 457.0, + 462.0, + 296.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 428.0, + 556.0, + 428.0, + 556.0, + 462.0, + 471.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 428.0, + 615.0, + 428.0, + 615.0, + 462.0, + 576.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 428.0, + 1006.0, + 428.0, + 1006.0, + 462.0, + 645.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 581.0, + 1347.0, + 581.0, + 1347.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 581.0, + 1408.0, + 581.0, + 1408.0, + 617.0, + 1369.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 614.0, + 447.0, + 614.0, + 447.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 614.0, + 1103.0, + 614.0, + 1103.0, + 647.0, + 477.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 647.0, + 1227.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 297.0, + 643.0, + 297.0, + 679.0, + 293.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 643.0, + 559.0, + 643.0, + 559.0, + 679.0, + 478.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 643.0, + 728.0, + 643.0, + 728.0, + 679.0, + 644.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 643.0, + 886.0, + 643.0, + 886.0, + 679.0, + 758.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 643.0, + 1282.0, + 643.0, + 1282.0, + 679.0, + 1041.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 643.0, + 1406.0, + 643.0, + 1406.0, + 679.0, + 1309.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 468.0, + 670.0, + 468.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 670.0, + 501.0, + 670.0, + 501.0, + 711.0, + 488.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1013.0, + 1044.0, + 1013.0, + 1044.0, + 1049.0, + 293.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1013.0, + 1214.0, + 1013.0, + 1214.0, + 1049.0, + 1133.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1013.0, + 1404.0, + 1013.0, + 1404.0, + 1049.0, + 1274.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1039.0, + 784.0, + 1039.0, + 784.0, + 1083.0, + 291.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1039.0, + 1408.0, + 1039.0, + 1408.0, + 1083.0, + 904.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1077.0, + 661.0, + 1077.0, + 661.0, + 1110.0, + 296.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1077.0, + 798.0, + 1077.0, + 798.0, + 1110.0, + 720.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1077.0, + 963.0, + 1077.0, + 963.0, + 1110.0, + 819.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1077.0, + 1240.0, + 1077.0, + 1240.0, + 1110.0, + 1156.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1077.0, + 1404.0, + 1077.0, + 1404.0, + 1110.0, + 1299.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1107.0, + 405.0, + 1107.0, + 405.0, + 1139.0, + 294.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1107.0, + 527.0, + 1107.0, + 527.0, + 1139.0, + 463.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1107.0, + 698.0, + 1107.0, + 698.0, + 1139.0, + 609.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1614.0, + 706.0, + 1614.0, + 706.0, + 1648.0, + 296.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1614.0, + 1111.0, + 1614.0, + 1111.0, + 1648.0, + 897.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1614.0, + 1376.0, + 1614.0, + 1376.0, + 1648.0, + 1131.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1614.0, + 1406.0, + 1614.0, + 1406.0, + 1648.0, + 1403.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1644.0, + 650.0, + 1644.0, + 650.0, + 1681.0, + 295.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1644.0, + 1277.0, + 1644.0, + 1277.0, + 1681.0, + 713.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1644.0, + 1347.0, + 1644.0, + 1347.0, + 1681.0, + 1298.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1644.0, + 1407.0, + 1644.0, + 1407.0, + 1681.0, + 1366.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1673.0, + 485.0, + 1673.0, + 485.0, + 1712.0, + 292.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1673.0, + 1339.0, + 1673.0, + 1339.0, + 1712.0, + 531.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1673.0, + 1406.0, + 1673.0, + 1406.0, + 1712.0, + 1372.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1704.0, + 414.0, + 1704.0, + 414.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1704.0, + 607.0, + 1704.0, + 607.0, + 1743.0, + 443.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1704.0, + 1281.0, + 1704.0, + 1281.0, + 1743.0, + 652.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1704.0, + 1405.0, + 1704.0, + 1405.0, + 1743.0, + 1311.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1736.0, + 400.0, + 1736.0, + 400.0, + 1769.0, + 296.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1736.0, + 607.0, + 1736.0, + 607.0, + 1769.0, + 433.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1736.0, + 1401.0, + 1736.0, + 1401.0, + 1769.0, + 632.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 406.0, + 1939.0, + 406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1939.0, + 780.0, + 1939.0, + 780.0, + 1977.0, + 426.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1939.0, + 1062.0, + 1939.0, + 1062.0, + 1977.0, + 824.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1939.0, + 1407.0, + 1939.0, + 1407.0, + 1977.0, + 1199.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 297.0, + 1971.0, + 297.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1971.0, + 431.0, + 1971.0, + 431.0, + 2009.0, + 314.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1971.0, + 798.0, + 1971.0, + 798.0, + 2009.0, + 473.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1971.0, + 1079.0, + 1971.0, + 1079.0, + 2009.0, + 848.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2009.0, + 1319.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 362.0, + 2000.0, + 362.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 2000.0, + 530.0, + 2000.0, + 530.0, + 2037.0, + 393.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 2000.0, + 754.0, + 2000.0, + 754.0, + 2037.0, + 561.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 2000.0, + 838.0, + 2000.0, + 838.0, + 2037.0, + 827.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 823.0, + 462.0, + 823.0, + 462.0, + 864.0, + 291.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 823.0, + 574.0, + 823.0, + 574.0, + 864.0, + 493.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 823.0, + 1006.0, + 823.0, + 1006.0, + 864.0, + 596.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 823.0, + 1230.0, + 823.0, + 1230.0, + 864.0, + 1109.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 864.0, + 1245.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 856.0, + 327.0, + 856.0, + 327.0, + 898.0, + 292.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 856.0, + 573.0, + 856.0, + 573.0, + 898.0, + 347.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 856.0, + 940.0, + 856.0, + 940.0, + 898.0, + 589.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 856.0, + 1038.0, + 856.0, + 1038.0, + 898.0, + 970.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 856.0, + 1406.0, + 856.0, + 1406.0, + 898.0, + 1347.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 391.0, + 887.0, + 391.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 887.0, + 684.0, + 887.0, + 684.0, + 927.0, + 478.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 887.0, + 948.0, + 887.0, + 948.0, + 927.0, + 706.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 887.0, + 979.0, + 887.0, + 979.0, + 927.0, + 968.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 471.0, + 461.0, + 471.0, + 461.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 471.0, + 683.0, + 471.0, + 683.0, + 513.0, + 479.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 471.0, + 953.0, + 471.0, + 953.0, + 513.0, + 743.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 471.0, + 1334.0, + 471.0, + 1334.0, + 513.0, + 1003.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 471.0, + 1407.0, + 471.0, + 1407.0, + 513.0, + 1355.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 495.0, + 297.0, + 495.0, + 297.0, + 548.0, + 290.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 495.0, + 465.0, + 495.0, + 465.0, + 548.0, + 324.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 495.0, + 676.0, + 495.0, + 676.0, + 548.0, + 588.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 495.0, + 1033.0, + 495.0, + 1033.0, + 548.0, + 695.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 495.0, + 1410.0, + 495.0, + 1410.0, + 548.0, + 1400.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 1148.0, + 532.0, + 1148.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 647.0, + 719.0, + 647.0, + 755.0, + 292.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 719.0, + 1079.0, + 719.0, + 1079.0, + 755.0, + 666.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 719.0, + 1405.0, + 719.0, + 1405.0, + 755.0, + 1112.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 750.0, + 589.0, + 750.0, + 589.0, + 786.0, + 292.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 786.0, + 616.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 778.0, + 1116.0, + 778.0, + 1116.0, + 819.0, + 626.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1782.0, + 710.0, + 1782.0, + 710.0, + 1818.0, + 295.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1782.0, + 1118.0, + 1782.0, + 1118.0, + 1818.0, + 754.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1818.0, + 1136.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1813.0, + 624.0, + 1813.0, + 624.0, + 1849.0, + 411.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1813.0, + 702.0, + 1813.0, + 702.0, + 1849.0, + 653.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1813.0, + 1206.0, + 1813.0, + 1206.0, + 1849.0, + 720.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1813.0, + 1230.0, + 1813.0, + 1230.0, + 1849.0, + 1220.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 932.0, + 420.0, + 932.0, + 420.0, + 973.0, + 291.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 932.0, + 649.0, + 932.0, + 649.0, + 973.0, + 439.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 932.0, + 869.0, + 932.0, + 869.0, + 973.0, + 680.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 932.0, + 1326.0, + 932.0, + 1326.0, + 973.0, + 900.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 959.0, + 296.0, + 959.0, + 296.0, + 1000.0, + 292.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 959.0, + 432.0, + 959.0, + 432.0, + 1000.0, + 416.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1540.0, + 642.0, + 1540.0, + 642.0, + 1583.0, + 296.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1540.0, + 1073.0, + 1540.0, + 1073.0, + 1583.0, + 704.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1540.0, + 1121.0, + 1540.0, + 1121.0, + 1583.0, + 1111.0, + 1583.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 293, + 1405, + 293, + 1405, + 419, + 297, + 419 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1115, + 1402, + 1115, + 1402, + 1210, + 297, + 1210 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1222, + 1403, + 1222, + 1403, + 1384, + 299, + 1384 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 880, + 1406, + 880, + 1406, + 973, + 297, + 973 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1829, + 1406, + 1829, + 1406, + 1987, + 297, + 1987 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 537, + 1405, + 537, + 1405, + 661, + 297, + 661 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 645, + 434, + 1050, + 434, + 1050, + 525, + 645, + 525 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 304, + 981, + 1393, + 981, + 1393, + 1107, + 304, + 1107 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 375, + 1394, + 1316, + 1394, + 1316, + 1660, + 375, + 1660 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 674, + 1402, + 674, + 1402, + 735, + 294, + 735 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 295, + 1685, + 1045, + 1685, + 1045, + 1719, + 295, + 1719 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 297, + 814, + 928, + 814, + 928, + 850, + 297, + 850 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 617, + 732, + 1079, + 732, + 1079, + 776, + 617, + 776 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 326, + 2005, + 1048, + 2005, + 1048, + 2035, + 326, + 2035 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 817, + 74, + 817, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 1761, + 714, + 1761, + 714, + 1798, + 300, + 1798 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1598, + 1401, + 1598, + 1401, + 1627, + 1365, + 1627 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1489, + 1401, + 1489, + 1401, + 1520, + 1365, + 1520 + ], + "score": 0.859 + }, + { + "category_id": 0, + "poly": [ + 296, + 227, + 1207, + 227, + 1207, + 263, + 296, + 263 + ], + "score": 0.761 + }, + { + "category_id": 2, + "poly": [ + 296, + 227, + 1207, + 227, + 1207, + 263, + 296, + 263 + ], + "score": 0.093 + }, + { + "category_id": 14, + "poly": [ + 646, + 430, + 1049, + 430, + 1049, + 527, + 646, + 527 + ], + "score": 0.95, + "latex": "f o l l o w ( { \\mathbf { X } } , { \\mathbf { R } } ) = \\sum _ { k = 1 } ^ { N _ { R } } ( { \\mathbf { R } } [ : , k ] \\cdot { \\mathbf { X } } { \\mathbf { M } } _ { k } )" + }, + { + "category_id": 14, + "poly": [ + 374, + 1391, + 1317, + 1391, + 1317, + 1663, + 374, + 1663 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { f o l l o w ( \\mathbf { x } , \\mathbf { r } ) = ( \\mathbf { x } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j } } \\\\ { \\quad \\quad = \\left( [ \\mathbf { x } \\mathbf { M } _ { s u b j , 1 } ^ { T } ; \\dots ; \\mathbf { x } \\mathbf { M } _ { s u b j , m } ^ { T } ] \\odot [ \\mathbf { r } \\mathbf { M } _ { r e l , 1 } ^ { T } ; \\dots ; \\mathbf { r } \\mathbf { M } _ { r e l , m } ^ { T } ] \\right) \\left[ \\begin{array} { c } { \\mathbf { M } _ { o b j , 1 } } \\\\ { \\vdots } \\\\ { \\mathbf { M } _ { o b j , m } } \\end{array} \\right] } \\\\ { \\quad \\quad = \\displaystyle \\sum _ { i = 1 } ^ { m } ( \\mathbf { x } \\mathbf { M } _ { s u b j , i } ^ { T } \\odot \\mathbf { r } \\mathbf { M } _ { r e l , i } ^ { T } ) \\mathbf { M } _ { o b j , i } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 978, + 1396, + 978, + 1396, + 1107, + 310, + 1107 + ], + "score": 0.93, + "latex": "\\mathbf { x M } = [ \\mathbf { x } _ { 1 } ; \\mathbf { x } _ { 2 } ; \\ldots ; \\mathbf { x } _ { m } ] \\left[ { \\begin{array} { c c c c } { \\mathbf { M } _ { 1 , 1 } } & { \\mathbf { M } _ { 1 , 2 } } & { \\ldots } & { \\mathbf { M } _ { 1 , m } } \\\\ { \\vdots } & { \\vdots } & { } & { \\vdots } \\\\ { \\mathbf { M } _ { m , 1 } } & { \\mathbf { M } _ { m , 2 } } & { \\ldots } & { \\mathbf { M } _ { m , m } } \\end{array} } \\right] = \\left[ ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { 1 } \\mathbf { M } _ { i , 1 } ) ; \\ldots ; ( \\sum _ { i = 1 } ^ { m } \\mathbf { x } _ { m } \\mathbf { M } _ { i , m } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 643, + 913, + 783, + 913, + 783, + 946, + 643, + 946 + ], + "score": 0.93, + "latex": "\\left[ \\mathbf { x } _ { 1 } ; \\ldots ; \\mathbf { x } _ { m } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1004, + 568, + 1102, + 568, + 1102, + 601, + 1004, + 601 + ], + "score": 0.92, + "latex": "O ( b N _ { E } )" + }, + { + "category_id": 13, + "poly": [ + 359, + 538, + 433, + 538, + 433, + 571, + 359, + 571 + ], + "score": 0.92, + "latex": "\\mathbf { R } [ : , k ]" + }, + { + "category_id": 14, + "poly": [ + 611, + 729, + 1082, + 729, + 1082, + 776, + 611, + 776 + ], + "score": 0.92, + "latex": "f o l l o w ( \\mathbf { X } , \\mathbf { R } ) = ( \\mathbf { X } \\mathbf { M } _ { s u b j } ^ { T } \\odot \\mathbf { R } \\mathbf { M } _ { r e l } ^ { T } ) \\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 757, + 600, + 1012, + 600, + 1012, + 633, + 757, + 633 + ], + "score": 0.91, + "latex": "O ( b N _ { E } + b N _ { R } + N _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1290, + 369, + 1290, + 369, + 1326, + 296, + 1326 + ], + "score": 0.91, + "latex": "\\mathbf { M } _ { s u b j }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1225, + 1279, + 1225, + 1279, + 1258, + 1216, + 1258 + ], + "score": 0.9, + "latex": "\\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1291, + 1194, + 1291, + 1194, + 1323, + 1135, + 1323 + ], + "score": 0.9, + "latex": "{ { \\bf { M } } _ { r e l } }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 539, + 1209, + 539, + 1209, + 569, + 1147, + 569 + ], + "score": 0.9, + "latex": "\\mathbf { X M } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 854, + 1226, + 897, + 1226, + 897, + 1255, + 854, + 1255 + ], + "score": 0.9, + "latex": "N _ { T }" + }, + { + "category_id": 13, + "poly": [ + 650, + 570, + 693, + 570, + 693, + 599, + 650, + 599 + ], + "score": 0.9, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 795, + 569, + 858, + 569, + 858, + 599, + 795, + 599 + ], + "score": 0.9, + "latex": "\\mathbf { X M } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1021, + 1257, + 1108, + 1257, + 1108, + 1288, + 1021, + 1288 + ], + "score": 0.89, + "latex": "\\mathbf { M } _ { s u b j , i }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 912, + 1262, + 912, + 1262, + 940, + 1223, + 940 + ], + "score": 0.89, + "latex": "m ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1225, + 1168, + 1225, + 1168, + 1256, + 1109, + 1256 + ], + "score": 0.87, + "latex": "{ { \\bf { M } } _ { r e l } }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 600, + 1401, + 600, + 1401, + 631, + 1357, + 631 + ], + "score": 0.87, + "latex": "N _ { R }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1225, + 1099, + 1225, + 1099, + 1257, + 1027, + 1257 + ], + "score": 0.85, + "latex": "\\mathbf { M } _ { s u b j }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1285, + 1007, + 1285, + 1007, + 1328, + 483, + 1328 + ], + "score": 0.84, + "latex": "\\mathbf { M } _ { s u b j } = [ \\mathbf { M } _ { s u b j , 1 } ^ { T } ; . . . ; \\mathbf { M } _ { s u b j , m } ^ { T } ] _ { . } ^ { T } \\in \\mathbb { R } ^ { N _ { T } \\times N _ { E } }" + }, + { + "category_id": 13, + "poly": [ + 487, + 540, + 506, + 540, + 506, + 566, + 487, + 566 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1020, + 1290, + 1083, + 1290, + 1083, + 1326, + 1020, + 1326 + ], + "score": 0.81, + "latex": "\\mathbf { M } _ { o b j }" + }, + { + "category_id": 13, + "poly": [ + 800, + 1179, + 817, + 1179, + 817, + 1205, + 800, + 1205 + ], + "score": 0.8, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1257, + 1202, + 1257, + 1202, + 1282, + 1185, + 1282 + ], + "score": 0.73, + "latex": "\\overrightarrow { \\imath } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 889, + 1401, + 889, + 1401, + 910, + 1374, + 910 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 782, + 1118, + 806, + 1118, + 806, + 1144, + 782, + 1144 + ], + "score": 0.7, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 595, + 358, + 609, + 358, + 609, + 384, + 595, + 384 + ], + "score": 0.65, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 989, + 331, + 1009, + 331, + 1009, + 354, + 989, + 354 + ], + "score": 0.58, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 665, + 540, + 687, + 540, + 687, + 566, + 665, + 566 + ], + "score": 0.57, + "latex": "\\mathbf { R }" + }, + { + "category_id": 13, + "poly": [ + 838, + 1117, + 869, + 1117, + 869, + 1145, + 838, + 1145 + ], + "score": 0.54, + "latex": "\\mathbf { M }" + }, + { + "category_id": 13, + "poly": [ + 1378, + 327, + 1403, + 327, + 1403, + 354, + 1378, + 354 + ], + "score": 0.52, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 344, + 357, + 368, + 357, + 368, + 385, + 344, + 385 + ], + "score": 0.44, + "latex": "\\mathbf { R }" + }, + { + "category_id": 13, + "poly": [ + 883, + 888, + 902, + 888, + 902, + 910, + 883, + 910 + ], + "score": 0.44, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1057, + 331, + 1076, + 331, + 1076, + 354, + 1057, + 354 + ], + "score": 0.44, + "latex": "\\mathbf { r }" + }, + { + "category_id": 13, + "poly": [ + 839, + 914, + 869, + 914, + 869, + 941, + 839, + 941 + ], + "score": 0.42, + "latex": "\\mathbf { M }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1687, + 1037, + 1687, + 1037, + 1714, + 1014, + 1714 + ], + "score": 0.4, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 537, + 883, + 583, + 883, + 583, + 911, + 537, + 911 + ], + "score": 0.34, + "latex": "\\mathbf { x M }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 811.0, + 931.0, + 811.0, + 931.0, + 859.0, + 293.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 1052.0, + 1999.0, + 1052.0, + 2040.0, + 329.0, + 2040.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": [ + 292.0, + 1759.0, + 717.0, + 1759.0, + 717.0, + 1803.0, + 292.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 1210.0, + 226.0, + 1210.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 1210.0, + 226.0, + 1210.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1407.0, + 294.0, + 1407.0, + 329.0, + 294.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 988.0, + 327.0, + 988.0, + 360.0, + 294.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 327.0, + 1056.0, + 327.0, + 1056.0, + 360.0, + 1010.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 327.0, + 1377.0, + 327.0, + 1377.0, + 360.0, + 1077.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 356.0, + 343.0, + 356.0, + 343.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 356.0, + 594.0, + 356.0, + 594.0, + 391.0, + 369.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 356.0, + 1403.0, + 356.0, + 1403.0, + 391.0, + 610.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 388.0, + 1015.0, + 388.0, + 1015.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1116.0, + 781.0, + 1116.0, + 781.0, + 1150.0, + 293.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1116.0, + 837.0, + 1116.0, + 837.0, + 1150.0, + 807.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1116.0, + 1403.0, + 1116.0, + 1403.0, + 1150.0, + 870.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1180.0, + 293.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1177.0, + 799.0, + 1177.0, + 799.0, + 1211.0, + 295.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1177.0, + 1149.0, + 1177.0, + 1149.0, + 1211.0, + 818.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 853.0, + 1222.0, + 853.0, + 1261.0, + 295.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1222.0, + 1026.0, + 1222.0, + 1026.0, + 1261.0, + 898.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1222.0, + 1108.0, + 1222.0, + 1108.0, + 1261.0, + 1100.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1222.0, + 1215.0, + 1222.0, + 1215.0, + 1261.0, + 1169.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1261.0, + 1280.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 1020.0, + 1253.0, + 1020.0, + 1291.0, + 294.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1253.0, + 1184.0, + 1253.0, + 1184.0, + 1291.0, + 1109.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1291.0, + 1203.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1281.0, + 295.0, + 1281.0, + 295.0, + 1337.0, + 285.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1281.0, + 482.0, + 1281.0, + 482.0, + 1337.0, + 370.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1281.0, + 1019.0, + 1281.0, + 1019.0, + 1337.0, + 1008.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1281.0, + 1134.0, + 1281.0, + 1134.0, + 1337.0, + 1084.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1281.0, + 1409.0, + 1281.0, + 1409.0, + 1337.0, + 1195.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1319.0, + 1405.0, + 1319.0, + 1405.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 759.0, + 1351.0, + 759.0, + 1385.0, + 295.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 536.0, + 882.0, + 536.0, + 916.0, + 295.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 882.0, + 882.0, + 882.0, + 882.0, + 916.0, + 584.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 882.0, + 1373.0, + 882.0, + 1373.0, + 916.0, + 903.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 911.0, + 642.0, + 911.0, + 642.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 911.0, + 838.0, + 911.0, + 838.0, + 948.0, + 784.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 911.0, + 1222.0, + 911.0, + 1222.0, + 948.0, + 870.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 911.0, + 1411.0, + 911.0, + 1411.0, + 948.0, + 1263.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 942.0, + 610.0, + 942.0, + 610.0, + 975.0, + 295.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1831.0, + 1404.0, + 1831.0, + 1404.0, + 1865.0, + 296.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 1408.0, + 1860.0, + 1408.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1892.0, + 1409.0, + 1892.0, + 1409.0, + 1929.0, + 294.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1921.0, + 1406.0, + 1921.0, + 1406.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1952.0, + 927.0, + 1952.0, + 927.0, + 1990.0, + 295.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 537.0, + 358.0, + 537.0, + 358.0, + 570.0, + 295.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 537.0, + 486.0, + 537.0, + 486.0, + 570.0, + 434.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 537.0, + 664.0, + 537.0, + 664.0, + 570.0, + 507.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 537.0, + 1146.0, + 537.0, + 1146.0, + 570.0, + 688.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 537.0, + 1403.0, + 537.0, + 1403.0, + 570.0, + 1210.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 649.0, + 569.0, + 649.0, + 601.0, + 295.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 569.0, + 794.0, + 569.0, + 794.0, + 601.0, + 694.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 569.0, + 1003.0, + 569.0, + 1003.0, + 601.0, + 859.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 601.0, + 1103.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 599.0, + 756.0, + 599.0, + 756.0, + 635.0, + 292.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 599.0, + 1356.0, + 599.0, + 1356.0, + 635.0, + 1013.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 629.0, + 475.0, + 629.0, + 475.0, + 662.0, + 295.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1404.0, + 673.0, + 1404.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 468.0, + 706.0, + 468.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1682.0, + 1013.0, + 1682.0, + 1013.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1682.0, + 1047.0, + 1682.0, + 1047.0, + 1723.0, + 1038.0, + 1723.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 398, + 1403, + 398, + 1403, + 583, + 298, + 583 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 676, + 1404, + 676, + 1404, + 799, + 298, + 799 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 541, + 1180, + 1165, + 1180, + 1165, + 1343, + 541, + 1343 + ], + "score": 0.976, + "html": "
Time (seconds)Accuracy (hits@1)Method
72.679.7ReifKB
189.810.1KV-mem
28.977.2GRAFT-Net
1131.091.4PullNet
" + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 384, + 298, + 384 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 814, + 1404, + 814, + 1404, + 968, + 298, + 968 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1763, + 1405, + 1763, + 1405, + 1888, + 297, + 1888 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 982, + 1404, + 982, + 1404, + 1076, + 298, + 1076 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 298, + 1948, + 1403, + 1948, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 597, + 1398, + 597, + 1398, + 660, + 299, + 660 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 685, + 1557, + 1011, + 1557, + 1011, + 1600, + 685, + 1600 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 726, + 1687, + 971, + 1687, + 971, + 1730, + 726, + 1730 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 1633, + 542, + 1633, + 542, + 1665, + 297, + 1665 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 1494, + 840, + 1494, + 840, + 1526, + 297, + 1526 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 399, + 1420, + 1295, + 1420, + 1295, + 1461, + 399, + 1461 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 6, + "poly": [ + 296, + 1090, + 1399, + 1090, + 1399, + 1153, + 296, + 1153 + ], + "score": 0.689 + }, + { + "category_id": 7, + "poly": [ + 294, + 1353, + 1102, + 1353, + 1102, + 1387, + 294, + 1387 + ], + "score": 0.555 + }, + { + "category_id": 1, + "poly": [ + 296, + 1090, + 1399, + 1090, + 1399, + 1153, + 296, + 1153 + ], + "score": 0.194 + }, + { + "category_id": 0, + "poly": [ + 294, + 1353, + 1102, + 1353, + 1102, + 1387, + 294, + 1387 + ], + "score": 0.091 + }, + { + "category_id": 13, + "poly": [ + 1141, + 1823, + 1242, + 1823, + 1242, + 1858, + 1141, + 1858 + ], + "score": 0.92, + "latex": "f ^ { t } ( \\mathbf { \\bar { x } } ^ { t - 1 } )" + }, + { + "category_id": 14, + "poly": [ + 682, + 1556, + 1015, + 1556, + 1015, + 1600, + 682, + 1600 + ], + "score": 0.9, + "latex": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 591, + 630, + 657, + 630, + 657, + 657, + 591, + 657 + ], + "score": 0.89, + "latex": "b = 1" + }, + { + "category_id": 13, + "poly": [ + 771, + 630, + 865, + 630, + 865, + 657, + 771, + 657 + ], + "score": 0.89, + "latex": "b = 1 2 8" + }, + { + "category_id": 14, + "poly": [ + 726, + 1686, + 972, + 1686, + 972, + 1728, + 726, + 1728 + ], + "score": 0.88, + "latex": "\\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 487, + 1855, + 514, + 1855, + 514, + 1883, + 487, + 1883 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 998, + 1823, + 1106, + 1823, + 1106, + 1859, + 998, + 1859 + ], + "score": 0.86, + "latex": "( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 439, + 1425, + 589, + 1425, + 589, + 1457, + 439, + 1457 + ], + "score": 0.86, + "latex": "i = 1 , \\ldots , N" + }, + { + "category_id": 13, + "poly": [ + 711, + 1978, + 754, + 1978, + 754, + 2005, + 711, + 2005 + ], + "score": 0.83, + "latex": "\\mathbf { M } _ { R }" + }, + { + "category_id": 13, + "poly": [ + 380, + 293, + 425, + 293, + 425, + 321, + 380, + 321 + ], + "score": 0.8, + "latex": "1 { + } \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 810, + 1859, + 823, + 1859, + 823, + 1883, + 810, + 1883 + ], + "score": 0.78, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1766, + 1398, + 1766, + 1398, + 1793, + 1373, + 1793 + ], + "score": 0.78, + "latex": "t ^ { \\ast }" + }, + { + "category_id": 14, + "poly": [ + 641, + 1420, + 1296, + 1420, + 1296, + 1461, + 641, + 1461 + ], + "score": 0.72, + "latex": "t = 1 , \\dots , T \\colon \\ \\mathbf { r } _ { i } ^ { t } = f _ { i } ^ { t } ( q ) ; \\ \\mathbf { x } _ { i } ^ { t } = f o l l o w ( \\mathbf { x } _ { i } ^ { t - 1 } , \\mathbf { r } _ { i } ^ { t } ) + \\mathbf { x } _ { i } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 503, + 297, + 519, + 297, + 519, + 319, + 503, + 319 + ], + "score": 0.71, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1047, + 1169, + 1047, + 1169, + 1072, + 1145, + 1072 + ], + "score": 0.68, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 544, + 327, + 572, + 327, + 572, + 350, + 544, + 350 + ], + "score": 0.64, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 984, + 237, + 1003, + 237, + 1003, + 258, + 984, + 258 + ], + "score": 0.42, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 406, + 631, + 452, + 631, + 452, + 658, + 406, + 658 + ], + "score": 0.38, + "latex": "4 0 \\mathrm { x }" + }, + { + "category_id": 13, + "poly": [ + 810, + 353, + 849, + 353, + 849, + 385, + 810, + 385 + ], + "score": 0.28, + "latex": "\\mathrm { X p }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1423, + 785, + 1423, + 785, + 1458, + 642, + 1458 + ], + "score": 0.26, + "latex": "t = 1 , \\dots , T" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1984.0, + 327.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1978.0, + 710.0, + 1978.0, + 710.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1978.0, + 1407.0, + 1978.0, + 1407.0, + 2008.0, + 755.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2005.0, + 967.0, + 2005.0, + 967.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1406.0, + 1086.0, + 1406.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1116.0, + 381.0, + 1116.0, + 381.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1349.0, + 1104.0, + 1349.0, + 1104.0, + 1392.0, + 295.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1349.0, + 1104.0, + 1349.0, + 1104.0, + 1392.0, + 295.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1405.0, + 399.0, + 1405.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 465.0, + 293.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 494.0, + 292.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 488.0, + 1405.0, + 488.0, + 1405.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 552.0, + 414.0, + 552.0, + 414.0, + 588.0, + 293.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1405.0, + 676.0, + 1405.0, + 712.0, + 293.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 1406.0, + 706.0, + 1406.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 1404.0, + 737.0, + 1404.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 767.0, + 1002.0, + 767.0, + 1002.0, + 801.0, + 295.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 983.0, + 228.0, + 983.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 228.0, + 1408.0, + 228.0, + 1408.0, + 267.0, + 1004.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1403.0, + 263.0, + 1403.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 379.0, + 289.0, + 379.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 289.0, + 502.0, + 289.0, + 502.0, + 326.0, + 426.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 326.0, + 520.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 543.0, + 321.0, + 543.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 321.0, + 1408.0, + 321.0, + 1408.0, + 358.0, + 573.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 349.0, + 809.0, + 349.0, + 809.0, + 392.0, + 292.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 349.0, + 1172.0, + 349.0, + 1172.0, + 392.0, + 850.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 1402.0, + 814.0, + 1402.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 845.0, + 1405.0, + 845.0, + 1405.0, + 878.0, + 296.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 871.0, + 1408.0, + 871.0, + 1408.0, + 912.0, + 293.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 1410.0, + 900.0, + 1410.0, + 944.0, + 292.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 935.0, + 1326.0, + 935.0, + 1326.0, + 972.0, + 294.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1762.0, + 1372.0, + 1762.0, + 1372.0, + 1797.0, + 292.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1762.0, + 1410.0, + 1762.0, + 1410.0, + 1797.0, + 1399.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1794.0, + 1406.0, + 1794.0, + 1406.0, + 1830.0, + 294.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1820.0, + 997.0, + 1820.0, + 997.0, + 1863.0, + 291.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1820.0, + 1140.0, + 1820.0, + 1140.0, + 1863.0, + 1107.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1820.0, + 1408.0, + 1820.0, + 1408.0, + 1863.0, + 1243.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 486.0, + 1852.0, + 486.0, + 1890.0, + 294.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1852.0, + 809.0, + 1852.0, + 809.0, + 1890.0, + 515.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1890.0, + 824.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 1405.0, + 982.0, + 1405.0, + 1019.0, + 294.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1011.0, + 1405.0, + 1011.0, + 1405.0, + 1050.0, + 292.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1045.0, + 1144.0, + 1045.0, + 1144.0, + 1079.0, + 296.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1045.0, + 1382.0, + 1045.0, + 1382.0, + 1079.0, + 1170.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 592.0, + 1404.0, + 592.0, + 1404.0, + 636.0, + 293.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 629.0, + 405.0, + 629.0, + 405.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 629.0, + 590.0, + 629.0, + 590.0, + 662.0, + 453.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 629.0, + 770.0, + 629.0, + 770.0, + 662.0, + 658.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 629.0, + 875.0, + 629.0, + 875.0, + 662.0, + 866.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 544.0, + 1628.0, + 544.0, + 1670.0, + 293.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1490.0, + 844.0, + 1490.0, + 844.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1086.0, + 1406.0, + 1086.0, + 1406.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1116.0, + 381.0, + 1116.0, + 381.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 623, + 1408, + 623, + 1408, + 811, + 295, + 811 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 750, + 229, + 750, + 264, + 298, + 264 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.906 + }, + { + "category_id": 8, + "poly": [ + 293, + 274, + 1460, + 274, + 1460, + 577, + 293, + 577 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 8, + "poly": [ + 293, + 274, + 1460, + 274, + 1460, + 578, + 293, + 578 + ], + "score": 0.486 + }, + { + "category_id": 14, + "poly": [ + 288, + 270, + 1390, + 270, + 1390, + 580, + 288, + 580 + ], + "score": 0.9, + "latex": "{ \\begin{array} { r c l } { \\mathbf { x } ^ { 1 } } & { = } & { f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ { \\mathbf { x } ^ { 2 } } & { = } & { f ^ { 2 } ( \\mathbf { x } ^ { 1 } ) + \\mathbf { x } ^ { 1 } } \\\\ & { = } & { f ^ { 2 } \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + \\left( \\left( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) \\right. \\right. } \\\\ & { = } & { \\left. f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right. } \\\\ { \\mathbf { x } ^ { 3 } } & { = } & { f ^ { 3 } ( \\mathbf { x } ^ { 2 } ) + \\mathbf { x } ^ { 2 } } \\\\ & { = } & { f ^ { 3 } \\left( \\left( f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) \\right) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } \\right) + f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) + \\mathbf { x } ^ { 0 } } \\\\ & { = } & { f ^ { 3 } { \\big ( } f ^ { 2 } ( f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) \\big ) } + f ^ { 3 } { \\big ( } f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 3 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } { \\big ( } f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) { \\big ) } + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 2 } ( \\mathbf { x } ^ { 0 } ) + f ^ { 1 } ( \\mathbf { x } ^ { 0 } ) } \\end{array} }" + }, + { + "category_id": 13, + "poly": [ + 895, + 625, + 922, + 625, + 922, + 654, + 895, + 654 + ], + "score": 0.86, + "latex": "\\mathbf { x } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 569, + 747, + 597, + 747, + 597, + 776, + 569, + 776 + ], + "score": 0.85, + "latex": "\\mathbf { x } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 831, + 656, + 861, + 656, + 861, + 689, + 831, + 689 + ], + "score": 0.84, + "latex": "f ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 685, + 1346, + 685, + 1346, + 717, + 1243, + 717 + ], + "score": 0.83, + "latex": "\\mathbf { r } ^ { 1 } , \\ldots . . . ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 736, + 655, + 767, + 655, + 767, + 689, + 736, + 689 + ], + "score": 0.82, + "latex": "f ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 662, + 1101, + 662, + 1101, + 684, + 1082, + 684 + ], + "score": 0.47, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 1242, + 685, + 1271, + 685, + 1271, + 715, + 1242, + 715 + ], + "score": 0.45, + "latex": "\\mathbf { r } ^ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 623.0, + 894.0, + 623.0, + 894.0, + 659.0, + 293.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 659.0, + 923.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 654.0, + 735.0, + 654.0, + 735.0, + 690.0, + 294.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 654.0, + 830.0, + 654.0, + 830.0, + 690.0, + 768.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 654.0, + 1081.0, + 654.0, + 1081.0, + 690.0, + 862.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 690.0, + 1102.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 685.0, + 1241.0, + 685.0, + 1241.0, + 721.0, + 293.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 685.0, + 1406.0, + 685.0, + 1406.0, + 721.0, + 1347.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 714.0, + 1409.0, + 714.0, + 1409.0, + 753.0, + 291.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 743.0, + 568.0, + 743.0, + 568.0, + 785.0, + 293.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 743.0, + 1410.0, + 743.0, + 1410.0, + 785.0, + 598.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 776.0, + 729.0, + 776.0, + 729.0, + 813.0, + 294.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 754.0, + 225.0, + 754.0, + 271.0, + 294.0, + 271.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Byl1W1rtvH/Byl1W1rtvH_content_list.json b/parse/train/Byl1W1rtvH/Byl1W1rtvH_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..7a9363b294377ad950b900b9d93b57097ce89c52 --- /dev/null +++ b/parse/train/Byl1W1rtvH/Byl1W1rtvH_content_list.json @@ -0,0 +1,1745 @@ +[ + { + "type": "text", + "text": "RECURRENT HIERARCHICAL TOPIC-GUIDEDNEURAL LANGUAGE MODELS", + "text_level": 1, + "bbox": [ + 174, + 98, + 714, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 170, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 234, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To simultaneously capture syntax and global semantics from a text corpus, we propose a new larger-context recurrent neural network (RNN) based language model, which extracts recurrent hierarchical semantic structure via a dynamic deep topic model to guide natural language generation. Moving beyond a conventional RNN based language model that ignores long-range word dependencies and sentence order, the proposed model captures not only intra-sentence word dependencies, but also temporal transitions between sentences and inter-sentence topic dependences. For inference, we develop a hybrid of stochastic-gradient MCMC and recurrent autoencoding variational Bayes. Experimental results on a variety of real-world text corpora demonstrate that the proposed model not only outperforms state-ofthe-art larger-context RNN-based language models, but also learns interpretable recurrent multilayer topics and generates diverse sentences and paragraphs that are syntactically correct and semantically coherent. ", + "bbox": [ + 233, + 265, + 766, + 445 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 469, + 336, + 486 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Both topic and language models are widely used for text analysis. Topic models, such as latent Dirichlet allocation (LDA) (Blei et al., 2003; Griffiths & Steyvers, 2004; Hoffman et al., 2013) and its nonparametric Bayesian generalizations (Teh et al., 2006; Zhou & Carin, 2015), are well suited to extract document-level word concurrence patterns into latent topics from a text corpus. Their modeling power has been further enhanced by introducing multilayer deep representation (Srivastava et al., 2013; Mnih & Gregor, 2014; Gan et al., 2015; Zhou et al., 2016; Zhao et al., 2018; Zhang et al., 2018). While having semantically meaningful latent representation, they typically treat each document as a bag of words (BoW), ignoring word order (Griffiths et al., 2004; Wallach, 2006). Language models have become key components of various natural language processing (NLP) tasks, such as text summarization (Rush et al., 2015; Gehrmann et al., 2018), speech recognition (Mikolov et al., 2010; Graves et al., 2013), machine translation (Sutskever et al., 2014; Cho et al., 2014), and image captioning (Vinyals et al., 2015; Mao et al., 2015; Xu et al., 2015; Gan et al., 2017; Rennie et al., 2017). The primary purpose of a language model is to capture the distribution of a word sequence, commonly with a recurrent neural network (RNN) (Mikolov et al., 2011; Graves, 2013) or a Transformer based neural network (Vaswani et al., 2017; Dai et al., 2019; Devlin et al., 2019; Radford et al., 2018; 2019). In this paper, we focus on improving RNN-based language models that often have much fewer parameters and are easier to perform end-to-end training. ", + "bbox": [ + 173, + 501, + 826, + 736 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "While RNN-based language models do not ignore word order, they often assume that the sentences of a document are independent to each other. This simplifies the modeling task to independently assigning probabilities to individual sentences, ignoring their orders and document context (Tian & Cho, 2016). Such language models may consequently fail to capture the long-range dependencies and global semantic meaning of a document (Dieng et al., 2017; Wang et al., 2018). To relax the sentence independence assumption in language modeling, Tian & Cho (2016) propose larger-context language models that model the context of a sentence by representing its preceding sentences as either a single or a sequence of BoW vectors, which are then fed directly into the sentence modeling RNN. An alternative approach attracting significant recent interest is leveraging topic models to improve RNN-based language models. Mikolov & Zweig (2012) use pre-trained topic model features as an additional input to the RNN hidden states and/or output. Dieng et al. (2017); Ahn et al. (2017) combine the predicted word distributions, given by both a topic model and a language model, under variational autoencoder (Kingma & Welling, 2013). Lau et al. (2017) introduce an attention based convolutional neural network to extract semantic topics, which are used to extend the RNN cell. Wang et al. (2018) learn the global semantic coherence of a document via a neural topic model and use the learned latent topics to build a mixture-of-experts language model. Wang et al. (2019) further specify a Gaussian mixture model as the prior of the latent code in variational autoencoder, where each mixture component corresponds to a topic. ", + "bbox": [ + 174, + 743, + 825, + 922 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "While clearly improving the performance of the end task, these existing topic-guided methods still have clear limitations. For example, they only utilize shallow topic models with only a single stochastic hidden layer in their data generation process. Note several neural topic models use deep neural networks to construct their variational encoders, but still use shallow generative models (decoders) (Miao et al., 2017; Srivastava & Sutton, 2017). Another key limitation lies in ignoring the sentence order, as they treat each document as a bag of sentences. Thus once the topic weight vector learned from the document context is given, the task is often reduced to independently assigning probabilities to individual sentences (Lau et al., 2017; Wang et al., 2018; 2019). ", + "bbox": [ + 174, + 180, + 825, + 291 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, as depicted in Fig. 1, we propose to use recurrent gamma belief network (rGBN) to guide a stacked RNN for language modeling. We refer to the model as rGBN-RNN, which integrates rGBN (Guo et al., 2018), a deep recurrent topic model, and stacked RNN (Graves, 2013; Chung et al., 2017), a neural language model, into a novel larger-context RNN-based language model. It simultaneously learns a deep recurrent topic model, extracting document-level multi-layer word concurrence patterns and sequential topic weight vectors for sentences, and an expressive language model, capturing both short- and long-range word sequential dependencies. For inference, we equip rGBN-RNN (decoder) with a novel variational recurrent inference network (encoder), and train it end-to-end by maximizing the evidence lower bound (ELBO). Different from the stacked RNN based language model in Chung et al. (2017), which relies on three types of customized training operations (UPDATE, COPY, FLUSH) to extract multi-scale structures, the language model in rGBN-RNN learns such structures purely under the guidance of the temporally and hierarchically connected stochastic layers of rGBN. The effectiveness of rGBN-RNN as a new larger-context language model is demonstrated both quantitatively, with perplexity and BLEU scores, and qualitatively, with interpretable latent structures and randomly generated sentences and paragraphs. Notably, rGBN-RNN can generate a paragraph consisting of a sequence of semantically coherent sentences. ", + "bbox": [ + 173, + 299, + 825, + 521 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RECURRENT HIERARCHICAL TOPIC-GUIDED LANGUAGE MODEL ", + "text_level": 1, + "bbox": [ + 178, + 541, + 732, + 556 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Denote a document of $J$ sentences as $\\mathcal { D } = ( S _ { 1 } , S _ { 2 } , \\ldots , S _ { J } )$ , where $S _ { j } = ( y _ { j , 1 } , \\ldots , y _ { j , T _ { j } } )$ consists of $T _ { j }$ words from a vocabulary of size $V$ . Conventional statistical language models often only focus on the word sequence within a sentence. Assuming that the sentences of a document are independent to each other, they often define $\\begin{array} { r } { P ( \\mathcal { D } ) \\approx \\prod _ { j = 1 } ^ { J } \\bar { P } \\left( S _ { j } \\right) = \\prod _ { j = 1 } ^ { J } \\prod _ { t = 2 } ^ { T _ { j } } p \\left( y _ { j , t } \\vert y _ { j , < t } \\right) p \\left( y _ { j , 1 } \\right) } \\end{array}$ . RNN based neural language models define the conditional probability of each word $y _ { j , t }$ given all the previous words $y _ { j , < t }$ within the sentence $S _ { j }$ , through the softmax function of a hidden state $h _ { j , t }$ , as ", + "bbox": [ + 173, + 570, + 825, + 660 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f4a1a712e62e98f575edb79de481b5ed62528ab0df7562cafc1bd8f6be1c039a.jpg", + "text": "$$\np \\left( y _ { j , t } \\mid y _ { j , < t } \\right) = p \\left( y _ { j , t } \\mid h _ { j , t } \\right) , \\quad h _ { j , t } = f \\left( h _ { j , < t } , y _ { j , t - 1 } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 303, + 664, + 691, + 681 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $f ( \\cdot )$ is a non-linear function typically defined as an RNN cell, such as long short-term memory (LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent unit (GRU) (Cho et al., 2014). ", + "bbox": [ + 173, + 685, + 830, + 713 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "These RNN-based statistical language models are typically applied only at the word level, without exploiting the document context, and hence often fail to capture long-range dependencies. While Dieng et al. (2017); Lau et al. (2017); Wang et al. (2018; 2019) remedy the issue by guiding the language model with a topic model, they still treat a document as a bag of sentences, ignoring the order of sentences, and lack the ability to extract hierarchical and recurrent topic structures. ", + "bbox": [ + 174, + 719, + 825, + 790 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We introduce rGBN-RNN, as depicted in Fig. 1(a), as a new larger-context language model. It consists of two key components: (i) a hierarchical recurrent topic model (rGBN), and (ii) a stacked RNN based language model. We use rGBN to capture both global semantics across documents and long-range inter-sentence dependencies within a document, and use the language model to learn the local syntactic relationships between the words within a sentence. Similar to Lau et al. (2017); Wang et al. (2018), we represent a document as a sequence of sentence-context pairs as $( \\{ S _ { 1 } , d _ { 1 } \\} , \\dots , \\{ S _ { J } , d _ { J } \\} )$ , where $\\bar { d } _ { j } \\in \\mathbb { Z } _ { + } ^ { V _ { c } }$ summarizes the document excluding $S _ { j }$ , specifically $( S _ { 1 } , . . . , S _ { j - 1 } , S _ { j + 1 } , . . . , S _ { J } )$ , into a BoW count vector, with $V _ { c }$ as the size of the vocabulary excluding stop words. Note a naive way is to treat each sentence as a document, use a dynamic topic model (Blei & Lafferty, 2006) to capture the temporal dependencies of the latent topic-weight vectors, which is fed to the RNN to model the word sequence of the corresponding sentence. However, the sentences are often too short to be well modeled by a topic model. In our setting, as $d _ { j }$ summarizes the document-level context of $S _ { j }$ , it is in general sufficiently long for topic modeling. Note during testing, we redefine $d _ { j }$ as the BoW vector summarizing only the preceding sentences, i.e., $S _ { 1 : j - 1 }$ , which will be further clarified when presenting experimental results. ", + "bbox": [ + 173, + 796, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/282e53503b935c73b464c066fccb5b2394fe7d7bb548b09489edae9d737bf127.jpg", + "image_caption": [ + "Figure 1: (a) The generative model of a three-hidden-layer rGBN-RNN, where the bottom part is the deep recurrent topic model (rGBN), document contexts of consecutive sentences are used as observed data, and upper is the language model. (b) Overview of the language model component, where input $x _ { j , t }$ denotes the tth word in $j$ th sentence of a document, $x _ { j , t } = y _ { j , t - 1 } , h _ { j , t } ^ { l }$ is the hidden state of the stacked RNN at time step $t$ , and $\\theta _ { j } ^ { l }$ is the topic weight vector of sentence $j$ at layer $l$ . (c) The overall architecture of the proposed model, including the decoder (rGBN and language model) and encoder (variational recurrent inference), where the red arrows denote the inference of latent topic weight vectors, black ones the data generation. " + ], + "image_footnote": [], + "bbox": [ + 199, + 108, + 795, + 297 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 429, + 826, + 513 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 HIERARCHICAL RECURRENT TOPIC MODEL ", + "text_level": 1, + "bbox": [ + 173, + 542, + 513, + 558 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Shown in Fig. 1 (a), to model the time-varying sentence-context count vectors $d _ { j }$ in document $\\mathcal { D }$ , the generative process of the rGBN component, from the top to bottom hidden layers, is expressed as ", + "bbox": [ + 174, + 573, + 826, + 603 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/46fb4b32e560f0a2c5eb8f4d60631f2b3140823462b1357d7d93089d84c30f0c.jpg", + "text": "$$\n\\begin{array} { r l } & { \\pmb { \\theta } _ { j } ^ { L } \\sim \\mathrm { G a m } \\left( \\mathbf { \\Pi } \\mathbf { \\ } \\mathbf { \\Pi } ^ { L } \\pmb { \\theta } _ { j - 1 } ^ { L } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , \\pmb { \\theta } _ { j } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 } + \\mathbf { \\Pi } \\mathbf { \\Pi } ^ { l } \\pmb { \\theta } _ { j - 1 } ^ { l } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , } \\\\ & { \\pmb { \\theta } _ { j } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } _ { j } ^ { 2 } + \\mathbf { \\Pi } \\mathbf { \\ } ^ { 1 } \\pmb { \\theta } _ { j - 1 } ^ { 1 } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\pmb { d } _ { j } \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } _ { j } ^ { 1 } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 240, + 617, + 754, + 662 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }$ denotes the gamma distributed topic weight vectors of sentence $j$ at layer $l$ $\\mathbf { I I } ^ { l } \\in \\mathbb { R } _ { + } ^ { \\bar { K } _ { l } \\times K _ { l } }$ the transition matrix of layer $l$ that captures cross-topic temporal dependencies, $\\Phi ^ { l } \\in$ RKl−1×Kl+ the loading matrix at layer l, Kl the number of topics of layer l, and τ0 ∈ R+ a scaling hyperparameter. At $j = 1$ , $\\pmb { \\theta } _ { 1 } ^ { l } \\sim \\mathrm { G a m } \\left( \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } _ { 1 } ^ { l + 1 } , \\tau _ { 0 } \\right)$ for $l = 1 , \\ldots , L - 1$ and $\\pmb { \\theta } _ { 1 } ^ { L } \\sim \\mathbf { G a m } ( \\nu , \\tau _ { 0 } )$ , where $\\nu = \\mathbf { 1 } _ { K _ { L } }$ . Finally, Dirichlet priors are placed on the columns of $\\Pi ^ { l }$ and $\\Phi ^ { l }$ , i.e., $\\pi _ { k } ^ { l }$ and $\\phi _ { k } ^ { l }$ , which not only makes the latent representation more identifiable and interpretable, but also facilitates inference. The count vector $d _ { j }$ can be factorized into the product of $\\Phi ^ { \\hat { 1 } }$ and $\\theta _ { j } ^ { 1 }$ under the Poisson likelihood. The shape parameters of $\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }$ can be factorized into the sum of $\\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 }$ , capturing inter-layer hierarchical dependence, and $\\Pi ^ { l } \\theta _ { j - 1 } ^ { l }$ , capturing intra-layer temporal dependence. rGBN not only captures the document-level word occurrence patterns inside the training text corpus, but also the sequential dependencies of the sentences inside a document. Note ignoring the recurrent structure, rGBN will reduce to the gamma belief network (GBN) of Zhou et al. (2016), which can be considered as a multi-stochastic-layer deep generalization of LDA (Cong et al., 2017a). If ignoring its hierarchical structure (i.e., $L = 1$ ), rGBN reduces to Poisson–gamma dynamical systems (Schein et al., 2016). We refer to the rGBN-RNN without its recurrent structure as GBN-RNN, which no longer models sequential sentence dependencies; see Appendix A for more details. ", + "bbox": [ + 173, + 679, + 826, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 LANGUAGE MODEL ", + "text_level": 1, + "bbox": [ + 176, + 103, + 348, + 117 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Different from a conventional RNN-based language model, which predicts the next word only using the preceding words within the sentence, we integrate the hierarchical recurrent topic weight vectors $\\theta _ { j } ^ { l }$ into the language model to predict the word sequence in the $j$ th sentence. Our proposed language model is built upon the stacked RNN proposed in Graves (2013); Chung et al. (2017), but with the help of rGBN, it no longer requires specialized training heuristics to extract multi-scale structures. As shown in Fig. 1 (b), to generate $y _ { j , t }$ , the $t ^ { \\mathrm { { t h } } }$ token of sentence $j$ in a document, we construct the hidden states $h _ { j , t } ^ { l }$ of the language model, from the bottom to top layers, as ", + "bbox": [ + 173, + 130, + 826, + 231 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/681993eeb4870a6d22b0668fbca8d79a3ddb4c9fcc349bed19ed6bb70a7ab27f.jpg", + "text": "$$\n\\begin{array} { r } { h _ { j , t } ^ { l } = \\left\\{ \\begin{array} { l l } { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , W _ { e } \\left[ x _ { j , t } \\right] \\right) , } & { \\mathrm { i f } l = 1 , } \\\\ { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , a _ { j , t } ^ { l - 1 } \\right) , } & { \\mathrm { i f } L \\geq l > 1 , } \\end{array} \\right. } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 299, + 239, + 687, + 279 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }$ denotes the word-level LSTM at layer $l$ , ${ \\bf W } _ { e } \\in \\mathbb { R } ^ { V }$ are word embeddings to be learned, and $x _ { j , t } = y _ { j , t - 1 }$ . Note $\\pmb { a } _ { j , t } ^ { l }$ denotes the coupling vector, which combines the temporal topic weight vectors $\\theta _ { j } ^ { l }$ and hidden output of the word-level LSTM $h _ { j , t - 1 } ^ { l }$ at each time step $t$ . ", + "bbox": [ + 174, + 287, + 825, + 337 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Following Lau et al. (2017), a gating unit similar to GRU (Cho et al., 2014) combines $\\theta _ { j } ^ { l }$ of sentence $j$ with its hidden state $h _ { j , t } ^ { l }$ of word-level LSTM at layer $l$ and time $t$ as $\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf $ . We defer the details on $g ^ { l }$ to Appendix B. Denote $\\mathbf { W } _ { o }$ as a weight matrix with $V$ rows and $\\pmb { a } _ { j , t } ^ { 1 : L }$ as the concatenation of $\\boldsymbol { a } _ { j , t } ^ { l }$ across all layers; different from (1), the conditional probability of $y _ { j , t }$ becomes ", + "bbox": [ + 173, + 343, + 825, + 411 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e23f9002b0a63c4ea035a8911b0ff65b571d15481acf5d1b10d27c3bf1d55f7d.jpg", + "text": "$$\np \\left( y _ { j , t } \\mid y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { l } \\right) = \\mathrm { s o f t m a x } \\left( \\mathbf { W } _ { o } \\pmb { a } _ { j , t } ^ { 1 : L } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 359, + 420, + 637, + 440 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "There are two main reasons for combining all the latent representations $\\cdot$ for language modeling. First, the latent representations exhibit different statistical properties at different stochastic layers of rGBN-RNN, and hence are combined together to enhance their representation power. Second, having “skip connections” from all hidden layers to the output one makes it easier to train the proposed network, reducing the number of processing steps between the bottom of the network and the top and hence mitigating the “vanishing gradient” problem (Graves, 2013). ", + "bbox": [ + 173, + 450, + 825, + 535 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To sum up, as depicted in Fig. 1 (a), the topic weight vector $\\theta _ { j } ^ { l }$ of sentence $j$ quantifies the topic usage of its document context $d _ { j }$ at layer $l$ . It is further used as an additional feature of the language model to guide the word generation inside sentence $j$ , as shown in Fig. 1 (b). It is clear that rGBN-RNN has two temporal structures: a deep recurrent topic model to extract the temporal topic weight vectors from the sequential document contexts, and a language model to estimate the probability of each sentence given its corresponding hierarchical topic weight vector. Characterizing the word-sentencedocument hierarchy to incorporate both intra- and inter-sentence information, rGBN-RNN learns more coherent and interpretable topics and increases the generative power of the language model. Distinct from existing topic-guided language models, the temporally related hierarchical topics of rGBN exhibit different statistical properties across layers, which better guides language model to improve its language generation ability. ", + "bbox": [ + 173, + 540, + 826, + 695 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.3 MODEL LIKELIHOOD AND INFERENCE ", + "text_level": 1, + "bbox": [ + 176, + 713, + 478, + 728 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For rGBN-RNN, given $\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }$ , the marginal likelihood of the sequence of sentence-context pairs $( \\{ s _ { 1 } , d _ { 1 } \\} , \\dots , \\{ s _ { J } , d _ { J } \\} )$ of document $\\mathcal { D }$ is defined as ", + "bbox": [ + 171, + 739, + 825, + 768 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ba6cd3efa7b098c87bf01e8813b8bbebf4b9573f7020df7deb07b7f906127c42.jpg", + "text": "$$\n\\begin{array} { r } { P \\left( \\mathcal { D } \\mid \\{ \\Phi ^ { l } , \\mathbf { T } ^ { l } \\} _ { l = 1 } ^ { L } \\right) = \\int \\prod _ { j = 1 } ^ { J } \\left\\{ p \\left( d _ { j } \\mid \\Phi ^ { 1 } \\theta _ { j } ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T _ { j } } p \\left( y _ { j t } \\mid y _ { j , < t } , \\theta _ { j } ^ { 1 ; L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\theta _ { j } ^ { l } \\mid e _ { j } ^ { l } , \\tau _ { 0 } \\right) \\right] \\right\\} d \\theta _ { 1 : J } ^ { 1 : L } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 184, + 777, + 795, + 801 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\mathbf { \\boldsymbol { e } } _ { j } ^ { l } : = \\Phi ^ { l + 1 } \\mathbf { \\boldsymbol { \\theta } } _ { j } ^ { l + 1 } + \\Pi ^ { l } \\mathbf { \\boldsymbol { \\theta } } _ { j - 1 } ^ { l }$ . The inference task is to learn the parameters of both the topic model and language model components. One naive solution is to alternate the training between these two components in each iteration: First, the topic model is trained using a sampling based iterative algorithm provided in Guo et al. (2018); Second, the language model is trained with maximum likelihood estimation under a standard cross-entropy loss. While this naive solution can utilize readily available inference algorithms for both rGBN and the language model, it may suffer from stability and convergence issues. Moreover, the need to perform a sampling based iterative algorithm for rGBN inside each iteration limits the scalability of the model for both training and testing. ", + "bbox": [ + 173, + 809, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/883a58b12452f8aa1ff37acf29b41fe78118af6c66ab12be6bbced62de96b5b2.jpg", + "table_caption": [ + "Algorithm 1 Hybrid SG-MCMC and recurrent autoencoding variational inference for rGBN-RNN. " + ], + "table_footnote": [], + "table_body": "
Set mini-batch size m and the number of layer L Initialize encoder and neural languagemodel parameter parameter Ω,and topic model parameter {Φl,l}=1·
foriter=1,2,. do
Randomly select a mini-batch of m documents consisting of J sentences to form a subset X =
{di,1:J,Si,1:J}m1; m,J,L
Draw random noise {e',j }i=1.j=1,l=1 from uniform distribution;
Calculate VΩL (S2, Φl,II'; X,e,j) according to (6),and update Ω; Sample 0’,j from (7) and (8) via Ω
to update {II′}=1 and {Φ′}𝑖=1, will be described in Appendix C; end for
", + "bbox": [ + 181, + 119, + 825, + 247 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To this end, we introduce a variational recurrent inference network (encoder) to learn the latent temporal topic weight vectors $\\cdot$ . Denoting $\\begin{array} { r } { Q = \\prod _ { j = 1 } ^ { J } \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\leq j } ) } \\end{array}$ , the ELBO of the log marginal likelihood shown in (5) can be constructed as ", + "bbox": [ + 174, + 273, + 826, + 319 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3d639f5eb509b8a36258177986e2fa17aa7d5f71470dd230259f5f525fcad244.jpg", + "text": "$$\n\\begin{array} { r } { L = \\sum _ { j = 1 } ^ { J } \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d _ { j } | \\Phi | ^ { \\mathbf { i } } \\pmb { \\Phi } _ { j } ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T _ { j } } \\ln p \\left( y _ { j , t } | y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { 1 ; L } \\right) \\right] - \\sum _ { j = 1 } ^ { J } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln \\frac { q \\left( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\pmb { \\theta } _ { j } ^ { l } } \\right) } { p \\left( \\pmb { \\theta } _ { j } ^ { l } | \\mathbf { e } _ { j } ^ { l } , \\tau _ { 0 } \\right) } \\right] , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 325, + 799, + 357 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "which unites both the terms that are primarily responsible for training the recurrent hierarchical topic model component, and terms for training the neural language model component. Similar to Zhang et al. (2018), we define $q ( \\pmb { \\theta } _ { j } ^ { l } \\ \\vert \\ \\pmb { d } _ { \\leq j } ) = \\bar { \\mathrm { W e i b u l l } } ( \\pmb { k } _ { j } ^ { l } , \\pmb { \\lambda } _ { j } ^ { l } )$ , a random sample from which can be obtained by transforming standard uniform variables $\\epsilon _ { j } ^ { l }$ as ", + "bbox": [ + 173, + 361, + 825, + 422 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f17bfcf770f8c5e412a7ec05acd0810ed4f6c9c825a7101311d497dbbb9cc05e.jpg", + "text": "$$\n\\pmb { \\theta } _ { j } ^ { l } = \\lambda _ { j } ^ { l } \\big ( - \\ln ( 1 - \\epsilon _ { j } ^ { l } ) \\big ) ^ { 1 / { k _ { j } ^ { l } } } .\n$$", + "text_format": "latex", + "bbox": [ + 400, + 429, + 598, + 455 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To capture the temporal dependencies between the topic weight vectors, both $k _ { j } ^ { l }$ and $\\lambda _ { j } ^ { l }$ , from the bottom to top layers, can be expressed as ", + "bbox": [ + 173, + 462, + 823, + 491 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/43be74adc96890ec451fbee30430565b22fc8900332dee9244027922298d93e7.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { h } _ { j } ^ { s , l } = \\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l } \\big ( \\pmb { h } _ { j - 1 } ^ { s , l } , \\pmb { h } _ { j } ^ { s , l - 1 } \\big ) , \\pmb { k } _ { j } ^ { l } = f _ { k } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , \\pmb { \\lambda } _ { j } ^ { l } = f _ { \\lambda } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 282, + 496, + 714, + 517 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $h _ { j } ^ { s , 0 } = d _ { j } , h _ { 0 } ^ { s , l } = 0 , $ denotes the sentence-level recurrent encoder at layer $\\it l$ implemented with a basic RNN cell, capturing the sequential relationship between sentences within a document, $h _ { j } ^ { s , l }$ denotes the hidden state of $\\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l }$ , and superscript $s$ in $h _ { j } ^ { s , l }$ denotes “sentencelevel RNN” used to distinguish the hidden state of language model in (3) . Note both $f _ { k } ^ { l }$ and $f _ { \\lambda } ^ { l }$ are nonlinear functions mapping state $h _ { j } ^ { s , l }$ to the parameters of $\\theta _ { j } ^ { l }$ , implemented with $f ( { \\pmb x } ) =$ $\\ln ( 1 + \\exp ( \\mathbf { W } x + b ) )$ . ", + "bbox": [ + 173, + 523, + 825, + 622 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Rather than finding a point estimate of the global parameters $\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }$ of the rGBN, we adopt a hybrid inference algorithm by combining TLASGR-MCMC described in Cong et al. (2017a); Zhang et al. (2018) and our proposed recurrent variational inference network. In other words, the global parameters $\\{ \\bar { \\boldsymbol { \\Phi } } ^ { l } , \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { \\bar { L } }$ can be sampled with TLASGR-MCMC, while the parameters of the language model and variational recurrent inference network, denoted by $\\pmb { \\Omega }$ , can be updated via stochastic gradient descent (SGD) by maximizing the ELBO in (6). We describe a hybrid variational/sampling inference for rGBN-RNN in Algorithm 1 and provide more details about sampling $\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }$ with TLASGR-MCMC in Appendix C. We defer the details on model complexity to Appendix E. ", + "bbox": [ + 173, + 627, + 825, + 739 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To sum up, as shown in Fig. 1(c), the proposed rGBN-RNN works with a recurrent variational autoencoder inference framework, which takes the document context of the $j$ th sentence within a document as input and learns hierarchical topic weight vectors $\\theta _ { j } ^ { 1 : L }$ that evolve sequentially with $j$ The learned topic vectors in different layer are then used to reconstruct the document context input and as an additional feature for the language model to generate the $j$ th sentence. ", + "bbox": [ + 174, + 746, + 825, + 816 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 178, + 837, + 415, + 853 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We consider three publicly available corpora, including APNEWS, IMDB, and BNC. The links, preprocessing steps, and summary statistics for them are deferred to Appendix D. We consider a recurrent variational inference network for rGBN-RNN to infer $\\theta _ { j } ^ { l }$ , as shown in Fig. 1(c), whose number of hidden units in (8) are set the same as the number of topics in the corresponding layer. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Following Lau et al. (2017), word embeddings are pre-trained 300-dimension word2vec Google News vectors (https://code.google.com/archive/p/word2vec/). Dropout with a rate of 0.4 is used to the input of the stacked-RNN at each layer, i.e., $\\dot { a } _ { j , t } ^ { l }$ or $W _ { e } \\left[ \\boldsymbol { x } _ { j , t } \\right]$ in (3). The gradients are clipped if the norm of the parameter vector exceeds 5. We use the Adam optimizer (Kingma & Ba, 2015) with learning rate $1 0 ^ { - 3 }$ . The length of an input sentence is fixed to 30. We set the mini-batch size as 8, number of training epochs as 5, and scaling hyperparameter $\\tau _ { 0 }$ as 1. Code in TensorFlow is provided. ", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.1 QUANTITATIVE COMPARISON ", + "text_level": 1, + "bbox": [ + 176, + 207, + 416, + 220 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Perplexity: For fair comparison, we use standard language model perplexity as the evaluation metric, by considering the following baselines: $( i )$ a standard LSTM language model (Hochreiter & Schmidhuber, 1997); (ii) LCLM (Tian & Cho, 2016), a larger-context language model that incorporates context from preceding sentences, which are treated as a bag of words; (iii) a standard LSTM language model incorporating the topic information of a separately trained LDA (LDA+LSTM); (iv) Topic-RNN (Dieng et al., 2017), a hybrid model rescoring the prediction of the next word by incorporating the topic information through a linear transformation; $( \\nu )$ TDLM (Lau et al., 2017), a joint learning framework which learns a convolutional based topic model and a language model simultaneously. (vi) TCNLM (Wang et al., 2018), which extracts the global semantic coherence of a document via a neural topic model, with the probability of each learned latent topic further adopted to build a mixture-of-experts language model; (vii) TGVAE (Wang et al., 2019), combining a variational auto-encoder based neural sequence model with a neural topic model; (viii) GBN-RNN, a simplified rGBN-RNN that removes the recurrent structure of its rGBN component. ", + "bbox": [ + 174, + 233, + 825, + 414 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For rGBN-RNN, to ensure the information about the words in the $j$ th sentence to be predicted is not leaking through the sequential document context vectors at the testing stage, the input $d _ { j }$ in (8) only summarizes the preceding sentences $S _ { < j }$ . For GBN-RNN, following TDLM (Lau et al., 2017) and TCNLM (Wang et al., 2018), all the sentences in a document, excluding the one being predicted, are used to obtain the BoW document context. As shown in Table 1, rGBN-RNN outperforms all baselines, and the trend of improvement continues as its number of layers increases, indicating the effectiveness of assimilating recurrent hierarchical topic information. rGBN-RNN consistently outperforms GBN-RNN, suggesting the benefits of exploiting the sequential dependencies of the sentence-contexts for language modeling. Moreover, comparing Table 1 and Table 4 of Appendix E suggests rGBN-RNN, with its hierarchical and temporal topical guidance, achieves better performance with fewer parameters than comparable RNN-based baselines. ", + "bbox": [ + 174, + 420, + 825, + 573 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Note that for language modeling, there has been significant recent interest in replacing RNNs with Transformer (Vaswani et al., 2017), which consists of stacked multi-head self-attention modules, and its variants (Dai et al., 2019; Devlin et al., 2019; Radford et al., 2018; 2019). While Transformer based language models have been shown to be powerful in various natural language processing tasks, they often have significantly more parameters, require much more training data, and take much longer to train than RNN-based language models. For example, Transformer-XL with 12L and that with 24L (Dai et al., 2019), which improve Transformer to capture longer-range dependencies, have 41M and 277M parameters, respectively, while the proposed rGBN-RNN with three stochastic hidden layers has as few as $\\cdot$ parameters, as shown in Table 4, when used for language modeling. From a structural point-of-view, we consider the proposed rGBN-RNN as complementary to rather than competing with Transformer based language models, and consider replacing RNN with Transformer to construct rGBN guided Transformer as a promising future extension. ", + "bbox": [ + 173, + 580, + 825, + 747 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "BLEU: Following Wang et al. (2019), we use test-BLEU to evaluate the quality of generated sentences with a set of real test sentences as the reference, and self-BLEU to evaluate the diversity of the generated sentences (Zhu et al., 2018). Given the global parameters of the deep recurrent topic model (rGBN) and language model, we can generate the sentences by following the data generation process of rGBN-RNN: we first generate topic weight vectors $\\theta _ { j } ^ { L }$ randomly and then downward propagate it through the rGBN as in (2) to generate $\\theta _ { j } ^ { < L }$ . By assimilating the random draw topic weight vectors with the hidden states of the language model in each layer depicted in (3), we generate a corresponding sentence, where we start from a zero hidden state at each layer in the language model, and sample words sequentially until the end-of-the-sentence symbol is generated. Comparisons of the BLEU scores between different methods are shown in Fig. 2, using the benchmark tool in Texygen (Zhu et al., 2018); We show below BLEU-3 and BLEU-4 for BNC and defer the analogous plots for IMDB and APNEWS to Appendix G and H. Note we set the validation dataset as the ground-truth. ", + "bbox": [ + 173, + 753, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/73e386e70aa57ede6dedf97b01f2ee335fdfa19becbdaf390aa956483c9bf586.jpg", + "table_caption": [ + "Table 1: Comparison of perplexity on three different datasets. " + ], + "table_footnote": [], + "table_body": "
ModelLSTM SizeTopic SizePerplexity
APNEWSIMDBBNC
LCLM(Tian & Cho,2016)60054.1867.7896.50
900-90050.6367.8687.77
LDA+LSTM (Lau et al., 2017)60010055.5269.6496.50
900-90010050.7563.0487.77
TopicRNN (Dieng et al.,2017)60010054.5467.8393.57
900-90010050.2461.5984.62
TDLM (Lau et al., 2017)60010052.7563.4585.99
900-90010048.9759.0481.83
TCNLM (Wang et al.,2018)60010052.6362.6486.44
TGVAE (Wang et al.,2019)900-90010047.8156.3880.14
6005048.7357.1187.86
basic-LSTM(Hochreiter & Schmidhuber,1997)60064.1372.14102.89
900-90058.8966.4794.23
GBN-RNN900-900-90060.1365.1695.73
600 600-51210047.4257.0186.39
100-8044.6455.4282.95
600-512-256100-80-5044.3554.5380.25
60010046.3555.7681.94
rGBN-RNN600-512100-8043.2653.8280.25
600-512-256100-80-5042.7151.3679.13
", + "bbox": [ + 225, + 127, + 776, + 354 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/689a2217afebcff19b79da4e367570d7c586116abefb3572d628c5ba49b631f8.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 503, + 377, + 736, + 517 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/14d6b67e628492ad46630216b1691a87d38768d4c64bd9fb949aadeb6911e8c4.jpg", + "image_caption": [ + "Figure 2: BLEU scores of different methods for BNC. $\\mathbf { X }$ -axis denotes test-BLEU, y-axis self-BLEU, and a better BLEU score would fall within the lower right corner. " + ], + "image_footnote": [], + "bbox": [ + 232, + 377, + 467, + 517 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/c18ac3637092c8dc71298ca34bffdcf08ffbd1c277ffbd215b8990ecc475f69d.jpg", + "image_caption": [ + "Figure 3: Visualization of the $L _ { 2 }$ -norm of the hidden states of the language model of rGBN-RNN, shown in the top-row, and that of GBN-RNN, shown in the bottom row. " + ], + "image_footnote": [], + "bbox": [ + 183, + 550, + 810, + 651 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For all datasets, it is clear that rGBN-RNN yields both higher test-BLEU and lower self-BLEU scores than related methods do, indicating the stacked-RNN based language model in rGBN-RNN generalizes well and does not suffer from mode collapse (i.e., low diversity). ", + "bbox": [ + 174, + 685, + 825, + 728 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.2 QUALITATIVE ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 744, + 383, + 758 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Hierarchical structure of language model: In Fig. 3, we visualize the hierarchical multi-scale structures learned with the language model of rGBN-RNN and that of GBN-RNN, by visualizing the $L _ { 2 }$ -norm of the hidden states in each layer, while reading a sentence from the APNEWS validation set as “the service employee international union asked why cme group needs tax relief when it is making huge amounts of money?” As shown in Fig. 3(a), in the bottom hidden layer (h1), the $\\cdot$ norm sequence varies quickly from word to word, except within short phrases such “service employee”, “international union,” and “tax relief,” suggesting layer h1 is in charge of capturing short-term local dependencies. By contrast, in the top hidden layer (h3), the $L _ { 2 }$ norm sequence varies slowly and exhibits semantic/syntactic meaningful long segments, such as “service employee international union,” “asked why cme group needs tax relief,” “when it is,” and “making huge amounts of,” suggesting that layer h3 is in charge of capturing long-range dependencies. Therefore, the language model in rGBN-RNN can allow more specific information to transmit through lower layers, while allowing more general higher level information to transmit through higher layers. Our proposed model have the ability to learn hierarchical structure of the sequence, despite without designing the multiscale RNNs on purpose like Chung et al. (2017). We also visualize the language model of GBN-RNN in Fig. 3(b); with much less smoothly time-evolved deeper layers, GBN-RNN fails to utilize its stacked RNN structure as effectively as rGBN-RNN does. This suggests that the language model is much better trained in rGBN-RNN than in GBN-RNN for capturing long-range temporal dependencies, which helps explain why rGBN-RNN exhibits clearly boosted BLEU scores in comparison to GBN-RNN. ", + "bbox": [ + 173, + 770, + 826, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/c6c87135119fc368e16b91c16511c2df95d97a5e3e106d36f41782b51347d109.jpg", + "image_caption": [ + "Figure 4: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the APNEWS dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic at layer 3, 2, 1 are shown in orange, yellow and blue boxes respectively, and each sentence is shown in a dotted line box labeled with the corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom of the figure. " + ], + "image_footnote": [], + "bbox": [ + 209, + 102, + 784, + 369 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 457, + 825, + 569 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Hierarchical topics: We present an example topic hierarchy inferred by a three-layer rGBN-RNN from APNEWS. In Fig. 4, we select a large-weighted topic at the top hidden layer and move down the network to include any lower-layer topics connected to their ancestors with sufficiently large weights. Horizontal arrows link temporally related topics at the same layer, while top-down arrows link hierarchically related topics across layers. For example, topic 48 of layer 3 on “budget, lawmakers, gov., revenue,” is related not only in hierarchy to topic 57 on “lawmakers, pay, proposal, legislation” and topic 60 of the lower layer on “budget, gov., revenue, vote, costs, mayor,” but also in time to topic 35 of the same layer on “democratic, taxes, proposed, future, state.” Highly interpretable hierarchical relationships between the topics at different layers, and temporal relationships between the topics at the same layer are captured by rGBN-RNN, and the topics are often quite specific semantically at the bottom layer while becoming increasingly more general when moving upwards. ", + "bbox": [ + 173, + 575, + 826, + 728 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Sentence generation under topic guidance: Given the learned rGBN-RNN, we can sample the sentences both conditioning on a single topic of a certain layer and on a combination of the topics from different layers. Shown in the dotted-line boxes in Fig. 4, most of the generated sentences conditioned on a single topic or a combination of topics are highly related to the given topics in terms of their semantical meanings but not necessarily in key words, indicating the language model is successfully guided by the recurrent hierarchical topics. These observations suggest that rGBN-RNN has successfully captured syntax and global semantics simultaneously for natural language generation. ", + "bbox": [ + 174, + 736, + 825, + 833 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Sentence/paragraph generation conditioning on a paragraph: Given the GBN-RNN and rGBNRNN learned on APNEWS, we further present the generated sentences conditioning on a paragraph, as shown in Fig. 5. To randomly generate sentences, we encode the paragraph into a hierarchical latent representation and then feed it into the stacked-RNN. Besides, we can generate a paragraph with rGBN-RNN, using its recurrent inference network to encode the paragraph into a dynamic hierarchical latent representation, which is fed into the language model to predict the word sequence ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Document ", + "text_level": 1, + "bbox": [ + 194, + 109, + 243, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "。 the senate sponsor (…) , a house committee last week removed photo ids issued by public colleges and universities from the measure sponsored by republican rep. susan lynn , who said she agreed with the change . the house approved the bill on a 65-30 vote on monday evening . but republican sen. bill ketron in a statement noted that the upper chamber overwhelmingly rejected efforts to take student ids out of the bill when it passed 21-8 earlier this month . ketron said he would take the bill to conference committee if needed . ", + "bbox": [ + 196, + 116, + 797, + 155 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Generated Sentences with GBN-RNN ", + "text_level": 1, + "bbox": [ + 192, + 162, + 362, + 171 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "$^ { \\circ }$ if the house and senate agree , it will be the first time they 'll have to seek their first meeting . \n。 the proposal would also give lawmakers with more money to protect public safety , he said . ", + "bbox": [ + 196, + 172, + 591, + 193 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Generated Sentences with rGBN-RNN ", + "text_level": 1, + "bbox": [ + 194, + 200, + 367, + 210 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "the proposal , which was introduced in the house on a vote on wednesday , has already passed the senate floor to the house the city commission voted last week to approve the law , which would have allowed the council to approve the new bill . ", + "bbox": [ + 192, + 212, + 722, + 233 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Generated temporal Sentences with rGBN-RNN (Paragraph) ", + "text_level": 1, + "bbox": [ + 194, + 238, + 468, + 248 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "senate president pro tem joe scarnati said the governor 's office has never resolved the deadline for a vote in the house . the proposal is a new measure version of the bill to enact a senate committee to approve the emergency manager ‘s emergency license . the house gave the bill to six weeks of testimony , but the vote now goes to the full house for consideration . jackson signed his paperwork wednesday with the legislature .the proposal would also give lawmakers with more money to protect public safety , he said . \"a spokesman for the federal department of public safety says it has been selected for a special meeting for the state senate to investigate his proposed law . a new state house committee has voted to approve a measure to let idaho join a national plan to ban private school systems at public schools . the campaign also launched a website at the university of california , irvine , which are studying the current proposal . ", + "bbox": [ + 196, + 248, + 797, + 314 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Figure 5: Examples of generated sentences and paragraph conditioned on a document from APNEWS (green denotes novel words, blue the key words in document and generated sentences.) ", + "bbox": [ + 174, + 321, + 823, + 348 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "in each sentence of the input paragraph. It is clear that both the proposed GBN-RNN and rGBN-RNN can successfully capture the key textual information of the input paragraph, and generate diverse realistic sentences. Interestingly, the rGBN-RNN can generate semantically coherent paragraphs, incorporating contextual information both within and beyond the sentences. Note that with the topics that extract the document-level word cooccurrence patterns, our proposed models can generate semantically-meaningful words, which may not exist in the original document. ", + "bbox": [ + 174, + 369, + 825, + 454 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 474, + 318, + 489 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We propose a recurrent gamma belief network (rGBN) guided neural language modeling framework, a novel method to learn a language model and a deep recurrent topic model simultaneously. For scalable inference, we develop hybrid SG-MCMC and recurrent autoencoding variational inference, allowing efficient end-to-end training. Experiments results conducted on real world corpora demonstrate that the proposed models outperform a variety of shallow-topic-model-guided neural language models, and effectively generate the sentences from the designated multi-level topics or noise, while inferring interpretable hierarchical latent topic structure of document and hierarchical multiscale structures of sequences. For future work, we plan to extend the proposed models to specific natural language processing tasks, such as machine translation, image paragraph captioning, and text summarization. Another promising extension is to replace the stacked-RNN in rGBN-RNN with Transformer, i.e., constructing an rGBN guided Transformer as a new larger-context neural language model. ", + "bbox": [ + 173, + 506, + 826, + 659 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 680, + 285, + 695 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A neural knowledge language model. arXiv: Computation and Language, 2017. ", + "bbox": [ + 176, + 704, + 825, + 733 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "D. M. Blei and J. D. Lafferty. Dynamic topic models. In ICML, 2006. ", + "bbox": [ + 174, + 742, + 633, + 757 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "David M Blei, Andrew Y Ng, and Michael I Jordan. Latent Dirichlet allocation. Journal of Machine Learning Research, 3:993–1022, 2003. ", + "bbox": [ + 174, + 766, + 823, + 795 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Fethi Bougares, and Yoshua Bengio. Learning phrase representations using RNN encoder-decoder for statistical machine translation. In Computer Science, 2014. ", + "bbox": [ + 176, + 804, + 823, + 847 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Junyoung Chung, Sungjin Ahn, and Yoshua Bengio. Hierarchical multiscale recurrent neural networks. In ICLR, 2017. ", + "bbox": [ + 173, + 857, + 821, + 885 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yulai Cong, Bo Chen, Hongwei Liu, and Mingyuan Zhou. Deep latent Dirichlet allocation with topic-layer-adaptive stochastic gradient Riemannian MCMC. In ICML, 2017a. ", + "bbox": [ + 174, + 895, + 820, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Yulai Cong, Bo Chen, and Mingyuan Zhou. Fast simulation of hyperplane-truncated multivariate normal distributions. Bayesian Anal., 12(4):1017–1037, 2017b. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "BNC Consortium. The British National Corpus, version 3 (BNC XML Edition). http://www. natcorp.ox.ac.uk, 2007. ", + "bbox": [ + 173, + 141, + 825, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. In ACL, 2019. ", + "bbox": [ + 176, + 180, + 823, + 210 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Devlin, Mingwei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In north american chapter of the association for computational linguistics, pp. 4171–4186, 2019. ", + "bbox": [ + 173, + 219, + 823, + 263 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Adji B Dieng, Chong Wang, Jianfeng Gao, and John Paisley. TopicRNN: A recurrent neural network with long-range semantic dependency. In ICLR, 2017. ", + "bbox": [ + 173, + 272, + 823, + 303 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhe Gan, Changyou Chen, Ricardo Henao, David Carlson, and Lawrence Carin. Scalable deep Poisson factor analysis for topic modeling. In ICML, pp. 1823–1832, 2015. ", + "bbox": [ + 173, + 310, + 823, + 342 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhe Gan, Chuang Gan, Xiaodong He, Yunchen Pu, Kenneth Tran, Jianfeng Gao, Lawrence Carin, and Li Deng. Semantic compositional networks for visual captioning. In CVPR, pp. 1141–1150, 2017. ", + "bbox": [ + 176, + 349, + 823, + 393 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Bottom-up abstractive summarization. In EMNLP, pp. 4098–4109, 2018. ", + "bbox": [ + 171, + 402, + 825, + 433 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mark A Girolami and Ben Calderhead. Riemann manifold Langevin and Hamiltonian Monte Carlo methods. Journal of The Royal Statistical Society Series B-statistical Methodology, 73(2):123–214, 2011. ", + "bbox": [ + 174, + 441, + 825, + 484 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A. Graves, A. Mohamed, and G. Hinton. Speech recognition with deep recurrent neural networks. In ICASSP, pp. 6645–6649, 2013. ", + "bbox": [ + 173, + 494, + 823, + 525 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alex Graves. Generating sequences with recurrent neural networks. arXiv: Neural and Evolutionary Computing, 2013. ", + "bbox": [ + 173, + 534, + 823, + 564 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "T. L. Griffiths and M. Steyvers. Finding scientific topics. Proceedings of the National Academy of Sciences, 101:5228–5235, 2004. ", + "bbox": [ + 173, + 571, + 825, + 602 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Thomas L Griffiths, Mark Steyvers, David M Blei, and Joshua B Tenenbaum. Integrating topics and syntax. In NeurIPS, pp. 537–544, 2004. ", + "bbox": [ + 174, + 611, + 825, + 641 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dandan Guo, Bo Chen, Hao Zhang, and Mingyuan Zhou. Deep Poisson gamma dynamical systems. In NeurIPS, pp. 8451–8461, 2018. ", + "bbox": [ + 173, + 650, + 825, + 679 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. Neural Computation, 9(8): 1735–1780, 1997. ", + "bbox": [ + 171, + 689, + 825, + 718 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthew D Hoffman, David M Blei, Chong Wang, and John Paisley. Stochastic variational inference. The Journal of Machine Learning Research, 14(1):1303–1347, 2013. ", + "bbox": [ + 171, + 728, + 825, + 757 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In ICLR, 2015. ", + "bbox": [ + 171, + 767, + 812, + 784 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2013. ", + "bbox": [ + 174, + 791, + 751, + 808 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "D Klein and Christopher D Manning. Accurate unlexicalized parsing. In Meeting of the Association for Computational Linguistics, 2003. ", + "bbox": [ + 173, + 818, + 823, + 847 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jey Han Lau, Timothy Baldwin, and Trevor Cohn. Topically driven neural language model. In meeting of the association for computational linguistics, pp. 355–365, 2017. ", + "bbox": [ + 174, + 856, + 821, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "C. Li, C. Chen, D. Carlson, and L. Carin. Preconditioned stochastic gradient Langevin dynamics for deep neural networks. arXiv, 2015. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Y. Ma, T. Chen, and E. Fox. A complete recipe for stochastic gradient MCMC. In NIPS, pp. 2899–2907, 2015. \nAndrew L. Maas, Raymond E. Daly, Peter T. Pham, Huang Dan, Andrew Y. Ng, and Christopher Potts. \nLearning Word Vectors for Sentiment Analysis. In Meeting of the Association for Computational Linguistics: Human Language Technologies, 2011. \nJunhua Mao, Wei Xu, Yi Yang, Jiang Wang, Zhiheng Huang, and Alan L Yuille. Deep captioning with multimodal recurrent neural networks (m-RNN). In ICLR, 2015. \nYishu Miao, Edward Grefenstette, and Phil Blunsom. Discovering discrete latent topics with neural variational inference. In ICML, pp. 2410–2419, 2017. \nTomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model. In SLT, pp. 234–239, 2012. \nTomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Recurrent neural network based language model. In Interspeech, 2010. \nTomas Mikolov, Stefan Kombrink, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Extensions of recurrent neural network language model. In ICASSP, pp. 5528–5531, 2011. \nAndriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In \nICML, pp. 1791–1799, 2014. \nSam Patterson and Yee Whye Teh. Stochastic gradient Riemannian Langevin dynamics on the \nprobability simplex. In NIPS, pp. 3102–3110, 2013. \nAlec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language under \nstanding by generative pre-training. 2018. \nAlec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language \nmodels are unsupervised multitask learners. 2019. \nSteven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical \nsequence training for image captioning. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 7008–7024, 2017. \nDanilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and approximate inference in deep generative models. In ICML, pp. 1278–1286, 2014. \nAlexander M Rush, Sumit Chopra, and Jason Weston. A neural attention model for abstractive sentence summarization. In EMNLP, pp. 379–389, 2015. \nAaron Schein, Hanna Wallach, and Mingyuan Zhou. Poisson–gamma dynamical systems. In Neural Information Processing Systems, 2016. \nAkash Srivastava and Charles Sutton. Autoencoding variational inference for topic models. In ICLR, 2017. \nNitish Srivastava, Ruslan Salakhutdinov, and Geoffrey E Hinton. Modeling documents with deep Boltzmann machines. In Uncertainty in Artificial Intelligence, 2013. \nIlya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks. \nIn Advances in neural information processing systems, pp. 3104–3112, 2014. \nYee Whye Teh, Michael I Jordan, Matthew J Beal, and David M Blei. Hierarchical Dirichlet processes. Publications of the American Statistical Association, 101(476):1566–1581, 2006. \nWang Tian and Kyunghyun Cho. Larger-context language modelling with recurrent neural network. In Meeting of the Association for Computational Linguistics, 2016. \nAshish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Neural Information Processing Systems, pp. 6000–6010, 2017. \nOriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image caption generator. In CVPR, 2015. \nHanna M Wallach. Topic modeling: beyond bag-of-words. In ICML, pp. 977–984, 2006. \nWenlin Wang, Zhe Gan, Wenqi Wang, Dinghan Shen, Jiaji Huang, Wei Ping, Sanjeev Satheesh, and Lawrence Carin. Topic compositional neural language model. In AISTATS, pp. 356–365, 2018. \nWenlin Wang, Zhe Gan, Hongteng Xu, Ruiyi Zhang, Guoyin Wang, Dinghan Shen, Changyou Chen, and Lawrence Carin. Topic-guided variational autoencoders for text generation. In NAACL, 2019. \nMax Welling and Yee Whye Teh. Bayesian learning via stochastic gradient Langevin dynamics. In ICML, pp. 681–688, 2011. \nKelvin Xu, Jimmy Ba, Ryan Kiros, Kyunghyun Cho, Aaron C Courville, Ruslan Salakhudinov, Rich Zemel, and Yoshua Bengio. Show, attend and tell: Neural image caption generation with visual attention. In ICML, pp. 2048–2057, 2015. \nHao Zhang, Bo Chen, Dandan Guo, and Mingyuan Zhou. WHAI: Weibull hybrid autoencoding inference for deep topic modeling. In ICLR, 2018. \nHe Zhao, Lan Du, Wray Buntine, and Mingyuan Zhou. Dirichlet belief networks for topic structure learning. In Neural Information Processing Systems, pp. 7955–7966, 2018. \nMingyuan Zhou and Lawrence Carin. Negative binomial process count and mixture modeling. IEEE Transactions on Pattern Analysis and Machine Intelligence, 37(2):307–320, 2015. \nMingyuan Zhou, Yulai Cong, and Bo Chen. Augmentable gamma belief networks. J. Mach. Learn. Res., 17(163):1–44, 2016. \nYaoming Zhu, Sidi Lu, Lei Zheng, Jiaxian Guo, Weinan Zhang, Jun Wang, and Yong Yu. Texygen: A benchmarking platform for text generation models. SIGIR, 2018. ", + "bbox": [ + 171, + 65, + 828, + 935 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 98, + 828, + 511 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A THE GBN-RNN ", + "text_level": 1, + "bbox": [ + 176, + 101, + 346, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "GBN-RNN: $\\{ y _ { 1 : T } , d \\}$ denotes a sentence-context pair, where $d \\in \\mathbb { Z } _ { + } ^ { V _ { c } }$ represents the document-level context as a word frequency count vector, the vth element of which counts the number of times the vth word in the vocabulary appears in the document excluding sentence $y _ { 1 : T }$ . The hierarchical model of a $L$ -hidden-layer GBN, from top to bottom, is expressed as ", + "bbox": [ + 174, + 131, + 825, + 189 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/53f54a15e4e762c290ecd4efea0cb387c84f0c83fe6e213c789c79b4468dbc26.jpg", + "text": "$$\n\\begin{array} { r l } & { \\pmb { \\theta } ^ { L } \\sim \\mathrm { G a m } \\left( r , c ^ { L + 1 } \\right) , \\ldots , \\pmb { \\theta } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , c ^ { l + 1 } \\right) , \\ldots , } \\\\ & { \\pmb { \\theta } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } ^ { 2 } , c ^ { 2 } \\right) , \\ d \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } ^ { 1 } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 290, + 194, + 704, + 238 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The stacked-RNN based language model described in (3) is also used in GBN-RNN. ", + "bbox": [ + 176, + 247, + 727, + 263 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Statistical inference: To infer GBN-RNN, we consider a hybrid of stochastic gradient MCMC (Welling & Teh, 2011; Patterson & Teh, 2013; Li et al., 2015; Ma et al., 2015; Cong et al., 2017a), used for the GBN topics $\\phi _ { k } ^ { l }$ , and auto-encoding variational inference (Kingma & Welling, 2013; Rezende et al., 2014), used for the parameters of both the inference network (encoder) and RNN. More specifically, GBN-RNN generalizes Weibull hybrid auto-encoding inference (WHAI) of Zhang et al. (2018): it uses a deterministic-downward-stochastic-upward inference network to encode the bag-of-words representation of $^ d$ into the latent topic-weight variables $\\pmb { \\theta } ^ { l }$ across all hidden layers, which are fed into not only GBN to reconstruct $\\textbf { \\em d }$ , but also a stacked RNN in language model, as shown in (3), to predict the word sequence in $y _ { 1 : T }$ . The topics $\\phi _ { k } ^ { l }$ can be sampled with topic-layeradaptive stochastic gradient Riemannian (TLASGR) MCMC, whose details can be found in Cong et al. (2017a); Zhang et al. (2018), omitted here for brevity. Given the sampled topics $\\phi _ { k } ^ { l }$ , the joint marginal likelihood of $\\{ y _ { 1 : T } , d \\}$ is defined as ", + "bbox": [ + 173, + 268, + 826, + 438 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d62ddf2d36ec01dd8c2fb3798602cceeb233fc9734b065d075aceaf11e1cfbc9.jpg", + "text": "$$\np \\left( \\boldsymbol { y } _ { 1 : T } , d \\mid \\{ \\Phi ^ { l } \\} _ { l } \\right) = \\int p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T } p \\left( \\boldsymbol { y } _ { t } \\mid \\boldsymbol { y } _ { 1 : t - 1 } , \\boldsymbol { \\theta } ^ { 1 : L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\boldsymbol { \\theta } ^ { l } \\mid \\Phi ^ { l + 1 } \\boldsymbol { \\theta } ^ { l + 1 } \\right) \\right] d \\boldsymbol { \\theta } ^ { 1 : L } .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 443, + 789, + 486 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "For efficient inference, an inference network as $\\begin{array} { r } { Q = \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } ^ { l } | \\pmb { d } , \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } ) } \\end{array}$ is used to provide a ELBO of the log joint marginal likelihood as ", + "bbox": [ + 176, + 492, + 823, + 523 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/348d23660459e876227d8e29afa3ebcf458b3fe716ff9efda204c3d1abfa6549.jpg", + "text": "$$\n{ \\overset { , } { \\left( } { y _ { 1 : T } , d \\right) } } = \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T } \\ln p \\left( y _ { t } \\mid y _ { 1 : t - 1 } , \\theta ^ { 1 : L } \\right) \\right] - \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln { \\frac { q \\left( \\theta ^ { l } \\mid d , \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } { p \\left( \\theta ^ { l } \\mid \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 181, + 530, + 825, + 566 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "and the training is performed by maximizing $\\mathbb { E } _ { p _ { \\mathrm { d a t a } } ( y _ { 1 : T } , d ) } [ L ( y _ { 1 : T } , d ) ]$ ; following Zhang et al. (2018), we define $q ( \\pmb { \\theta } ^ { l } \\mid d , \\pmb { \\Phi } ^ { l + 1 } , \\pmb { \\theta } ^ { l + 1 } ) = \\mathrm { W e i b u l l } ( \\pmb { k } ^ { l } + \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , \\pmb { \\lambda } ^ { l } )$ , where both $k ^ { l }$ and $\\lambda ^ { l }$ are deterministically transformed from $^ d$ using neural networks. Distinct from a usual variational auto-encoder whose inference network has a pure bottom-up structure, the inference network here has a determisticupward–stoachstic-downward ladder structure (Zhang et al., 2018). ", + "bbox": [ + 173, + 577, + 826, + 650 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B THE COUPLING VECTOR ", + "text_level": 1, + "bbox": [ + 176, + 670, + 410, + 685 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Following Lau et al. (2017), the $\\mathbf { \\Delta } _ { \\cdot \\cdot } ^ { a _ { j , t } ^ { l } } = g ^ { l } \\left( h _ { j , t } ^ { l } , \\theta _ { j } ^ { l } \\right)$ can be implemented with a gating unit similar to a GRU (Cho et al., 2014), describe as ", + "bbox": [ + 174, + 699, + 825, + 729 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a19b9303ca8190ac8c615aac41014e4a0ea631df5bdd37fd3f993bd6d2797890.jpg", + "text": "$$\n\\begin{array} { r l } & { z _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { z } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { z } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { z } ^ { l } \\right) } \\\\ & { r _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { r } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { r } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { r } ^ { l } \\right) } \\\\ & { \\hat { h } _ { j , t } ^ { l } = \\operatorname { t a n h } \\left( \\mathbf { W } _ { h } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { h } ^ { l } \\left( r _ { j , t } ^ { l } \\odot { h } _ { j , t } ^ { l } \\right) + \\mathbf { b } _ { h } ^ { l } \\right) } \\\\ & { a _ { j , t } ^ { l } = \\left( 1 - z _ { j , t } ^ { l } \\right) \\odot { h } _ { j , t } ^ { l } + z _ { j , t } ^ { l } \\odot \\hat { h } _ { j , t } ^ { l } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 733, + 656, + 824 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "C SGMCMC FOR RGBN-RNN ", + "text_level": 1, + "bbox": [ + 176, + 835, + 450, + 853 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "To allow for scalable inference, we apply the topic-layer-adaptive stochastic gradient Riemannian (TLASGR) MCMC algorithm described in Cong et al. (2017a); Zhang et al. (2018), which can be used to sample simplex-constrained global parameters Cong et al. (2017b) in a mini-batch based manner. It improves its sampling efficiency via the use of the Fisher information matrix (FIM) ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Girolami & Calderhead (2011), with adaptive step-sizes for the latent factors and transition matrices of different layers. In this section, we discuss how to update the global parameters $\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }$ of rGBN in detail and give a complete one in Algorithm in 1. ", + "bbox": [ + 173, + 103, + 825, + 147 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Sample the auxiliary counts: This step is about the “backward” and “upward” pass. Let us denote $\\_$ Kl , $\\cdot$ , and $x _ { k j } ^ { ( 1 , 1 ) } = d _ { v j }$ , where $-$ is shown in (2). Working backward for $\\cdot$ and upward for $\\cdot$ , we draw ", + "bbox": [ + 174, + 152, + 825, + 200 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/24b0837a7e013a09877465c1b7d936c3e49729d24fec23b9a6205fe734836063.jpg", + "text": "$$\n\\begin{array} { r l } & { ( A _ { k 1 j } ^ { l } , . . . , . , A _ { k K _ { l } j } ^ { l } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { ( l , l ) } ; \\frac { \\phi _ { k 1 } ^ { l } \\theta _ { 1 j } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k k _ { l } } ^ { l } \\theta _ { k l } ^ { l } } , . . . , \\frac { \\phi _ { k K _ { l } } ^ { l } \\theta _ { K l } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k l } ^ { l } \\theta _ { k l } ^ { l } } \\right) , } \\\\ & { x _ { k j } ^ { l + 1 } \\sim \\mathrm { C R T } \\left[ A _ { \\cdot k j } ^ { l } + Z _ { \\cdot k , j + 1 } ^ { l } , \\tau _ { 0 } \\left( \\sum _ { k _ { l + 1 } = 1 } ^ { K _ { l + 1 } } \\phi _ { k k _ { l + 1 } } ^ { l + 1 } \\theta _ { k _ { l + 1 } j } ^ { l + 1 } + \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\pi _ { k k _ { 1 } } ^ { l } \\theta _ { k _ { 1 } , j - 1 } ^ { l } \\right) \\right] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 200, + 204, + 769, + 282 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Note that via the deep structure, the latent counts xl+1kj will be influenced by the effects from both time $\\cdot$ at layer $\\cdot$ and time $j$ at layer ${ \\it l } + 1$ . With $\\_$ and $p _ { 2 } : =$ $\\cdot$ , we can sample the latent counts at layer $\\cdot$ and ${ \\it l } + 1$ by ", + "bbox": [ + 176, + 284, + 823, + 340 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/034b6f3634a246ffdf00d9ed069105d5810e2f614b77264f87c035ec4393c70d.jpg", + "text": "$$\n( x _ { k j } ^ { l + 1 , l } , x _ { k j } ^ { l + 1 , l + 1 } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { l + 1 } , p _ { 1 } / ( p _ { 1 } + p _ { 2 } ) , p _ { 2 } / ( p _ { 1 } + p _ { 2 } ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 285, + 344, + 710, + 372 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and then draw ", + "bbox": [ + 173, + 375, + 269, + 387 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/5471998221864c5cff248067a3072c69ae8138bb363c56ceaf2ac0847b5fcca2.jpg", + "text": "$$\n-\n$$", + "text_format": "latex", + "bbox": [ + 228, + 387, + 769, + 433 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In rGBN, the prior and the likelihood of $\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }$ is very similar with $\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }$ , so we also apply the TLASGR MCMC sampling algorithm on both of them conditioned on the auxiliary counts. ", + "bbox": [ + 173, + 444, + 825, + 476 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Sample the hierarchical components $\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }$ : For $\\phi _ { k } ^ { l }$ , the $k$ th column of the loading matrix $\\Phi ^ { l }$ of layer $l$ , its sampling can be efficiently realized as ", + "bbox": [ + 171, + 479, + 821, + 511 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/515664226991ceaa40c20a2cc840205153846da8ec91755cea1e12689ca059f5.jpg", + "text": "$$\n\\begin{array} { r l r } { { ( \\phi _ { k } ^ { l } ) _ { n + 1 } = [ ( \\phi _ { k } ^ { l } ) _ { n } + \\frac { \\varepsilon _ { n } } { P _ { k } ^ { l } } [ ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + \\eta _ { 0 } ^ { l } ) - ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + K _ { l - 1 } \\eta _ { 0 } ^ { l } ) ( \\phi _ { k } ^ { l } ) _ { n } ] } } \\\\ & { } & { + \\ N ( 0 , \\frac { 2 \\varepsilon _ { n } } { P _ { k } ^ { l } } [ \\mathrm { d i a g } ( \\phi _ { k } ^ { l } ) _ { n } - ( \\phi _ { k } ^ { l } ) _ { n } ( \\phi _ { k } ^ { l } ) _ { n } ^ { T } ] ) ] _ { \\angle } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 512, + 723, + 585 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $P _ { k } ^ { l }$ is calculated using the estimated FIM, $\\begin{array} { r } { \\tilde { A } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } A _ { k _ { l } k { j } } ^ { l } , \\tilde { A } _ { : k \\cdot } ^ { l } = \\{ \\tilde { A } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { A } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}$ and $\\begin{array} { r } { \\tilde { A } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { A } _ { k _ { l } j } ^ { l } . } \\end{array}$ , $A _ { k _ { l } k j } ^ { l }$ l l comes from the augmented latent counts $A ^ { l }$ in (13), $\\eta _ { 0 } ^ { l }$ l denote the prior of $\\phi _ { k } ^ { l }$ , and $[ \\cdot ] _ { \\angle }$ denotes a simplex constraint. ", + "bbox": [ + 176, + 587, + 821, + 642 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Sample the transmission matrix $\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }$ : For $\\pi _ { k } ^ { l }$ , the $k$ th column of the transition matrix $\\Pi ^ { l }$ of layer $l$ , its sampling can be efficiently realized as ", + "bbox": [ + 174, + 647, + 823, + 678 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/514bdf702093229444d62ad827d2c3c7b0c9ecaac1de56bc2bfdb1df032a3d41.jpg", + "text": "$$\n\\begin{array} { r l } & { \\left( \\pi _ { k } ^ { l } \\right) _ { n + 1 } = \\biggr [ \\left( \\pi _ { k } ^ { l } \\right) _ { n } + \\frac { \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { : k } ^ { l } \\right) - \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { . k } ^ { l } \\right) \\left( \\pi _ { k } ^ { l } \\right) _ { n } \\right] } \\\\ & { \\qquad + \\mathcal { N } \\left( 0 , \\frac { 2 \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\mathrm { d i a g } ( \\pi _ { k } ^ { l } ) _ { n } - ( \\pi _ { k } ^ { l } ) _ { n } ( \\pi _ { k } ^ { l } ) _ { n } ^ { T } \\right] \\right) \\biggr ] _ { \\angle } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 285, + 680, + 712, + 753 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $M _ { k } ^ { l }$ is calculated using the estimated FIM, $\\begin{array} { r } { \\tilde { Z } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } Z _ { k _ { l } k _ { j } } ^ { l } , \\tilde { Z } _ { : k \\cdot } ^ { l } = \\{ \\tilde { Z } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { Z } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}$ and $\\begin{array} { r } { \\tilde { Z } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { Z } _ { k _ { l } j } ^ { l } } \\end{array}$ · , $Z _ { k _ { l } k j } ^ { l }$ comes from the augmented latent counts $Z ^ { l }$ in (16), and $[ . ] _ { \\angle }$ denotes a simplex constraint, and $\\eta _ { ; k } ^ { l }$ denotes the prior of $\\pi _ { k } ^ { l }$ , more details about TLASGR-MCMC for our proposed model can be found in Cong et al. (2017a). ", + "bbox": [ + 173, + 755, + 826, + 824 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "D DATASETS ", + "text_level": 1, + "bbox": [ + 173, + 842, + 297, + 858 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We consider three publicly available corpora1. APNEWS is a collection of Associated Press news articles from 2009 to 2016, IMDB is a set of movie reviews collected by Maas et al. (2011), and BNC is the written portion of the British National Corpus (Consortium, 2007). Following the preprocessing steps in Lau et al. (2017), we tokenize words and sentences using Stanford CoreNLP (Klein & Manning, 2003), lowercase all word tokens, and filter out word tokens that occur less than 10 times. For the topic model, we additionally exclude stopwords2 and the top $0 . 1 \\%$ most frequent words. All these corpora are partitioned into training, validation, and testing sets, whose summary statistics are provided in Table 2 of the Appendix. ", + "bbox": [ + 174, + 872, + 825, + 901 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/18adee267fb7312ee6e79eec4f085e18f2b7c8b3931f3ca78a94525be76d1202.jpg", + "table_caption": [ + "Table 2: Summary statistics for the datasets. " + ], + "table_footnote": [], + "table_body": "
DatasetVocubalryTrainingValidationTesting
LMTMDocsSentsTokensDocsSentsTokensDocsSentsTokens
APNEWS342313216950K0.8M15M2K33K0.6M2K32K0.6M
IMDB360093492575K1.1M20M12.5K0.18M0.3M12.5K0.18M0.3M
BNC437034155215K1M18M1K57K1M1K66K1M
", + "bbox": [ + 176, + 227, + 821, + 306 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E COMPLEXITY OF RGBN-RNN ", + "text_level": 1, + "bbox": [ + 176, + 349, + 459, + 366 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The proposed rGBN-RNN consists of both language model and topic model compontopic model component, there are the global parameters of rGBN (decoder), including $\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }$ in (2) , and the parameters of the variational recurrent inference network (encoder), consisting of $\\cdot$ , $f _ { k } ^ { l }$ , and $\\cdot$ in (8). The language model component is parameterized by $\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }$ in (3) and the coupling vectors $\\cdot$ described in Appendix B. We summarize in Table 3 the complexity of rGBN-RNN (ignoring all bias terms), where $V$ denotes the vocabulary size of the language model, $\\cdot$ the dimension of word embedding vectors, $V _ { c }$ the size of the vocabulary of the topic model that excludes stop words, $H _ { l } ^ { w }$ the number of hidden units of the word-level LSTM at layer $\\cdot$ (stacked-RNN language model), $H _ { l } ^ { s }$ the number of hidden units of the sentence-level RNN at layer $\\cdot$ (variational recurrent inference network), and $\\cdot$ the number of topics at layer $\\it l$ . ", + "bbox": [ + 173, + 381, + 826, + 523 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 4 further compares the number of parameters between various RNN-based language models, where we follow the convention to ignore the word embedding layers. Some models in Table 1 are not included here, because we could not find sufficient information from their corresponding papers or code to accurately calculate the number of model parameters. Note when used for language generation at the testing stage, rGBN-RNN no longer needs its topics $\\{ \\Phi ^ { l } \\}$ , whose parameters are hence not counted. Note the number of parameters of the topic model component is often dominated by that of the language model component. ", + "bbox": [ + 173, + 530, + 825, + 628 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/fb844f74783ed6a0142b19fcb2b44dd86d4b39aa368fe50b4566bca16a3d30c2.jpg", + "table_caption": [ + "Table 3: Complexity of the three-layer rGBN-RNN. " + ], + "table_footnote": [], + "table_body": "
Component ParamLanguage ModelTopic Model
LSTMword in (3)glinBΦin (2)II in (2)RNNsent in (8)f in (8)f in (8)
Layer1O(4×(E+H) ×H")O(3×(K1+H)×H1)O(Vc × K1)O(K1 × K1)O(Vc+H𝑖) × HiO(Hi)O(K1 x Hi)
Layer2O(4×(H+H)×H²)O(3 × (K2+H) × H)O(K1 × K2)O(K2 ×K2)O((Hi +H²)×H)O(H)O(K2 ×H)
Layer3O(4×(H+H)×H))1O(3×(K3+H)×H)[O(K2×K3)|O(K3 × K3)|O(H+H) × H)O(H)O(K ×H)
", + "bbox": [ + 178, + 667, + 823, + 719 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/6c2ef31ccb7eb9bd791bd9db8ab0599d4471f6ce7e3c3d1b3b555b5d9ab523d5.jpg", + "table_caption": [ + "Table 4: Comparison of the number of parameters of different models when used for language generation. " + ], + "table_footnote": [], + "table_body": "
ModelLSTM SizeTopic Size# LM Param#TMParam# All Param
TDLM (Lau et al., 2017)600 900-900100 1003.35M 13.38M0.019M 0.019M3.37M 13.40M
basic-LSTM (Hochreiter & Schmidhuber,1997)600 900-900 900-900-9002.16M 10.80M 17.68M2.16M 10.80M 17.68M
GBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.02M 0.04M 0.05M3.42M 6.54M 7.25M
rGBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.03M 0.06M 0.07M3.43M 6.56M 7.27M
", + "bbox": [ + 222, + 751, + 776, + 871 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/d0f732dcd06494584cd25d57050fc337f309e1ed610f269575fe293a28ccb69d.jpg", + "image_caption": [ + "Figure 6: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the IMDB dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom of the figure. " + ], + "image_footnote": [], + "bbox": [ + 218, + 140, + 774, + 424 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/e51953d8d5fc18d93d196deb64d7eedba8a7e6e6e2a96d75c4b704e3b727ab13.jpg", + "image_caption": [ + "Figure 7: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the BNC dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom of the figure. " + ], + "image_footnote": [], + "bbox": [ + 220, + 536, + 774, + 823 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/55b975ca0a44ac5eea39ae50f5a4b8d259eecdc7e16870f52516b9082a795520.jpg", + "image_caption": [ + "Figure 8: BLEU scores of different methods for IMDB. $\\mathbf { X }$ -axis denotes test-BLEU, and y-axis self-BLEU. Left panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner, where black point represents mean value and circles with different colors denote the elliptical surface of probability of BLEU in a two-dimensional space. " + ], + "image_footnote": [], + "bbox": [ + 187, + 154, + 782, + 299 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "H BLEU SCORES FOR APNEWS ", + "text_level": 1, + "bbox": [ + 174, + 391, + 464, + 407 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/e8bbc3300e8cdcbc6089fe0c71b52e2f90f4cc90ee75d4b1dc906e44895a6eee.jpg", + "image_caption": [ + "Figure 9: BLEU scores of different methods for APNEWS. $\\mathbf { X }$ -axis denotes test-BLEU, and y-axis self-BLEU. Left panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner, where black point represents mean value and circles with different colors denote the elliptical surface of probability of BLEU in a two-dimensional space. " + ], + "image_footnote": [], + "bbox": [ + 194, + 443, + 789, + 588 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/Byl1W1rtvH/Byl1W1rtvH_middle.json b/parse/train/Byl1W1rtvH/Byl1W1rtvH_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..bb46c626ab05dc9b08739d98015fbf768bed7620 --- /dev/null +++ b/parse/train/Byl1W1rtvH/Byl1W1rtvH_middle.json @@ -0,0 +1,44306 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 437, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 437, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 437, + 98 + ], + "score": 1.0, + "content": "RECURRENT HIERARCHICAL TOPIC-GUIDED", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 330, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 330, + 117 + ], + "score": 1.0, + "content": "NEURAL LANGUAGE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 210, + 469, + 353 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 470, + 222 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 470, + 222 + ], + "score": 1.0, + "content": "To simultaneously capture syntax and global semantics from a text corpus, we pro-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 471, + 233 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 233 + ], + "score": 1.0, + "content": "pose a new larger-context recurrent neural network (RNN) based language model,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 470, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 470, + 244 + ], + "score": 1.0, + "content": "which extracts recurrent hierarchical semantic structure via a dynamic deep topic", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "model to guide natural language generation. Moving beyond a conventional RNN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 470, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 470, + 267 + ], + "score": 1.0, + "content": "based language model that ignores long-range word dependencies and sentence", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "score": 1.0, + "content": "order, the proposed model captures not only intra-sentence word dependencies, but", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 470, + 287 + ], + "score": 1.0, + "content": "also temporal transitions between sentences and inter-sentence topic dependences.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "score": 1.0, + "content": "For inference, we develop a hybrid of stochastic-gradient MCMC and recurrent", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 469, + 309 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 469, + 309 + ], + "score": 1.0, + "content": "autoencoding variational Bayes. Experimental results on a variety of real-world", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 320 + ], + "score": 1.0, + "content": "text corpora demonstrate that the proposed model not only outperforms state-of-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 332 + ], + "score": 1.0, + "content": "the-art larger-context RNN-based language models, but also learns interpretable", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "recurrent multilayer topics and generates diverse sentences and paragraphs that are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 335, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 335, + 354 + ], + "score": 1.0, + "content": "syntactically correct and semantically coherent.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 206, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 208, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 208, + 388 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 506, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 506, + 408 + ], + "score": 1.0, + "content": "Both topic and language models are widely used for text analysis. Topic models, such as latent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Dirichlet allocation (LDA) (Blei et al., 2003; Griffiths & Steyvers, 2004; Hoffman et al., 2013) and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "its nonparametric Bayesian generalizations (Teh et al., 2006; Zhou & Carin, 2015), are well suited", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "score": 1.0, + "content": "to extract document-level word concurrence patterns into latent topics from a text corpus. Their", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "modeling power has been further enhanced by introducing multilayer deep representation (Srivastava", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 450, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 506, + 465 + ], + "score": 1.0, + "content": "et al., 2013; Mnih & Gregor, 2014; Gan et al., 2015; Zhou et al., 2016; Zhao et al., 2018; Zhang", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "et al., 2018). While having semantically meaningful latent representation, they typically treat each", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "document as a bag of words (BoW), ignoring word order (Griffiths et al., 2004; Wallach, 2006).", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "Language models have become key components of various natural language processing (NLP) tasks,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "such as text summarization (Rush et al., 2015; Gehrmann et al., 2018), speech recognition (Mikolov", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "et al., 2010; Graves et al., 2013), machine translation (Sutskever et al., 2014; Cho et al., 2014), and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "image captioning (Vinyals et al., 2015; Mao et al., 2015; Xu et al., 2015; Gan et al., 2017; Rennie", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "et al., 2017). The primary purpose of a language model is to capture the distribution of a word", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "sequence, commonly with a recurrent neural network (RNN) (Mikolov et al., 2011; Graves, 2013)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "or a Transformer based neural network (Vaswani et al., 2017; Dai et al., 2019; Devlin et al., 2019;", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Radford et al., 2018; 2019). In this paper, we focus on improving RNN-based language models that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 429, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 429, + 586 + ], + "score": 1.0, + "content": "often have much fewer parameters and are easier to perform end-to-end training.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "While RNN-based language models do not ignore word order, they often assume that the sentences", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "of a document are independent to each other. This simplifies the modeling task to independently", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "assigning probabilities to individual sentences, ignoring their orders and document context (Tian &", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "Cho, 2016). Such language models may consequently fail to capture the long-range dependencies", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "and global semantic meaning of a document (Dieng et al., 2017; Wang et al., 2018). To relax the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "sentence independence assumption in language modeling, Tian & Cho (2016) propose larger-context", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "language models that model the context of a sentence by representing its preceding sentences as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "either a single or a sequence of BoW vectors, which are then fed directly into the sentence modeling", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "RNN. An alternative approach attracting significant recent interest is leveraging topic models to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "improve RNN-based language models. Mikolov & Zweig (2012) use pre-trained topic model features", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "as an additional input to the RNN hidden states and/or output. Dieng et al. (2017); Ahn et al. (2017)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "combine the predicted word distributions, given by both a topic model and a language model, under", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "variational autoencoder (Kingma & Welling, 2013). Lau et al. (2017) introduce an attention based", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 42 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 437, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 437, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 437, + 98 + ], + "score": 1.0, + "content": "RECURRENT HIERARCHICAL TOPIC-GUIDED", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 330, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 330, + 117 + ], + "score": 1.0, + "content": "NEURAL LANGUAGE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 111, + 135, + 245, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "spans": [ + { + "bbox": [ + 276, + 185, + 336, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 210, + 469, + 353 + ], + "lines": [ + { + "bbox": [ + 141, + 210, + 470, + 222 + ], + "spans": [ + { + "bbox": [ + 141, + 210, + 470, + 222 + ], + "score": 1.0, + "content": "To simultaneously capture syntax and global semantics from a text corpus, we pro-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 471, + 233 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 471, + 233 + ], + "score": 1.0, + "content": "pose a new larger-context recurrent neural network (RNN) based language model,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 470, + 244 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 470, + 244 + ], + "score": 1.0, + "content": "which extracts recurrent hierarchical semantic structure via a dynamic deep topic", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 141, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "model to guide natural language generation. Moving beyond a conventional RNN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 253, + 470, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 253, + 470, + 267 + ], + "score": 1.0, + "content": "based language model that ignores long-range word dependencies and sentence", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 265, + 469, + 277 + ], + "score": 1.0, + "content": "order, the proposed model captures not only intra-sentence word dependencies, but", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 277, + 470, + 287 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 470, + 287 + ], + "score": 1.0, + "content": "also temporal transitions between sentences and inter-sentence topic dependences.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "score": 1.0, + "content": "For inference, we develop a hybrid of stochastic-gradient MCMC and recurrent", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 298, + 469, + 309 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 469, + 309 + ], + "score": 1.0, + "content": "autoencoding variational Bayes. Experimental results on a variety of real-world", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 320 + ], + "score": 1.0, + "content": "text corpora demonstrate that the proposed model not only outperforms state-of-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 332 + ], + "score": 1.0, + "content": "the-art larger-context RNN-based language models, but also learns interpretable", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "recurrent multilayer topics and generates diverse sentences and paragraphs that are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 335, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 335, + 354 + ], + "score": 1.0, + "content": "syntactically correct and semantically coherent.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11, + "bbox_fs": [ + 141, + 210, + 471, + 354 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 372, + 206, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 208, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 208, + 388 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 506, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 506, + 408 + ], + "score": 1.0, + "content": "Both topic and language models are widely used for text analysis. Topic models, such as latent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "Dirichlet allocation (LDA) (Blei et al., 2003; Griffiths & Steyvers, 2004; Hoffman et al., 2013) and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 430 + ], + "score": 1.0, + "content": "its nonparametric Bayesian generalizations (Teh et al., 2006; Zhou & Carin, 2015), are well suited", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "score": 1.0, + "content": "to extract document-level word concurrence patterns into latent topics from a text corpus. Their", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "modeling power has been further enhanced by introducing multilayer deep representation (Srivastava", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 450, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 450, + 506, + 465 + ], + "score": 1.0, + "content": "et al., 2013; Mnih & Gregor, 2014; Gan et al., 2015; Zhou et al., 2016; Zhao et al., 2018; Zhang", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 474 + ], + "score": 1.0, + "content": "et al., 2018). While having semantically meaningful latent representation, they typically treat each", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "document as a bag of words (BoW), ignoring word order (Griffiths et al., 2004; Wallach, 2006).", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 485, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 506, + 497 + ], + "score": 1.0, + "content": "Language models have become key components of various natural language processing (NLP) tasks,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 507 + ], + "score": 1.0, + "content": "such as text summarization (Rush et al., 2015; Gehrmann et al., 2018), speech recognition (Mikolov", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "et al., 2010; Graves et al., 2013), machine translation (Sutskever et al., 2014; Cho et al., 2014), and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "image captioning (Vinyals et al., 2015; Mao et al., 2015; Xu et al., 2015; Gan et al., 2017; Rennie", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "et al., 2017). The primary purpose of a language model is to capture the distribution of a word", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "sequence, commonly with a recurrent neural network (RNN) (Mikolov et al., 2011; Graves, 2013)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "or a Transformer based neural network (Vaswani et al., 2017; Dai et al., 2019; Devlin et al., 2019;", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Radford et al., 2018; 2019). In this paper, we focus on improving RNN-based language models that", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 429, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 429, + 586 + ], + "score": 1.0, + "content": "often have much fewer parameters and are easier to perform end-to-end training.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 397, + 506, + 586 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "While RNN-based language models do not ignore word order, they often assume that the sentences", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 613 + ], + "score": 1.0, + "content": "of a document are independent to each other. This simplifies the modeling task to independently", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "assigning probabilities to individual sentences, ignoring their orders and document context (Tian &", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "Cho, 2016). Such language models may consequently fail to capture the long-range dependencies", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "and global semantic meaning of a document (Dieng et al., 2017; Wang et al., 2018). To relax the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "sentence independence assumption in language modeling, Tian & Cho (2016) propose larger-context", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "language models that model the context of a sentence by representing its preceding sentences as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "either a single or a sequence of BoW vectors, which are then fed directly into the sentence modeling", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "RNN. An alternative approach attracting significant recent interest is leveraging topic models to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "improve RNN-based language models. Mikolov & Zweig (2012) use pre-trained topic model features", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "as an additional input to the RNN hidden states and/or output. Dieng et al. (2017); Ahn et al. (2017)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "combine the predicted word distributions, given by both a topic model and a language model, under", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "variational autoencoder (Kingma & Welling, 2013). Lau et al. (2017) introduce an attention based", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "convolutional neural network to extract semantic topics, which are used to extend the RNN cell.", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Wang et al. (2018) learn the global semantic coherence of a document via a neural topic model and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "use the learned latent topics to build a mixture-of-experts language model. Wang et al. (2019) further", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "specify a Gaussian mixture model as the prior of the latent code in variational autoencoder, where", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 300, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 300, + 140 + ], + "score": 1.0, + "content": "each mixture component corresponds to a topic.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 588, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 95 + ], + "score": 1.0, + "content": "convolutional neural network to extract semantic topics, which are used to extend the RNN cell.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Wang et al. (2018) learn the global semantic coherence of a document via a neural topic model and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "use the learned latent topics to build a mixture-of-experts language model. Wang et al. (2019) further", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "specify a Gaussian mixture model as the prior of the latent code in variational autoencoder, where", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 300, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 300, + 140 + ], + "score": 1.0, + "content": "each mixture component corresponds to a topic.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "While clearly improving the performance of the end task, these existing topic-guided methods still", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "have clear limitations. For example, they only utilize shallow topic models with only a single", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "stochastic hidden layer in their data generation process. Note several neural topic models use deep", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "neural networks to construct their variational encoders, but still use shallow generative models", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "(decoders) (Miao et al., 2017; Srivastava & Sutton, 2017). Another key limitation lies in ignoring the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "sentence order, as they treat each document as a bag of sentences. Thus once the topic weight vector", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "learned from the document context is given, the task is often reduced to independently assigning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 426, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 426, + 232 + ], + "score": 1.0, + "content": "probabilities to individual sentences (Lau et al., 2017; Wang et al., 2018; 2019).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "In this paper, as depicted in Fig. 1, we propose to use recurrent gamma belief network (rGBN) to guide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 104, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "a stacked RNN for language modeling. We refer to the model as rGBN-RNN, which integrates rGBN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "(Guo et al., 2018), a deep recurrent topic model, and stacked RNN (Graves, 2013; Chung et al., 2017),", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "a neural language model, into a novel larger-context RNN-based language model. It simultaneously", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "learns a deep recurrent topic model, extracting document-level multi-layer word concurrence patterns", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "and sequential topic weight vectors for sentences, and an expressive language model, capturing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "both short- and long-range word sequential dependencies. For inference, we equip rGBN-RNN", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "(decoder) with a novel variational recurrent inference network (encoder), and train it end-to-end by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "maximizing the evidence lower bound (ELBO). Different from the stacked RNN based language", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "model in Chung et al. (2017), which relies on three types of customized training operations (UPDATE,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "COPY, FLUSH) to extract multi-scale structures, the language model in rGBN-RNN learns such", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "structures purely under the guidance of the temporally and hierarchically connected stochastic layers", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "of rGBN. The effectiveness of rGBN-RNN as a new larger-context language model is demonstrated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "both quantitatively, with perplexity and BLEU scores, and qualitatively, with interpretable latent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "structures and randomly generated sentences and paragraphs. Notably, rGBN-RNN can generate a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 402, + 392, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 392, + 415 + ], + "score": 1.0, + "content": "paragraph consisting of a sequence of semantically coherent sentences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 109, + 429, + 448, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 451, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 451, + 443 + ], + "score": 1.0, + "content": "2 RECURRENT HIERARCHICAL TOPIC-GUIDED LANGUAGE MODEL", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 198, + 467 + ], + "score": 1.0, + "content": "Denote a document of", + "type": "text" + }, + { + "bbox": [ + 199, + 453, + 206, + 463 + ], + "score": 0.81, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 451, + 259, + 467 + ], + "score": 1.0, + "content": "sentences as", + "type": "text" + }, + { + "bbox": [ + 259, + 453, + 349, + 465 + ], + "score": 0.92, + "content": "\\mathcal { D } = ( S _ { 1 } , S _ { 2 } , \\ldots , S _ { J } )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 451, + 380, + 467 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 453, + 469, + 466 + ], + "score": 0.92, + "content": "S _ { j } = ( y _ { j , 1 } , \\ldots , y _ { j , T _ { j } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 451, + 506, + 467 + ], + "score": 1.0, + "content": "consists", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 117, + 477 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 464, + 128, + 477 + ], + "score": 0.88, + "content": "T _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 464, + 259, + 477 + ], + "score": 1.0, + "content": "words from a vocabulary of size", + "type": "text" + }, + { + "bbox": [ + 260, + 465, + 269, + 474 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ". Conventional statistical language models often only focus", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "on the word sequence within a sentence. Assuming that the sentences of a document are independent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 484, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 235, + 504 + ], + "score": 1.0, + "content": "to each other, they often define", + "type": "text" + }, + { + "bbox": [ + 235, + 486, + 477, + 502 + ], + "score": 0.9, + "content": "\\begin{array} { r } { P ( \\mathcal { D } ) \\approx \\prod _ { j = 1 } ^ { J } \\bar { P } \\left( S _ { j } \\right) = \\prod _ { j = 1 } ^ { J } \\prod _ { t = 2 } ^ { T _ { j } } p \\left( y _ { j , t } \\vert y _ { j , < t } \\right) p \\left( y _ { j , 1 } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 484, + 507, + 504 + ], + "score": 1.0, + "content": ". RNN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 499, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 433, + 514 + ], + "score": 1.0, + "content": "based neural language models define the conditional probability of each word", + "type": "text" + }, + { + "bbox": [ + 433, + 502, + 449, + 513 + ], + "score": 0.89, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 499, + 505, + 514 + ], + "score": 1.0, + "content": "given all the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 169, + 525 + ], + "score": 1.0, + "content": "previous words", + "type": "text" + }, + { + "bbox": [ + 170, + 513, + 191, + 524 + ], + "score": 0.9, + "content": "y _ { j , < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 510, + 271, + 525 + ], + "score": 1.0, + "content": "within the sentence", + "type": "text" + }, + { + "bbox": [ + 272, + 512, + 283, + 524 + ], + "score": 0.89, + "content": "S _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 510, + 473, + 525 + ], + "score": 1.0, + "content": ", through the softmax function of a hidden state", + "type": "text" + }, + { + "bbox": [ + 473, + 512, + 490, + 524 + ], + "score": 0.9, + "content": "h _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ", as", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 526, + 423, + 540 + ], + "lines": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "spans": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "score": 0.9, + "content": "p \\left( y _ { j , t } \\mid y _ { j , < t } \\right) = p \\left( y _ { j , t } \\mid h _ { j , t } \\right) , \\quad h _ { j , t } = f \\left( h _ { j , < t } , y _ { j , t - 1 } \\right) ,", + "type": "interline_equation", + "image_path": "f4a1a712e62e98f575edb79de481b5ed62528ab0df7562cafc1bd8f6be1c039a.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 508, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 132, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 543, + 150, + 555 + ], + "score": 0.91, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "is a non-linear function typically defined as an RNN cell, such as long short-term memory", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 554, + 486, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 486, + 565 + ], + "score": 1.0, + "content": "(LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent unit (GRU) (Cho et al., 2014).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "These RNN-based statistical language models are typically applied only at the word level, without", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "exploiting the document context, and hence often fail to capture long-range dependencies. While", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "Dieng et al. (2017); Lau et al. (2017); Wang et al. (2018; 2019) remedy the issue by guiding the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "language model with a topic model, they still treat a document as a bag of sentences, ignoring the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 614, + 473, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 473, + 628 + ], + "score": 1.0, + "content": "order of sentences, and lack the ability to extract hierarchical and recurrent topic structures.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "We introduce rGBN-RNN, as depicted in Fig. 1(a), as a new larger-context language model. It", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "consists of two key components: (i) a hierarchical recurrent topic model (rGBN), and (ii) a stacked", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "RNN based language model. We use rGBN to capture both global semantics across documents", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "score": 1.0, + "content": "and long-range inter-sentence dependencies within a document, and use the language model to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 674, + 507, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 507, + 688 + ], + "score": 1.0, + "content": "learn the local syntactic relationships between the words within a sentence. Similar to Lau et al.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "score": 1.0, + "content": "(2017); Wang et al. (2018), we represent a document as a sequence of sentence-context pairs as", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 696, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 208, + 711 + ], + "score": 0.85, + "content": "( \\{ S _ { 1 } , d _ { 1 } \\} , \\dots , \\{ S _ { J } , d _ { J } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 696, + 242, + 714 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 243, + 697, + 284, + 711 + ], + "score": 0.93, + "content": "\\bar { d } _ { j } \\in \\mathbb { Z } _ { + } ^ { V _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 696, + 440, + 714 + ], + "score": 1.0, + "content": "summarizes the document excluding", + "type": "text" + }, + { + "bbox": [ + 441, + 699, + 452, + 711 + ], + "score": 0.88, + "content": "S _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 696, + 506, + 714 + ], + "score": 1.0, + "content": ", specifically", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 215, + 722 + ], + "score": 0.86, + "content": "( S _ { 1 } , . . . , S _ { j - 1 } , S _ { j + 1 } , . . . , S _ { J } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 708, + 339, + 724 + ], + "score": 1.0, + "content": ", into a BoW count vector, with", + "type": "text" + }, + { + "bbox": [ + 340, + 710, + 351, + 721 + ], + "score": 0.87, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 708, + 506, + 724 + ], + "score": 1.0, + "content": "as the size of the vocabulary excluding", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "stop words. Note a naive way is to treat each sentence as a document, use a dynamic topic model", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 83, + 506, + 140 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 143, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "While clearly improving the performance of the end task, these existing topic-guided methods still", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 166 + ], + "score": 1.0, + "content": "have clear limitations. For example, they only utilize shallow topic models with only a single", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "stochastic hidden layer in their data generation process. Note several neural topic models use deep", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "neural networks to construct their variational encoders, but still use shallow generative models", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "(decoders) (Miao et al., 2017; Srivastava & Sutton, 2017). Another key limitation lies in ignoring the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "sentence order, as they treat each document as a bag of sentences. Thus once the topic weight vector", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 223 + ], + "score": 1.0, + "content": "learned from the document context is given, the task is often reduced to independently assigning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 221, + 426, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 426, + 232 + ], + "score": 1.0, + "content": "probabilities to individual sentences (Lau et al., 2017; Wang et al., 2018; 2019).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 142, + 506, + 232 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "score": 1.0, + "content": "In this paper, as depicted in Fig. 1, we propose to use recurrent gamma belief network (rGBN) to guide", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 248, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 104, + 248, + 506, + 260 + ], + "score": 1.0, + "content": "a stacked RNN for language modeling. We refer to the model as rGBN-RNN, which integrates rGBN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "(Guo et al., 2018), a deep recurrent topic model, and stacked RNN (Graves, 2013; Chung et al., 2017),", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "a neural language model, into a novel larger-context RNN-based language model. It simultaneously", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "learns a deep recurrent topic model, extracting document-level multi-layer word concurrence patterns", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "and sequential topic weight vectors for sentences, and an expressive language model, capturing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "both short- and long-range word sequential dependencies. For inference, we equip rGBN-RNN", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "(decoder) with a novel variational recurrent inference network (encoder), and train it end-to-end by", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "maximizing the evidence lower bound (ELBO). Different from the stacked RNN based language", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "model in Chung et al. (2017), which relies on three types of customized training operations (UPDATE,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "COPY, FLUSH) to extract multi-scale structures, the language model in rGBN-RNN learns such", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 371 + ], + "score": 1.0, + "content": "structures purely under the guidance of the temporally and hierarchically connected stochastic layers", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "of rGBN. The effectiveness of rGBN-RNN as a new larger-context language model is demonstrated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "both quantitatively, with perplexity and BLEU scores, and qualitatively, with interpretable latent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 506, + 404 + ], + "score": 1.0, + "content": "structures and randomly generated sentences and paragraphs. Notably, rGBN-RNN can generate a", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 402, + 392, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 392, + 415 + ], + "score": 1.0, + "content": "paragraph consisting of a sequence of semantically coherent sentences.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 236, + 506, + 415 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 429, + 448, + 441 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 451, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 451, + 443 + ], + "score": 1.0, + "content": "2 RECURRENT HIERARCHICAL TOPIC-GUIDED LANGUAGE MODEL", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 198, + 467 + ], + "score": 1.0, + "content": "Denote a document of", + "type": "text" + }, + { + "bbox": [ + 199, + 453, + 206, + 463 + ], + "score": 0.81, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 451, + 259, + 467 + ], + "score": 1.0, + "content": "sentences as", + "type": "text" + }, + { + "bbox": [ + 259, + 453, + 349, + 465 + ], + "score": 0.92, + "content": "\\mathcal { D } = ( S _ { 1 } , S _ { 2 } , \\ldots , S _ { J } )", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 451, + 380, + 467 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 380, + 453, + 469, + 466 + ], + "score": 0.92, + "content": "S _ { j } = ( y _ { j , 1 } , \\ldots , y _ { j , T _ { j } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 451, + 506, + 467 + ], + "score": 1.0, + "content": "consists", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 117, + 477 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 464, + 128, + 477 + ], + "score": 0.88, + "content": "T _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 464, + 259, + 477 + ], + "score": 1.0, + "content": "words from a vocabulary of size", + "type": "text" + }, + { + "bbox": [ + 260, + 465, + 269, + 474 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ". Conventional statistical language models often only focus", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 487 + ], + "score": 1.0, + "content": "on the word sequence within a sentence. Assuming that the sentences of a document are independent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 484, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 235, + 504 + ], + "score": 1.0, + "content": "to each other, they often define", + "type": "text" + }, + { + "bbox": [ + 235, + 486, + 477, + 502 + ], + "score": 0.9, + "content": "\\begin{array} { r } { P ( \\mathcal { D } ) \\approx \\prod _ { j = 1 } ^ { J } \\bar { P } \\left( S _ { j } \\right) = \\prod _ { j = 1 } ^ { J } \\prod _ { t = 2 } ^ { T _ { j } } p \\left( y _ { j , t } \\vert y _ { j , < t } \\right) p \\left( y _ { j , 1 } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 484, + 507, + 504 + ], + "score": 1.0, + "content": ". RNN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 499, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 433, + 514 + ], + "score": 1.0, + "content": "based neural language models define the conditional probability of each word", + "type": "text" + }, + { + "bbox": [ + 433, + 502, + 449, + 513 + ], + "score": 0.89, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 499, + 505, + 514 + ], + "score": 1.0, + "content": "given all the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 510, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 169, + 525 + ], + "score": 1.0, + "content": "previous words", + "type": "text" + }, + { + "bbox": [ + 170, + 513, + 191, + 524 + ], + "score": 0.9, + "content": "y _ { j , < t }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 510, + 271, + 525 + ], + "score": 1.0, + "content": "within the sentence", + "type": "text" + }, + { + "bbox": [ + 272, + 512, + 283, + 524 + ], + "score": 0.89, + "content": "S _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 510, + 473, + 525 + ], + "score": 1.0, + "content": ", through the softmax function of a hidden state", + "type": "text" + }, + { + "bbox": [ + 473, + 512, + 490, + 524 + ], + "score": 0.9, + "content": "h _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 510, + 506, + 525 + ], + "score": 1.0, + "content": ", as", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 451, + 507, + 525 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 526, + 423, + 540 + ], + "lines": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "spans": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "score": 0.9, + "content": "p \\left( y _ { j , t } \\mid y _ { j , < t } \\right) = p \\left( y _ { j , t } \\mid h _ { j , t } \\right) , \\quad h _ { j , t } = f \\left( h _ { j , < t } , y _ { j , t - 1 } \\right) ,", + "type": "interline_equation", + "image_path": "f4a1a712e62e98f575edb79de481b5ed62528ab0df7562cafc1bd8f6be1c039a.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 526, + 423, + 540 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 543, + 508, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 132, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 543, + 150, + 555 + ], + "score": 0.91, + "content": "f ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "is a non-linear function typically defined as an RNN cell, such as long short-term memory", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 554, + 486, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 486, + 565 + ], + "score": 1.0, + "content": "(LSTM) (Hochreiter & Schmidhuber, 1997) and gated recurrent unit (GRU) (Cho et al., 2014).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 542, + 505, + 565 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 584 + ], + "score": 1.0, + "content": "These RNN-based statistical language models are typically applied only at the word level, without", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "exploiting the document context, and hence often fail to capture long-range dependencies. While", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "Dieng et al. (2017); Lau et al. (2017); Wang et al. (2018; 2019) remedy the issue by guiding the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "language model with a topic model, they still treat a document as a bag of sentences, ignoring the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 614, + 473, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 473, + 628 + ], + "score": 1.0, + "content": "order of sentences, and lack the ability to extract hierarchical and recurrent topic structures.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 569, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 631, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "We introduce rGBN-RNN, as depicted in Fig. 1(a), as a new larger-context language model. It", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "consists of two key components: (i) a hierarchical recurrent topic model (rGBN), and (ii) a stacked", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "RNN based language model. We use rGBN to capture both global semantics across documents", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "score": 1.0, + "content": "and long-range inter-sentence dependencies within a document, and use the language model to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 674, + 507, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 507, + 688 + ], + "score": 1.0, + "content": "learn the local syntactic relationships between the words within a sentence. Similar to Lau et al.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "score": 1.0, + "content": "(2017); Wang et al. (2018), we represent a document as a sequence of sentence-context pairs as", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 696, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 208, + 711 + ], + "score": 0.85, + "content": "( \\{ S _ { 1 } , d _ { 1 } \\} , \\dots , \\{ S _ { J } , d _ { J } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 696, + 242, + 714 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 243, + 697, + 284, + 711 + ], + "score": 0.93, + "content": "\\bar { d } _ { j } \\in \\mathbb { Z } _ { + } ^ { V _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 696, + 440, + 714 + ], + "score": 1.0, + "content": "summarizes the document excluding", + "type": "text" + }, + { + "bbox": [ + 441, + 699, + 452, + 711 + ], + "score": 0.88, + "content": "S _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 696, + 506, + 714 + ], + "score": 1.0, + "content": ", specifically", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 215, + 722 + ], + "score": 0.86, + "content": "( S _ { 1 } , . . . , S _ { j - 1 } , S _ { j + 1 } , . . . , S _ { J } )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 708, + 339, + 724 + ], + "score": 1.0, + "content": ", into a BoW count vector, with", + "type": "text" + }, + { + "bbox": [ + 340, + 710, + 351, + 721 + ], + "score": 0.87, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 708, + 506, + 724 + ], + "score": 1.0, + "content": "as the size of the vocabulary excluding", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "stop words. Note a naive way is to treat each sentence as a document, use a dynamic topic model", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "(Blei & Lafferty, 2006) to capture the temporal dependencies of the latent topic-weight vectors,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "which is fed to the RNN to model the word sequence of the corresponding sentence. However, the", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 442, + 376 + ], + "score": 1.0, + "content": "sentences are often too short to be well modeled by a topic model. In our setting, as", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 442, + 363, + 453, + 375 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 454, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "summarizes", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 372, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 372, + 229, + 388 + ], + "score": 1.0, + "content": "the document-level context of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 230, + 374, + 241, + 386 + ], + "score": 0.88, + "content": "S _ { j }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 241, + 372, + 506, + 388 + ], + "score": 1.0, + "content": ", it is in general sufficiently long for topic modeling. Note during", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 382, + 508, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 382, + 188, + 400 + ], + "score": 1.0, + "content": "testing, we redefine", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 188, + 385, + 199, + 397 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 200, + 382, + 474, + 400 + ], + "score": 1.0, + "content": "as the BoW vector summarizing only the preceding sentences, i.e.,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 475, + 385, + 502, + 397 + ], + "score": 0.92, + "content": "S _ { 1 : j - 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 502, + 382, + 508, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 381, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 381, + 408 + ], + "score": 1.0, + "content": "which will be further clarified when presenting experimental results.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 630, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 86, + 487, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 86, + 487, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 86, + 487, + 236 + ], + "spans": [ + { + "bbox": [ + 122, + 86, + 487, + 236 + ], + "score": 0.973, + "type": "image", + "image_path": "282e53503b935c73b464c066fccb5b2394fe7d7bb548b09489edae9d737bf127.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 86, + 487, + 136.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 136.0, + 487, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 186.0, + 487, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 506, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "Figure 1: (a) The generative model of a three-hidden-layer rGBN-RNN, where the bottom part is the deep", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "recurrent topic model (rGBN), document contexts of consecutive sentences are used as observed data, and upper", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 405, + 281 + ], + "score": 1.0, + "content": "is the language model. (b) Overview of the language model component, where input", + "type": "text" + }, + { + "bbox": [ + 405, + 271, + 420, + 280 + ], + "score": 0.88, + "content": "x _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "denotes the tth word in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 279, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 112, + 291 + ], + "score": 0.56, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 279, + 209, + 294 + ], + "score": 1.0, + "content": "th sentence of a document,", + "type": "text" + }, + { + "bbox": [ + 209, + 280, + 278, + 292 + ], + "score": 0.87, + "content": "x _ { j , t } = y _ { j , t - 1 } , h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 279, + 462, + 294 + ], + "score": 1.0, + "content": "is the hidden state of the stacked RNN at time step", + "type": "text" + }, + { + "bbox": [ + 462, + 281, + 467, + 290 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 279, + 485, + 294 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 486, + 280, + 495, + 292 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 279, + 506, + 294 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 231, + 302 + ], + "score": 1.0, + "content": "the topic weight vector of sentence", + "type": "text" + }, + { + "bbox": [ + 232, + 292, + 237, + 301 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 290, + 266, + 302 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 267, + 292, + 271, + 300 + ], + "score": 0.43, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 290, + 505, + 302 + ], + "score": 1.0, + "content": ". (c) The overall architecture of the proposed model, including the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 300, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 504, + 311 + ], + "score": 1.0, + "content": "decoder (rGBN and language model) and encoder (variational recurrent inference), where the red arrows denote", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 378, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 378, + 323 + ], + "score": 1.0, + "content": "the inference of latent topic weight vectors, black ones the data generation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 506, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "(Blei & Lafferty, 2006) to capture the temporal dependencies of the latent topic-weight vectors,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "which is fed to the RNN to model the word sequence of the corresponding sentence. However, the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 442, + 376 + ], + "score": 1.0, + "content": "sentences are often too short to be well modeled by a topic model. In our setting, as", + "type": "text" + }, + { + "bbox": [ + 442, + 363, + 453, + 375 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "summarizes", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 372, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 372, + 229, + 388 + ], + "score": 1.0, + "content": "the document-level context of", + "type": "text" + }, + { + "bbox": [ + 230, + 374, + 241, + 386 + ], + "score": 0.88, + "content": "S _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 372, + 506, + 388 + ], + "score": 1.0, + "content": ", it is in general sufficiently long for topic modeling. Note during", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 382, + 508, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 382, + 188, + 400 + ], + "score": 1.0, + "content": "testing, we redefine", + "type": "text" + }, + { + "bbox": [ + 188, + 385, + 199, + 397 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 382, + 474, + 400 + ], + "score": 1.0, + "content": "as the BoW vector summarizing only the preceding sentences, i.e.,", + "type": "text" + }, + { + "bbox": [ + 475, + 385, + 502, + 397 + ], + "score": 0.92, + "content": "S _ { 1 : j - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 382, + 508, + 400 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 381, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 381, + 408 + ], + "score": 1.0, + "content": "which will be further clarified when presenting experimental results.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 106, + 430, + 314, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 316, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 316, + 443 + ], + "score": 1.0, + "content": "2.1 HIERARCHICAL RECURRENT TOPIC MODEL", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 454, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 414, + 467 + ], + "score": 1.0, + "content": "Shown in Fig. 1 (a), to model the time-varying sentence-context count vectors", + "type": "text" + }, + { + "bbox": [ + 414, + 455, + 425, + 466 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 454, + 478, + 467 + ], + "score": 1.0, + "content": "in document", + "type": "text" + }, + { + "bbox": [ + 478, + 455, + 487, + 464 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 454, + 505, + 467 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 465, + 497, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 497, + 479 + ], + "score": 1.0, + "content": "generative process of the rGBN component, from the top to bottom hidden layers, is expressed as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 489, + 462, + 525 + ], + "lines": [ + { + "bbox": [ + 147, + 489, + 462, + 525 + ], + "spans": [ + { + "bbox": [ + 147, + 489, + 462, + 525 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\pmb { \\theta } _ { j } ^ { L } \\sim \\mathrm { G a m } \\left( \\mathbf { \\Pi } \\mathbf { \\ } \\mathbf { \\Pi } ^ { L } \\pmb { \\theta } _ { j - 1 } ^ { L } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , \\pmb { \\theta } _ { j } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 } + \\mathbf { \\Pi } \\mathbf { \\Pi } ^ { l } \\pmb { \\theta } _ { j - 1 } ^ { l } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , } \\\\ & { \\pmb { \\theta } _ { j } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } _ { j } ^ { 2 } + \\mathbf { \\Pi } \\mathbf { \\ } ^ { 1 } \\pmb { \\theta } _ { j - 1 } ^ { 1 } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\pmb { d } _ { j } \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } _ { j } ^ { 1 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "46fb4b32e560f0a2c5eb8f4d60631f2b3140823462b1357d7d93089d84c30f0c.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 147, + 489, + 462, + 501.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 147, + 501.0, + 462, + 513.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 147, + 513.0, + 462, + 525.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 101, + 533, + 502, + 556 + ], + "spans": [ + { + "bbox": [ + 101, + 533, + 134, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 537, + 180, + 552 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 533, + 454, + 556 + ], + "score": 1.0, + "content": "denotes the gamma distributed topic weight vectors of sentence", + "type": "text" + }, + { + "bbox": [ + 454, + 540, + 461, + 551 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 533, + 498, + 556 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 498, + 540, + 502, + 549 + ], + "score": 0.54, + "content": "l", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 546, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 107, + 552, + 164, + 565 + ], + "score": 0.85, + "content": "\\mathbf { I I } ^ { l } \\in \\mathbb { R } _ { + } ^ { \\bar { K } _ { l } \\times K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 546, + 281, + 571 + ], + "score": 1.0, + "content": "the transition matrix of layer", + "type": "text" + }, + { + "bbox": [ + 282, + 554, + 286, + 563 + ], + "score": 0.57, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 546, + 482, + 571 + ], + "score": 1.0, + "content": "that captures cross-topic temporal dependencies,", + "type": "text" + }, + { + "bbox": [ + 482, + 552, + 506, + 564 + ], + "score": 0.88, + "content": "\\Phi ^ { l } \\in", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 109, + 563, + 508, + 584 + ], + "spans": [ + { + "bbox": [ + 109, + 563, + 508, + 584 + ], + "score": 1.0, + "content": "RKl−1×Kl+ the loading matrix at layer l, Kl the number of topics of layer l, and τ0 ∈ R+ a scaling", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 578, + 507, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 188, + 595 + ], + "score": 1.0, + "content": "hyperparameter. At", + "type": "text" + }, + { + "bbox": [ + 188, + 581, + 212, + 593 + ], + "score": 0.88, + "content": "j = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 578, + 217, + 595 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 217, + 579, + 325, + 594 + ], + "score": 0.91, + "content": "\\pmb { \\theta } _ { 1 } ^ { l } \\sim \\mathrm { G a m } \\left( \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } _ { 1 } ^ { l + 1 } , \\tau _ { 0 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 578, + 341, + 595 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 342, + 581, + 410, + 592 + ], + "score": 0.92, + "content": "l = 1 , \\ldots , L - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 578, + 429, + 595 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 581, + 502, + 593 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { 1 } ^ { L } \\sim \\mathbf { G a m } ( \\nu , \\tau _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 578, + 507, + 595 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 133, + 608 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 594, + 171, + 606 + ], + "score": 0.91, + "content": "\\nu = \\mathbf { 1 } _ { K _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 592, + 391, + 608 + ], + "score": 1.0, + "content": ". Finally, Dirichlet priors are placed on the columns of", + "type": "text" + }, + { + "bbox": [ + 392, + 593, + 405, + 604 + ], + "score": 0.86, + "content": "\\Pi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 592, + 423, + 608 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 594, + 435, + 604 + ], + "score": 0.87, + "content": "\\Phi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 592, + 458, + 608 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 458, + 594, + 471, + 606 + ], + "score": 0.89, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 592, + 489, + 608 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 489, + 594, + 502, + 606 + ], + "score": 0.89, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 592, + 506, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "which not only makes the latent representation more identifiable and interpretable, but also facilitates", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 221, + 630 + ], + "score": 1.0, + "content": "inference. The count vector", + "type": "text" + }, + { + "bbox": [ + 222, + 617, + 233, + 628 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 614, + 385, + 630 + ], + "score": 1.0, + "content": "can be factorized into the product of", + "type": "text" + }, + { + "bbox": [ + 385, + 615, + 398, + 626 + ], + "score": 0.89, + "content": "\\Phi ^ { \\hat { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 614, + 417, + 630 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 616, + 429, + 629 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "under the Poisson", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 626, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 249, + 646 + ], + "score": 1.0, + "content": "likelihood. The shape parameters of", + "type": "text" + }, + { + "bbox": [ + 249, + 628, + 289, + 644 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 626, + 420, + 646 + ], + "score": 1.0, + "content": "can be factorized into the sum of", + "type": "text" + }, + { + "bbox": [ + 421, + 629, + 462, + 644 + ], + "score": 0.93, + "content": "\\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 626, + 507, + 646 + ], + "score": 1.0, + "content": ", capturing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 641, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 267, + 658 + ], + "score": 1.0, + "content": "inter-layer hierarchical dependence, and", + "type": "text" + }, + { + "bbox": [ + 268, + 643, + 300, + 657 + ], + "score": 0.92, + "content": "\\Pi ^ { l } \\theta _ { j - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 641, + 506, + 658 + ], + "score": 1.0, + "content": ", capturing intra-layer temporal dependence. rGBN", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "not only captures the document-level word occurrence patterns inside the training text corpus, but", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "also the sequential dependencies of the sentences inside a document. Note ignoring the recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "structure, rGBN will reduce to the gamma belief network (GBN) of Zhou et al. (2016), which can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "considered as a multi-stochastic-layer deep generalization of LDA (Cong et al., 2017a). If ignoring", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 225, + 711 + ], + "score": 1.0, + "content": "its hierarchical structure (i.e.,", + "type": "text" + }, + { + "bbox": [ + 225, + 700, + 251, + 709 + ], + "score": 0.85, + "content": "L = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "), rGBN reduces to Poisson–gamma dynamical systems (Schein", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "et al., 2016). We refer to the rGBN-RNN without its recurrent structure as GBN-RNN, which no", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 439, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 439, + 733 + ], + "score": 1.0, + "content": "longer models sequential sentence dependencies; see Appendix A for more details.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 29.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "image", + "bbox": [ + 122, + 86, + 487, + 236 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 86, + 487, + 236 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 86, + 487, + 236 + ], + "spans": [ + { + "bbox": [ + 122, + 86, + 487, + 236 + ], + "score": 0.973, + "type": "image", + "image_path": "282e53503b935c73b464c066fccb5b2394fe7d7bb548b09489edae9d737bf127.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 86, + 487, + 136.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 136.0, + 487, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 186.0, + 487, + 236.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 506, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 262 + ], + "score": 1.0, + "content": "Figure 1: (a) The generative model of a three-hidden-layer rGBN-RNN, where the bottom part is the deep", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "recurrent topic model (rGBN), document contexts of consecutive sentences are used as observed data, and upper", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 405, + 281 + ], + "score": 1.0, + "content": "is the language model. (b) Overview of the language model component, where input", + "type": "text" + }, + { + "bbox": [ + 405, + 271, + 420, + 280 + ], + "score": 0.88, + "content": "x _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "denotes the tth word in", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 279, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 112, + 291 + ], + "score": 0.56, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 112, + 279, + 209, + 294 + ], + "score": 1.0, + "content": "th sentence of a document,", + "type": "text" + }, + { + "bbox": [ + 209, + 280, + 278, + 292 + ], + "score": 0.87, + "content": "x _ { j , t } = y _ { j , t - 1 } , h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 279, + 462, + 294 + ], + "score": 1.0, + "content": "is the hidden state of the stacked RNN at time step", + "type": "text" + }, + { + "bbox": [ + 462, + 281, + 467, + 290 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 279, + 485, + 294 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 486, + 280, + 495, + 292 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 279, + 506, + 294 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 231, + 302 + ], + "score": 1.0, + "content": "the topic weight vector of sentence", + "type": "text" + }, + { + "bbox": [ + 232, + 292, + 237, + 301 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 290, + 266, + 302 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 267, + 292, + 271, + 300 + ], + "score": 0.43, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 290, + 505, + 302 + ], + "score": 1.0, + "content": ". (c) The overall architecture of the proposed model, including the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 300, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 504, + 311 + ], + "score": 1.0, + "content": "decoder (rGBN and language model) and encoder (variational recurrent inference), where the red arrows denote", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 378, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 378, + 323 + ], + "score": 1.0, + "content": "the inference of latent topic weight vectors, black ones the data generation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 506, + 407 + ], + "lines": [], + "index": 12.5, + "bbox_fs": [ + 104, + 340, + 508, + 408 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 430, + 314, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 429, + 316, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 316, + 443 + ], + "score": 1.0, + "content": "2.1 HIERARCHICAL RECURRENT TOPIC MODEL", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 454, + 506, + 478 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 414, + 467 + ], + "score": 1.0, + "content": "Shown in Fig. 1 (a), to model the time-varying sentence-context count vectors", + "type": "text" + }, + { + "bbox": [ + 414, + 455, + 425, + 466 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 454, + 478, + 467 + ], + "score": 1.0, + "content": "in document", + "type": "text" + }, + { + "bbox": [ + 478, + 455, + 487, + 464 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 454, + 505, + 467 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 465, + 497, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 497, + 479 + ], + "score": 1.0, + "content": "generative process of the rGBN component, from the top to bottom hidden layers, is expressed as", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 454, + 505, + 479 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 147, + 489, + 462, + 525 + ], + "lines": [ + { + "bbox": [ + 147, + 489, + 462, + 525 + ], + "spans": [ + { + "bbox": [ + 147, + 489, + 462, + 525 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\pmb { \\theta } _ { j } ^ { L } \\sim \\mathrm { G a m } \\left( \\mathbf { \\Pi } \\mathbf { \\ } \\mathbf { \\Pi } ^ { L } \\pmb { \\theta } _ { j - 1 } ^ { L } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , \\pmb { \\theta } _ { j } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 } + \\mathbf { \\Pi } \\mathbf { \\Pi } ^ { l } \\pmb { \\theta } _ { j - 1 } ^ { l } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , } \\\\ & { \\pmb { \\theta } _ { j } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } _ { j } ^ { 2 } + \\mathbf { \\Pi } \\mathbf { \\ } ^ { 1 } \\pmb { \\theta } _ { j - 1 } ^ { 1 } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\pmb { d } _ { j } \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } _ { j } ^ { 1 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "46fb4b32e560f0a2c5eb8f4d60631f2b3140823462b1357d7d93089d84c30f0c.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 147, + 489, + 462, + 501.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 147, + 501.0, + 462, + 513.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 147, + 513.0, + 462, + 525.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 101, + 533, + 502, + 556 + ], + "spans": [ + { + "bbox": [ + 101, + 533, + 134, + 556 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 537, + 180, + 552 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 533, + 454, + 556 + ], + "score": 1.0, + "content": "denotes the gamma distributed topic weight vectors of sentence", + "type": "text" + }, + { + "bbox": [ + 454, + 540, + 461, + 551 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 533, + 498, + 556 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 498, + 540, + 502, + 549 + ], + "score": 0.54, + "content": "l", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 546, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 107, + 552, + 164, + 565 + ], + "score": 0.85, + "content": "\\mathbf { I I } ^ { l } \\in \\mathbb { R } _ { + } ^ { \\bar { K } _ { l } \\times K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 546, + 281, + 571 + ], + "score": 1.0, + "content": "the transition matrix of layer", + "type": "text" + }, + { + "bbox": [ + 282, + 554, + 286, + 563 + ], + "score": 0.57, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 546, + 482, + 571 + ], + "score": 1.0, + "content": "that captures cross-topic temporal dependencies,", + "type": "text" + }, + { + "bbox": [ + 482, + 552, + 506, + 564 + ], + "score": 0.88, + "content": "\\Phi ^ { l } \\in", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 109, + 563, + 508, + 584 + ], + "spans": [ + { + "bbox": [ + 109, + 563, + 508, + 584 + ], + "score": 1.0, + "content": "RKl−1×Kl+ the loading matrix at layer l, Kl the number of topics of layer l, and τ0 ∈ R+ a scaling", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 578, + 507, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 578, + 188, + 595 + ], + "score": 1.0, + "content": "hyperparameter. At", + "type": "text" + }, + { + "bbox": [ + 188, + 581, + 212, + 593 + ], + "score": 0.88, + "content": "j = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 578, + 217, + 595 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 217, + 579, + 325, + 594 + ], + "score": 0.91, + "content": "\\pmb { \\theta } _ { 1 } ^ { l } \\sim \\mathrm { G a m } \\left( \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } _ { 1 } ^ { l + 1 } , \\tau _ { 0 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 578, + 341, + 595 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 342, + 581, + 410, + 592 + ], + "score": 0.92, + "content": "l = 1 , \\ldots , L - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 578, + 429, + 595 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 429, + 581, + 502, + 593 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { 1 } ^ { L } \\sim \\mathbf { G a m } ( \\nu , \\tau _ { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 578, + 507, + 595 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 133, + 608 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 594, + 171, + 606 + ], + "score": 0.91, + "content": "\\nu = \\mathbf { 1 } _ { K _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 592, + 391, + 608 + ], + "score": 1.0, + "content": ". Finally, Dirichlet priors are placed on the columns of", + "type": "text" + }, + { + "bbox": [ + 392, + 593, + 405, + 604 + ], + "score": 0.86, + "content": "\\Pi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 592, + 423, + 608 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 423, + 594, + 435, + 604 + ], + "score": 0.87, + "content": "\\Phi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 592, + 458, + 608 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 458, + 594, + 471, + 606 + ], + "score": 0.89, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 592, + 489, + 608 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 489, + 594, + 502, + 606 + ], + "score": 0.89, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 592, + 506, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 506, + 618 + ], + "score": 1.0, + "content": "which not only makes the latent representation more identifiable and interpretable, but also facilitates", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 221, + 630 + ], + "score": 1.0, + "content": "inference. The count vector", + "type": "text" + }, + { + "bbox": [ + 222, + 617, + 233, + 628 + ], + "score": 0.89, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 614, + 385, + 630 + ], + "score": 1.0, + "content": "can be factorized into the product of", + "type": "text" + }, + { + "bbox": [ + 385, + 615, + 398, + 626 + ], + "score": 0.89, + "content": "\\Phi ^ { \\hat { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 614, + 417, + 630 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 417, + 616, + 429, + 629 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "under the Poisson", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 626, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 249, + 646 + ], + "score": 1.0, + "content": "likelihood. The shape parameters of", + "type": "text" + }, + { + "bbox": [ + 249, + 628, + 289, + 644 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 626, + 420, + 646 + ], + "score": 1.0, + "content": "can be factorized into the sum of", + "type": "text" + }, + { + "bbox": [ + 421, + 629, + 462, + 644 + ], + "score": 0.93, + "content": "\\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 626, + 507, + 646 + ], + "score": 1.0, + "content": ", capturing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 641, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 267, + 658 + ], + "score": 1.0, + "content": "inter-layer hierarchical dependence, and", + "type": "text" + }, + { + "bbox": [ + 268, + 643, + 300, + 657 + ], + "score": 0.92, + "content": "\\Pi ^ { l } \\theta _ { j - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 641, + 506, + 658 + ], + "score": 1.0, + "content": ", capturing intra-layer temporal dependence. rGBN", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "not only captures the document-level word occurrence patterns inside the training text corpus, but", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "also the sequential dependencies of the sentences inside a document. Note ignoring the recurrent", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "structure, rGBN will reduce to the gamma belief network (GBN) of Zhou et al. (2016), which can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 702 + ], + "score": 1.0, + "content": "considered as a multi-stochastic-layer deep generalization of LDA (Cong et al., 2017a). If ignoring", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 225, + 711 + ], + "score": 1.0, + "content": "its hierarchical structure (i.e.,", + "type": "text" + }, + { + "bbox": [ + 225, + 700, + 251, + 709 + ], + "score": 0.85, + "content": "L = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "), rGBN reduces to Poisson–gamma dynamical systems (Schein", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "et al., 2016). We refer to the rGBN-RNN without its recurrent structure as GBN-RNN, which no", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 720, + 439, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 439, + 733 + ], + "score": 1.0, + "content": "longer models sequential sentence dependencies; see Appendix A for more details.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 29.5, + "bbox_fs": [ + 101, + 533, + 508, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 216, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 216, + 95 + ], + "score": 1.0, + "content": "2.2 LANGUAGE MODEL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 104, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "Different from a conventional RNN-based language model, which predicts the next word only using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "the preceding words within the sentence, we integrate the hierarchical recurrent topic weight vectors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 124, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 107, + 125, + 117, + 139 + ], + "score": 0.88, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 124, + 356, + 140 + ], + "score": 1.0, + "content": "into the language model to predict the word sequence in the", + "type": "text" + }, + { + "bbox": [ + 356, + 127, + 362, + 137 + ], + "score": 0.74, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 124, + 506, + 140 + ], + "score": 1.0, + "content": "th sentence. Our proposed language", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "model is built upon the stacked RNN proposed in Graves (2013); Chung et al. (2017), but with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 146, + 507, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 507, + 161 + ], + "score": 1.0, + "content": "help of rGBN, it no longer requires specialized training heuristics to extract multi-scale structures.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 248, + 172 + ], + "score": 1.0, + "content": "As shown in Fig. 1 (b), to generate", + "type": "text" + }, + { + "bbox": [ + 249, + 160, + 264, + 171 + ], + "score": 0.88, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 158, + 282, + 172 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 283, + 158, + 294, + 169 + ], + "score": 0.86, + "content": "t ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 158, + 367, + 172 + ], + "score": 1.0, + "content": "token of sentence", + "type": "text" + }, + { + "bbox": [ + 367, + 159, + 374, + 170 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "in a document, we construct the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 406, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 160, + 185 + ], + "score": 1.0, + "content": "hidden states", + "type": "text" + }, + { + "bbox": [ + 161, + 170, + 178, + 185 + ], + "score": 0.92, + "content": "h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 169, + 406, + 185 + ], + "score": 1.0, + "content": "of the language model, from the bottom to top layers, as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 190, + 421, + 221 + ], + "lines": [ + { + "bbox": [ + 183, + 190, + 421, + 221 + ], + "spans": [ + { + "bbox": [ + 183, + 190, + 421, + 221 + ], + "score": 0.93, + "content": "\\begin{array} { r } { h _ { j , t } ^ { l } = \\left\\{ \\begin{array} { l l } { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , W _ { e } \\left[ x _ { j , t } \\right] \\right) , } & { \\mathrm { i f } l = 1 , } \\\\ { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , a _ { j , t } ^ { l - 1 } \\right) , } & { \\mathrm { i f } L \\geq l > 1 , } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "681993eeb4870a6d22b0668fbca8d79a3ddb4c9fcc349bed19ed6bb70a7ab27f.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 190, + 421, + 205.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 183, + 205.5, + 421, + 221.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 104, + 226, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 133, + 245 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 228, + 180, + 241 + ], + "score": 0.88, + "content": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 226, + 339, + 245 + ], + "score": 1.0, + "content": "denotes the word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 339, + 230, + 343, + 239 + ], + "score": 0.62, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 226, + 347, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 347, + 228, + 391, + 241 + ], + "score": 0.91, + "content": "{ \\bf W } _ { e } \\in \\mathbb { R } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 226, + 507, + 245 + ], + "score": 1.0, + "content": "are word embeddings to be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 156, + 255 + ], + "score": 1.0, + "content": "learned, and", + "type": "text" + }, + { + "bbox": [ + 157, + 242, + 210, + 253 + ], + "score": 0.9, + "content": "x _ { j , t } = y _ { j , t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 239, + 235, + 255 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + }, + { + "bbox": [ + 236, + 240, + 253, + 254 + ], + "score": 0.92, + "content": "\\pmb { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 239, + 505, + 255 + ], + "score": 1.0, + "content": "denotes the coupling vector, which combines the temporal topic", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 253, + 461, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 167, + 268 + ], + "score": 1.0, + "content": "weight vectors", + "type": "text" + }, + { + "bbox": [ + 167, + 254, + 178, + 267 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 253, + 353, + 268 + ], + "score": 1.0, + "content": "and hidden output of the word-level LSTM", + "type": "text" + }, + { + "bbox": [ + 353, + 253, + 380, + 267 + ], + "score": 0.93, + "content": "h _ { j , t - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 253, + 451, + 268 + ], + "score": 1.0, + "content": "at each time step", + "type": "text" + }, + { + "bbox": [ + 451, + 255, + 456, + 264 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 253, + 461, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 504, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), a gating unit similar to GRU (Cho et al., 2014) combines", + "type": "text" + }, + { + "bbox": [ + 440, + 272, + 450, + 286 + ], + "score": 0.88, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 272, + 498, + 286 + ], + "score": 1.0, + "content": "of sentence", + "type": "text" + }, + { + "bbox": [ + 498, + 275, + 504, + 285 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 285, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 193, + 301 + ], + "score": 1.0, + "content": "with its hidden state", + "type": "text" + }, + { + "bbox": [ + 193, + 286, + 210, + 300 + ], + "score": 0.91, + "content": "h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 285, + 335, + 301 + ], + "score": 1.0, + "content": "of word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 336, + 287, + 341, + 297 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 285, + 381, + 301 + ], + "score": 1.0, + "content": "and time", + "type": "text" + }, + { + "bbox": [ + 381, + 288, + 387, + 297 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 285, + 401, + 301 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 401, + 286, + 485, + 300 + ], + "score": 0.88, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 285, + 506, + 301 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 297, + 507, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 186, + 316 + ], + "score": 1.0, + "content": "defer the details on", + "type": "text" + }, + { + "bbox": [ + 186, + 299, + 195, + 312 + ], + "score": 0.87, + "content": "g ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 297, + 293, + 316 + ], + "score": 1.0, + "content": "to Appendix B. Denote", + "type": "text" + }, + { + "bbox": [ + 293, + 300, + 310, + 311 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 297, + 408, + 316 + ], + "score": 1.0, + "content": "as a weight matrix with", + "type": "text" + }, + { + "bbox": [ + 409, + 301, + 418, + 310 + ], + "score": 0.79, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 297, + 459, + 316 + ], + "score": 1.0, + "content": "rows and", + "type": "text" + }, + { + "bbox": [ + 459, + 300, + 478, + 313 + ], + "score": 0.92, + "content": "\\pmb { a } _ { j , t } ^ { 1 : L }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 297, + 507, + 316 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 174, + 327 + ], + "score": 1.0, + "content": "concatenation of", + "type": "text" + }, + { + "bbox": [ + 174, + 312, + 191, + 327 + ], + "score": 0.92, + "content": "\\boldsymbol { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 312, + 452, + 327 + ], + "score": 1.0, + "content": "across all layers; different from (1), the conditional probability of", + "type": "text" + }, + { + "bbox": [ + 452, + 315, + 466, + 326 + ], + "score": 0.86, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "becomes", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 333, + 390, + 349 + ], + "lines": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "spans": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "score": 0.93, + "content": "p \\left( y _ { j , t } \\mid y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { l } \\right) = \\mathrm { s o f t m a x } \\left( \\mathbf { W } _ { o } \\pmb { a } _ { j , t } ^ { 1 : L } \\right) .", + "type": "interline_equation", + "image_path": "e23f9002b0a63c4ea035a8911b0ff65b571d15481acf5d1b10d27c3bf1d55f7d.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 103, + 353, + 508, + 374 + ], + "spans": [ + { + "bbox": [ + 103, + 353, + 391, + 374 + ], + "score": 1.0, + "content": "There are two main reasons for combining all the latent representations", + "type": "text" + }, + { + "bbox": [ + 392, + 358, + 411, + 371 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 353, + 508, + 374 + ], + "score": 1.0, + "content": "for language modeling.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "First, the latent representations exhibit different statistical properties at different stochastic layers of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "rGBN-RNN, and hence are combined together to enhance their representation power. Second, having", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 390, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 504, + 402 + ], + "score": 1.0, + "content": "“skip connections” from all hidden layers to the output one makes it easier to train the proposed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "network, reducing the number of processing steps between the bottom of the network and the top and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 412, + 375, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 375, + 424 + ], + "score": 1.0, + "content": "hence mitigating the “vanishing gradient” problem (Graves, 2013).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 506, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 428, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 339, + 443 + ], + "score": 1.0, + "content": "To sum up, as depicted in Fig. 1 (a), the topic weight vector", + "type": "text" + }, + { + "bbox": [ + 340, + 429, + 350, + 443 + ], + "score": 0.9, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 428, + 397, + 443 + ], + "score": 1.0, + "content": "of sentence", + "type": "text" + }, + { + "bbox": [ + 398, + 430, + 403, + 441 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 428, + 506, + 443 + ], + "score": 1.0, + "content": "quantifies the topic usage", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 201, + 452 + ], + "score": 1.0, + "content": "of its document context", + "type": "text" + }, + { + "bbox": [ + 201, + 441, + 213, + 453 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 441, + 245, + 452 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 250, + 450 + ], + "score": 0.36, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 441, + 505, + 452 + ], + "score": 1.0, + "content": ". It is further used as an additional feature of the language model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 282, + 464 + ], + "score": 1.0, + "content": "to guide the word generation inside sentence", + "type": "text" + }, + { + "bbox": [ + 283, + 452, + 289, + 463 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 451, + 506, + 464 + ], + "score": 1.0, + "content": ", as shown in Fig. 1 (b). It is clear that rGBN-RNN has", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "two temporal structures: a deep recurrent topic model to extract the temporal topic weight vectors", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "from the sequential document contexts, and a language model to estimate the probability of each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "score": 1.0, + "content": "sentence given its corresponding hierarchical topic weight vector. Characterizing the word-sentence-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "document hierarchy to incorporate both intra- and inter-sentence information, rGBN-RNN learns", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "more coherent and interpretable topics and increases the generative power of the language model.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "Distinct from existing topic-guided language models, the temporally related hierarchical topics of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "rGBN exhibit different statistical properties across layers, which better guides language model to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 539, + 266, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 266, + 552 + ], + "score": 1.0, + "content": "improve its language generation ability.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 565, + 293, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 294, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 294, + 578 + ], + "score": 1.0, + "content": "2.3 MODEL LIKELIHOOD AND INFERENCE", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 203, + 600 + ], + "score": 1.0, + "content": "For rGBN-RNN, given", + "type": "text" + }, + { + "bbox": [ + 204, + 586, + 255, + 599 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 585, + 506, + 600 + ], + "score": 1.0, + "content": ", the marginal likelihood of the sequence of sentence-context", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 597, + 348, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 129, + 610 + ], + "score": 1.0, + "content": "pairs", + "type": "text" + }, + { + "bbox": [ + 129, + 597, + 230, + 610 + ], + "score": 0.9, + "content": "( \\{ s _ { 1 } , d _ { 1 } \\} , \\dots , \\{ s _ { J } , d _ { J } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 597, + 285, + 610 + ], + "score": 1.0, + "content": "of document", + "type": "text" + }, + { + "bbox": [ + 285, + 599, + 294, + 608 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 597, + 348, + 610 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 616, + 487, + 635 + ], + "lines": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "spans": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "score": 0.92, + "content": "\\begin{array} { r } { P \\left( \\mathcal { D } \\mid \\{ \\Phi ^ { l } , \\mathbf { T } ^ { l } \\} _ { l = 1 } ^ { L } \\right) = \\int \\prod _ { j = 1 } ^ { J } \\left\\{ p \\left( d _ { j } \\mid \\Phi ^ { 1 } \\theta _ { j } ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T _ { j } } p \\left( y _ { j t } \\mid y _ { j , < t } , \\theta _ { j } ^ { 1 ; L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\theta _ { j } ^ { l } \\mid e _ { j } ^ { l } , \\tau _ { 0 } \\right) \\right] \\right\\} d \\theta _ { 1 : J } ^ { 1 : L } , } \\end{array}", + "type": "interline_equation", + "image_path": "ba6cd3efa7b098c87bf01e8813b8bbebf4b9573f7020df7deb07b7f906127c42.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 641, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 641, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 641, + 133, + 659 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 642, + 246, + 658 + ], + "score": 0.93, + "content": "\\mathbf { \\boldsymbol { e } } _ { j } ^ { l } : = \\Phi ^ { l + 1 } \\mathbf { \\boldsymbol { \\theta } } _ { j } ^ { l + 1 } + \\Pi ^ { l } \\mathbf { \\boldsymbol { \\theta } } _ { j - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 641, + 506, + 659 + ], + "score": 1.0, + "content": ". The inference task is to learn the parameters of both the topic", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "model and language model components. One naive solution is to alternate the training between these", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "two components in each iteration: First, the topic model is trained using a sampling based iterative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "algorithm provided in Guo et al. (2018); Second, the language model is trained with maximum", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "likelihood estimation under a standard cross-entropy loss. While this naive solution can utilize readily", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "available inference algorithms for both rGBN and the language model, it may suffer from stability", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "and convergence issues. Moreover, the need to perform a sampling based iterative algorithm for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 468, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 468, + 733 + ], + "score": 1.0, + "content": "rGBN inside each iteration limits the scalability of the model for both training and testing.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 216, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 216, + 95 + ], + "score": 1.0, + "content": "2.2 LANGUAGE MODEL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 103, + 506, + 183 + ], + "lines": [ + { + "bbox": [ + 104, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "Different from a conventional RNN-based language model, which predicts the next word only using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "the preceding words within the sentence, we integrate the hierarchical recurrent topic weight vectors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 124, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 107, + 125, + 117, + 139 + ], + "score": 0.88, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 124, + 356, + 140 + ], + "score": 1.0, + "content": "into the language model to predict the word sequence in the", + "type": "text" + }, + { + "bbox": [ + 356, + 127, + 362, + 137 + ], + "score": 0.74, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 124, + 506, + 140 + ], + "score": 1.0, + "content": "th sentence. Our proposed language", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "model is built upon the stacked RNN proposed in Graves (2013); Chung et al. (2017), but with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 146, + 507, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 146, + 507, + 161 + ], + "score": 1.0, + "content": "help of rGBN, it no longer requires specialized training heuristics to extract multi-scale structures.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 248, + 172 + ], + "score": 1.0, + "content": "As shown in Fig. 1 (b), to generate", + "type": "text" + }, + { + "bbox": [ + 249, + 160, + 264, + 171 + ], + "score": 0.88, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 158, + 282, + 172 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 283, + 158, + 294, + 169 + ], + "score": 0.86, + "content": "t ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 158, + 367, + 172 + ], + "score": 1.0, + "content": "token of sentence", + "type": "text" + }, + { + "bbox": [ + 367, + 159, + 374, + 170 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "in a document, we construct the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 406, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 160, + 185 + ], + "score": 1.0, + "content": "hidden states", + "type": "text" + }, + { + "bbox": [ + 161, + 170, + 178, + 185 + ], + "score": 0.92, + "content": "h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 169, + 406, + 185 + ], + "score": 1.0, + "content": "of the language model, from the bottom to top layers, as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 102, + 507, + 185 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 190, + 421, + 221 + ], + "lines": [ + { + "bbox": [ + 183, + 190, + 421, + 221 + ], + "spans": [ + { + "bbox": [ + 183, + 190, + 421, + 221 + ], + "score": 0.93, + "content": "\\begin{array} { r } { h _ { j , t } ^ { l } = \\left\\{ \\begin{array} { l l } { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , W _ { e } \\left[ x _ { j , t } \\right] \\right) , } & { \\mathrm { i f } l = 1 , } \\\\ { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , a _ { j , t } ^ { l - 1 } \\right) , } & { \\mathrm { i f } L \\geq l > 1 , } \\end{array} \\right. } \\end{array}", + "type": "interline_equation", + "image_path": "681993eeb4870a6d22b0668fbca8d79a3ddb4c9fcc349bed19ed6bb70a7ab27f.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 190, + 421, + 205.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 183, + 205.5, + 421, + 221.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 228, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 104, + 226, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 133, + 245 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 228, + 180, + 241 + ], + "score": 0.88, + "content": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 226, + 339, + 245 + ], + "score": 1.0, + "content": "denotes the word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 339, + 230, + 343, + 239 + ], + "score": 0.62, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 226, + 347, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 347, + 228, + 391, + 241 + ], + "score": 0.91, + "content": "{ \\bf W } _ { e } \\in \\mathbb { R } ^ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 226, + 507, + 245 + ], + "score": 1.0, + "content": "are word embeddings to be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 239, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 156, + 255 + ], + "score": 1.0, + "content": "learned, and", + "type": "text" + }, + { + "bbox": [ + 157, + 242, + 210, + 253 + ], + "score": 0.9, + "content": "x _ { j , t } = y _ { j , t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 239, + 235, + 255 + ], + "score": 1.0, + "content": ". Note", + "type": "text" + }, + { + "bbox": [ + 236, + 240, + 253, + 254 + ], + "score": 0.92, + "content": "\\pmb { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 239, + 505, + 255 + ], + "score": 1.0, + "content": "denotes the coupling vector, which combines the temporal topic", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 253, + 461, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 167, + 268 + ], + "score": 1.0, + "content": "weight vectors", + "type": "text" + }, + { + "bbox": [ + 167, + 254, + 178, + 267 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 253, + 353, + 268 + ], + "score": 1.0, + "content": "and hidden output of the word-level LSTM", + "type": "text" + }, + { + "bbox": [ + 353, + 253, + 380, + 267 + ], + "score": 0.93, + "content": "h _ { j , t - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 253, + 451, + 268 + ], + "score": 1.0, + "content": "at each time step", + "type": "text" + }, + { + "bbox": [ + 451, + 255, + 456, + 264 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 253, + 461, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 226, + 507, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 504, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 439, + 286 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), a gating unit similar to GRU (Cho et al., 2014) combines", + "type": "text" + }, + { + "bbox": [ + 440, + 272, + 450, + 286 + ], + "score": 0.88, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 272, + 498, + 286 + ], + "score": 1.0, + "content": "of sentence", + "type": "text" + }, + { + "bbox": [ + 498, + 275, + 504, + 285 + ], + "score": 0.78, + "content": "j", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 285, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 193, + 301 + ], + "score": 1.0, + "content": "with its hidden state", + "type": "text" + }, + { + "bbox": [ + 193, + 286, + 210, + 300 + ], + "score": 0.91, + "content": "h _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 285, + 335, + 301 + ], + "score": 1.0, + "content": "of word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 336, + 287, + 341, + 297 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 285, + 381, + 301 + ], + "score": 1.0, + "content": "and time", + "type": "text" + }, + { + "bbox": [ + 381, + 288, + 387, + 297 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 285, + 401, + 301 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 401, + 286, + 485, + 300 + ], + "score": 0.88, + "content": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf ", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 285, + 506, + 301 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 297, + 507, + 316 + ], + "spans": [ + { + "bbox": [ + 104, + 297, + 186, + 316 + ], + "score": 1.0, + "content": "defer the details on", + "type": "text" + }, + { + "bbox": [ + 186, + 299, + 195, + 312 + ], + "score": 0.87, + "content": "g ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 297, + 293, + 316 + ], + "score": 1.0, + "content": "to Appendix B. Denote", + "type": "text" + }, + { + "bbox": [ + 293, + 300, + 310, + 311 + ], + "score": 0.89, + "content": "\\mathbf { W } _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 297, + 408, + 316 + ], + "score": 1.0, + "content": "as a weight matrix with", + "type": "text" + }, + { + "bbox": [ + 409, + 301, + 418, + 310 + ], + "score": 0.79, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 297, + 459, + 316 + ], + "score": 1.0, + "content": "rows and", + "type": "text" + }, + { + "bbox": [ + 459, + 300, + 478, + 313 + ], + "score": 0.92, + "content": "\\pmb { a } _ { j , t } ^ { 1 : L }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 297, + 507, + 316 + ], + "score": 1.0, + "content": "as the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 312, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 174, + 327 + ], + "score": 1.0, + "content": "concatenation of", + "type": "text" + }, + { + "bbox": [ + 174, + 312, + 191, + 327 + ], + "score": 0.92, + "content": "\\boldsymbol { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 312, + 452, + 327 + ], + "score": 1.0, + "content": "across all layers; different from (1), the conditional probability of", + "type": "text" + }, + { + "bbox": [ + 452, + 315, + 466, + 326 + ], + "score": 0.86, + "content": "y _ { j , t }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 312, + 505, + 327 + ], + "score": 1.0, + "content": "becomes", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 272, + 507, + 327 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 333, + 390, + 349 + ], + "lines": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "spans": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "score": 0.93, + "content": "p \\left( y _ { j , t } \\mid y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { l } \\right) = \\mathrm { s o f t m a x } \\left( \\mathbf { W } _ { o } \\pmb { a } _ { j , t } ^ { 1 : L } \\right) .", + "type": "interline_equation", + "image_path": "e23f9002b0a63c4ea035a8911b0ff65b571d15481acf5d1b10d27c3bf1d55f7d.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 220, + 333, + 390, + 349 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 424 + ], + "lines": [ + { + "bbox": [ + 103, + 353, + 508, + 374 + ], + "spans": [ + { + "bbox": [ + 103, + 353, + 391, + 374 + ], + "score": 1.0, + "content": "There are two main reasons for combining all the latent representations", + "type": "text" + }, + { + "bbox": [ + 392, + 358, + 411, + 371 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 353, + 508, + 374 + ], + "score": 1.0, + "content": "for language modeling.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "score": 1.0, + "content": "First, the latent representations exhibit different statistical properties at different stochastic layers of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 392 + ], + "score": 1.0, + "content": "rGBN-RNN, and hence are combined together to enhance their representation power. Second, having", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 390, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 504, + 402 + ], + "score": 1.0, + "content": "“skip connections” from all hidden layers to the output one makes it easier to train the proposed", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "network, reducing the number of processing steps between the bottom of the network and the top and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 412, + 375, + 424 + ], + "spans": [ + { + "bbox": [ + 107, + 412, + 375, + 424 + ], + "score": 1.0, + "content": "hence mitigating the “vanishing gradient” problem (Graves, 2013).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 103, + 353, + 508, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 428, + 506, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 428, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 104, + 428, + 339, + 443 + ], + "score": 1.0, + "content": "To sum up, as depicted in Fig. 1 (a), the topic weight vector", + "type": "text" + }, + { + "bbox": [ + 340, + 429, + 350, + 443 + ], + "score": 0.9, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 428, + 397, + 443 + ], + "score": 1.0, + "content": "of sentence", + "type": "text" + }, + { + "bbox": [ + 398, + 430, + 403, + 441 + ], + "score": 0.81, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 428, + 506, + 443 + ], + "score": 1.0, + "content": "quantifies the topic usage", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 201, + 452 + ], + "score": 1.0, + "content": "of its document context", + "type": "text" + }, + { + "bbox": [ + 201, + 441, + 213, + 453 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 441, + 245, + 452 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 246, + 441, + 250, + 450 + ], + "score": 0.36, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 441, + 505, + 452 + ], + "score": 1.0, + "content": ". It is further used as an additional feature of the language model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 282, + 464 + ], + "score": 1.0, + "content": "to guide the word generation inside sentence", + "type": "text" + }, + { + "bbox": [ + 283, + 452, + 289, + 463 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 451, + 506, + 464 + ], + "score": 1.0, + "content": ", as shown in Fig. 1 (b). It is clear that rGBN-RNN has", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "two temporal structures: a deep recurrent topic model to extract the temporal topic weight vectors", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "from the sequential document contexts, and a language model to estimate the probability of each", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 507, + 497 + ], + "score": 1.0, + "content": "sentence given its corresponding hierarchical topic weight vector. Characterizing the word-sentence-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "document hierarchy to incorporate both intra- and inter-sentence information, rGBN-RNN learns", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 104, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "more coherent and interpretable topics and increases the generative power of the language model.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "Distinct from existing topic-guided language models, the temporally related hierarchical topics of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "rGBN exhibit different statistical properties across layers, which better guides language model to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 539, + 266, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 266, + 552 + ], + "score": 1.0, + "content": "improve its language generation ability.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 428, + 507, + 552 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 565, + 293, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 294, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 294, + 578 + ], + "score": 1.0, + "content": "2.3 MODEL LIKELIHOOD AND INFERENCE", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 203, + 600 + ], + "score": 1.0, + "content": "For rGBN-RNN, given", + "type": "text" + }, + { + "bbox": [ + 204, + 586, + 255, + 599 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 585, + 506, + 600 + ], + "score": 1.0, + "content": ", the marginal likelihood of the sequence of sentence-context", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 597, + 348, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 129, + 610 + ], + "score": 1.0, + "content": "pairs", + "type": "text" + }, + { + "bbox": [ + 129, + 597, + 230, + 610 + ], + "score": 0.9, + "content": "( \\{ s _ { 1 } , d _ { 1 } \\} , \\dots , \\{ s _ { J } , d _ { J } \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 597, + 285, + 610 + ], + "score": 1.0, + "content": "of document", + "type": "text" + }, + { + "bbox": [ + 285, + 599, + 294, + 608 + ], + "score": 0.83, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 597, + 348, + 610 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 585, + 506, + 610 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 113, + 616, + 487, + 635 + ], + "lines": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "spans": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "score": 0.92, + "content": "\\begin{array} { r } { P \\left( \\mathcal { D } \\mid \\{ \\Phi ^ { l } , \\mathbf { T } ^ { l } \\} _ { l = 1 } ^ { L } \\right) = \\int \\prod _ { j = 1 } ^ { J } \\left\\{ p \\left( d _ { j } \\mid \\Phi ^ { 1 } \\theta _ { j } ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T _ { j } } p \\left( y _ { j t } \\mid y _ { j , < t } , \\theta _ { j } ^ { 1 ; L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\theta _ { j } ^ { l } \\mid e _ { j } ^ { l } , \\tau _ { 0 } \\right) \\right] \\right\\} d \\theta _ { 1 : J } ^ { 1 : L } , } \\end{array}", + "type": "interline_equation", + "image_path": "ba6cd3efa7b098c87bf01e8813b8bbebf4b9573f7020df7deb07b7f906127c42.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 113, + 616, + 487, + 635 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 641, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 641, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 641, + 133, + 659 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 642, + 246, + 658 + ], + "score": 0.93, + "content": "\\mathbf { \\boldsymbol { e } } _ { j } ^ { l } : = \\Phi ^ { l + 1 } \\mathbf { \\boldsymbol { \\theta } } _ { j } ^ { l + 1 } + \\Pi ^ { l } \\mathbf { \\boldsymbol { \\theta } } _ { j - 1 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 641, + 506, + 659 + ], + "score": 1.0, + "content": ". The inference task is to learn the parameters of both the topic", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "model and language model components. One naive solution is to alternate the training between these", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "two components in each iteration: First, the topic model is trained using a sampling based iterative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "algorithm provided in Guo et al. (2018); Second, the language model is trained with maximum", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "likelihood estimation under a standard cross-entropy loss. While this naive solution can utilize readily", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "available inference algorithms for both rGBN and the language model, it may suffer from stability", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "and convergence issues. Moreover, the need to perform a sampling based iterative algorithm for", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 468, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 468, + 733 + ], + "score": 1.0, + "content": "rGBN inside each iteration limits the scalability of the model for both training and testing.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42.5, + "bbox_fs": [ + 104, + 641, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 111, + 95, + 505, + 196 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 82, + 470, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 81, + 471, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 471, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 Hybrid SG-MCMC and recurrent autoencoding variational inference for rGBN-RNN.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 111, + 95, + 505, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 95, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 111, + 95, + 505, + 196 + ], + "score": 0.755, + "html": "
Set mini-batch size m and the number of layer L Initialize encoder and neural languagemodel parameter parameter Ω,and topic model parameter {Φl,l}=1·
foriter=1,2,. do
Randomly select a mini-batch of m documents consisting of J sentences to form a subset X =
{di,1:J,Si,1:J}m1; m,J,L
Draw random noise {e',j }i=1.j=1,l=1 from uniform distribution;
Calculate VΩL (S2, Φl,II'; X,e,j) according to (6),and update Ω; Sample 0’,j from (7) and (8) via Ω
to update {II′}=1 and {Φ′}𝑖=1, will be described in Appendix C; end for
", + "type": "table", + "image_path": "883a58b12452f8aa1ff37acf29b41fe78118af6c66ab12be6bbced62de96b5b2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 95, + 505, + 128.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 128.66666666666666, + 505, + 162.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 162.33333333333331, + 505, + 195.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 506, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "To this end, we introduce a variational recurrent inference network (encoder) to learn the latent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 226, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 103, + 226, + 231, + 246 + ], + "score": 1.0, + "content": "temporal topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 231, + 228, + 250, + 242 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 226, + 296, + 246 + ], + "score": 1.0, + "content": ". Denoting", + "type": "text" + }, + { + "bbox": [ + 296, + 227, + 414, + 243 + ], + "score": 0.93, + "content": "\\begin{array} { r } { Q = \\prod _ { j = 1 } ^ { J } \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\leq j } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 226, + 507, + 246 + ], + "score": 1.0, + "content": ", the ELBO of the log", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 241, + 329, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 329, + 254 + ], + "score": 1.0, + "content": "marginal likelihood shown in (5) can be constructed as", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 258, + 489, + 283 + ], + "lines": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "spans": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L = \\sum _ { j = 1 } ^ { J } \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d _ { j } | \\Phi | ^ { \\mathbf { i } } \\pmb { \\Phi } _ { j } ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T _ { j } } \\ln p \\left( y _ { j , t } | y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { 1 ; L } \\right) \\right] - \\sum _ { j = 1 } ^ { J } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln \\frac { q \\left( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\pmb { \\theta } _ { j } ^ { l } } \\right) } { p \\left( \\pmb { \\theta } _ { j } ^ { l } | \\mathbf { e } _ { j } ^ { l } , \\tau _ { 0 } \\right) } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "3d639f5eb509b8a36258177986e2fa17aa7d5f71470dd230259f5f525fcad244.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "which unites both the terms that are primarily responsible for training the recurrent hierarchical", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "topic model component, and terms for training the neural language model component. Similar to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 228, + 322 + ], + "score": 1.0, + "content": "Zhang et al. (2018), we define", + "type": "text" + }, + { + "bbox": [ + 229, + 308, + 354, + 322 + ], + "score": 0.91, + "content": "q ( \\pmb { \\theta } _ { j } ^ { l } \\ \\vert \\ \\pmb { d } _ { \\leq j } ) = \\bar { \\mathrm { W e i b u l l } } ( \\pmb { k } _ { j } ^ { l } , \\pmb { \\lambda } _ { j } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 308, + 505, + 322 + ], + "score": 1.0, + "content": ", a random sample from which can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 321, + 342, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 318, + 336 + ], + "score": 1.0, + "content": "obtained by transforming standard uniform variables", + "type": "text" + }, + { + "bbox": [ + 319, + 322, + 329, + 336 + ], + "score": 0.87, + "content": "\\epsilon _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 321, + 342, + 336 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 340, + 366, + 361 + ], + "lines": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "spans": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } = \\lambda _ { j } ^ { l } \\big ( - \\ln ( 1 - \\epsilon _ { j } ^ { l } ) \\big ) ^ { 1 / { k _ { j } ^ { l } } } .", + "type": "interline_equation", + "image_path": "f17bfcf770f8c5e412a7ec05acd0810ed4f6c9c825a7101311d497dbbb9cc05e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 504, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 422, + 379 + ], + "score": 1.0, + "content": "To capture the temporal dependencies between the topic weight vectors, both", + "type": "text" + }, + { + "bbox": [ + 422, + 366, + 433, + 380 + ], + "score": 0.88, + "content": "k _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 365, + 452, + 379 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 452, + 366, + 464, + 380 + ], + "score": 0.88, + "content": "\\lambda _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 365, + 505, + 379 + ], + "score": 1.0, + "content": ", from the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 272, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 272, + 389 + ], + "score": 1.0, + "content": "bottom to top layers, can be expressed as", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 393, + 437, + 410 + ], + "lines": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "spans": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { h } _ { j } ^ { s , l } = \\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l } \\big ( \\pmb { h } _ { j - 1 } ^ { s , l } , \\pmb { h } _ { j } ^ { s , l - 1 } \\big ) , \\pmb { k } _ { j } ^ { l } = f _ { k } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , \\pmb { \\lambda } _ { j } ^ { l } = f _ { \\lambda } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "43be74adc96890ec451fbee30430565b22fc8900332dee9244027922298d93e7.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 101, + 411, + 504, + 436 + ], + "spans": [ + { + "bbox": [ + 101, + 414, + 135, + 433 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 415, + 272, + 430 + ], + "score": 0.48, + "content": "h _ { j } ^ { s , 0 } = d _ { j } , h _ { 0 } ^ { s , l } = 0 , ", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 411, + 500, + 436 + ], + "score": 1.0, + "content": "denotes the sentence-level recurrent encoder at layer", + "type": "text" + }, + { + "bbox": [ + 500, + 420, + 504, + 428 + ], + "score": 0.79, + "content": "\\it l", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "implemented with a basic RNN cell, capturing the sequential relationship between sentences within", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 508, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 158, + 455 + ], + "score": 1.0, + "content": "a document,", + "type": "text" + }, + { + "bbox": [ + 158, + 439, + 176, + 455 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 438, + 286, + 455 + ], + "score": 1.0, + "content": "denotes the hidden state of", + "type": "text" + }, + { + "bbox": [ + 287, + 440, + 325, + 453 + ], + "score": 0.92, + "content": "\\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 438, + 393, + 455 + ], + "score": 1.0, + "content": ", and superscript", + "type": "text" + }, + { + "bbox": [ + 393, + 446, + 398, + 451 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 438, + 410, + 455 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 410, + 441, + 427, + 455 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 438, + 508, + 455 + ], + "score": 1.0, + "content": "denotes “sentence-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 452, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 461, + 469 + ], + "score": 1.0, + "content": "level RNN” used to distinguish the hidden state of language model in (3) . Note both", + "type": "text" + }, + { + "bbox": [ + 461, + 455, + 472, + 467 + ], + "score": 0.89, + "content": "f _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 452, + 492, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 492, + 454, + 504, + 468 + ], + "score": 0.86, + "content": "f _ { \\lambda } ^ { l }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 100, + 464, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 100, + 464, + 267, + 488 + ], + "score": 1.0, + "content": "are nonlinear functions mapping state", + "type": "text" + }, + { + "bbox": [ + 267, + 466, + 285, + 482 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 464, + 375, + 488 + ], + "score": 1.0, + "content": "to the parameters of", + "type": "text" + }, + { + "bbox": [ + 375, + 468, + 386, + 482 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 464, + 470, + 488 + ], + "score": 1.0, + "content": ", implemented with", + "type": "text" + }, + { + "bbox": [ + 470, + 468, + 505, + 481 + ], + "score": 0.9, + "content": "f ( { \\pmb x } ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 479, + 203, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 198, + 493 + ], + "score": 0.87, + "content": "\\ln ( 1 + \\exp ( \\mathbf { W } x + b ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 479, + 203, + 494 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 508, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 351, + 513 + ], + "score": 1.0, + "content": "Rather than finding a point estimate of the global parameters", + "type": "text" + }, + { + "bbox": [ + 352, + 497, + 403, + 510 + ], + "score": 0.93, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 495, + 508, + 513 + ], + "score": 1.0, + "content": "of the rGBN, we adopt a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "hybrid inference algorithm by combining TLASGR-MCMC described in Cong et al. (2017a); Zhang", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "et al. (2018) and our proposed recurrent variational inference network. In other words, the global", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 528, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 152, + 545 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 152, + 530, + 203, + 543 + ], + "score": 0.92, + "content": "\\{ \\bar { \\boldsymbol { \\Phi } } ^ { l } , \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { \\bar { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 528, + 506, + 545 + ], + "score": 1.0, + "content": "can be sampled with TLASGR-MCMC, while the parameters of the language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 367, + 554 + ], + "score": 1.0, + "content": "model and variational recurrent inference network, denoted by", + "type": "text" + }, + { + "bbox": [ + 368, + 542, + 377, + 551 + ], + "score": 0.74, + "content": "\\pmb { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 541, + 505, + 554 + ], + "score": 1.0, + "content": ", can be updated via stochastic", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "gradient descent (SGD) by maximizing the ELBO in (6). We describe a hybrid variational/sampling", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 560, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 432, + 579 + ], + "score": 1.0, + "content": "inference for rGBN-RNN in Algorithm 1 and provide more details about sampling", + "type": "text" + }, + { + "bbox": [ + 433, + 563, + 483, + 576 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 560, + 507, + 579 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 477, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 477, + 587 + ], + "score": 1.0, + "content": "TLASGR-MCMC in Appendix C. We defer the details on model complexity to Appendix E.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 647 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "To sum up, as shown in Fig. 1(c), the proposed rGBN-RNN works with a recurrent variational", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 416, + 614 + ], + "score": 1.0, + "content": "autoencoder inference framework, which takes the document context of the", + "type": "text" + }, + { + "bbox": [ + 416, + 603, + 422, + 614 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 602, + 506, + 614 + ], + "score": 1.0, + "content": "th sentence within a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 612, + 502, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 359, + 627 + ], + "score": 1.0, + "content": "document as input and learns hierarchical topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 360, + 613, + 378, + 627 + ], + "score": 0.92, + "content": "\\theta _ { j } ^ { 1 : L }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 612, + 497, + 627 + ], + "score": 1.0, + "content": "that evolve sequentially with", + "type": "text" + }, + { + "bbox": [ + 497, + 615, + 502, + 625 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "The learned topic vectors in different layer are then used to reconstruct the document context input", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 635, + 428, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 374, + 648 + ], + "score": 1.0, + "content": "and as an additional feature for the language model to generate the", + "type": "text" + }, + { + "bbox": [ + 374, + 636, + 380, + 647 + ], + "score": 0.62, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 635, + 428, + 648 + ], + "score": 1.0, + "content": "th sentence.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 109, + 663, + 254, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 257, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 257, + 678 + ], + "score": 1.0, + "content": "3 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "score": 1.0, + "content": "We consider three publicly available corpora, including APNEWS, IMDB, and BNC. The links,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "preprocessing steps, and summary statistics for them are deferred to Appendix D. We consider a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 369, + 722 + ], + "score": 1.0, + "content": "recurrent variational inference network for rGBN-RNN to infer", + "type": "text" + }, + { + "bbox": [ + 369, + 709, + 380, + 723 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ", as shown in Fig. 1(c), whose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 507, + 734 + ], + "score": 1.0, + "content": "number of hidden units in (8) are set the same as the number of topics in the corresponding layer.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.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 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": "table", + "bbox": [ + 111, + 95, + 505, + 196 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 82, + 470, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 81, + 471, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 471, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 Hybrid SG-MCMC and recurrent autoencoding variational inference for rGBN-RNN.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 111, + 95, + 505, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 95, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 111, + 95, + 505, + 196 + ], + "score": 0.755, + "html": "
Set mini-batch size m and the number of layer L Initialize encoder and neural languagemodel parameter parameter Ω,and topic model parameter {Φl,l}=1·
foriter=1,2,. do
Randomly select a mini-batch of m documents consisting of J sentences to form a subset X =
{di,1:J,Si,1:J}m1; m,J,L
Draw random noise {e',j }i=1.j=1,l=1 from uniform distribution;
Calculate VΩL (S2, Φl,II'; X,e,j) according to (6),and update Ω; Sample 0’,j from (7) and (8) via Ω
to update {II′}=1 and {Φ′}𝑖=1, will be described in Appendix C; end for
", + "type": "table", + "image_path": "883a58b12452f8aa1ff37acf29b41fe78118af6c66ab12be6bbced62de96b5b2.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 111, + 95, + 505, + 128.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 111, + 128.66666666666666, + 505, + 162.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 162.33333333333331, + 505, + 195.99999999999997 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 217, + 506, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 230 + ], + "score": 1.0, + "content": "To this end, we introduce a variational recurrent inference network (encoder) to learn the latent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 103, + 226, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 103, + 226, + 231, + 246 + ], + "score": 1.0, + "content": "temporal topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 231, + 228, + 250, + 242 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 226, + 296, + 246 + ], + "score": 1.0, + "content": ". Denoting", + "type": "text" + }, + { + "bbox": [ + 296, + 227, + 414, + 243 + ], + "score": 0.93, + "content": "\\begin{array} { r } { Q = \\prod _ { j = 1 } ^ { J } \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\leq j } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 226, + 507, + 246 + ], + "score": 1.0, + "content": ", the ELBO of the log", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 241, + 329, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 329, + 254 + ], + "score": 1.0, + "content": "marginal likelihood shown in (5) can be constructed as", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 103, + 216, + 507, + 254 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 258, + 489, + 283 + ], + "lines": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "spans": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "score": 0.91, + "content": "\\begin{array} { r } { L = \\sum _ { j = 1 } ^ { J } \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d _ { j } | \\Phi | ^ { \\mathbf { i } } \\pmb { \\Phi } _ { j } ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T _ { j } } \\ln p \\left( y _ { j , t } | y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { 1 ; L } \\right) \\right] - \\sum _ { j = 1 } ^ { J } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln \\frac { q \\left( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\pmb { \\theta } _ { j } ^ { l } } \\right) } { p \\left( \\pmb { \\theta } _ { j } ^ { l } | \\mathbf { e } _ { j } ^ { l } , \\tau _ { 0 } \\right) } \\right] , } \\end{array}", + "type": "interline_equation", + "image_path": "3d639f5eb509b8a36258177986e2fa17aa7d5f71470dd230259f5f525fcad244.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 111, + 258, + 489, + 283 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 505, + 299 + ], + "score": 1.0, + "content": "which unites both the terms that are primarily responsible for training the recurrent hierarchical", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "topic model component, and terms for training the neural language model component. Similar to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 228, + 322 + ], + "score": 1.0, + "content": "Zhang et al. (2018), we define", + "type": "text" + }, + { + "bbox": [ + 229, + 308, + 354, + 322 + ], + "score": 0.91, + "content": "q ( \\pmb { \\theta } _ { j } ^ { l } \\ \\vert \\ \\pmb { d } _ { \\leq j } ) = \\bar { \\mathrm { W e i b u l l } } ( \\pmb { k } _ { j } ^ { l } , \\pmb { \\lambda } _ { j } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 308, + 505, + 322 + ], + "score": 1.0, + "content": ", a random sample from which can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 321, + 342, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 318, + 336 + ], + "score": 1.0, + "content": "obtained by transforming standard uniform variables", + "type": "text" + }, + { + "bbox": [ + 319, + 322, + 329, + 336 + ], + "score": 0.87, + "content": "\\epsilon _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 321, + 342, + 336 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 287, + 505, + 336 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 340, + 366, + 361 + ], + "lines": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "spans": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { j } ^ { l } = \\lambda _ { j } ^ { l } \\big ( - \\ln ( 1 - \\epsilon _ { j } ^ { l } ) \\big ) ^ { 1 / { k _ { j } ^ { l } } } .", + "type": "interline_equation", + "image_path": "f17bfcf770f8c5e412a7ec05acd0810ed4f6c9c825a7101311d497dbbb9cc05e.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 245, + 340, + 366, + 361 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 504, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 422, + 379 + ], + "score": 1.0, + "content": "To capture the temporal dependencies between the topic weight vectors, both", + "type": "text" + }, + { + "bbox": [ + 422, + 366, + 433, + 380 + ], + "score": 0.88, + "content": "k _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 365, + 452, + 379 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 452, + 366, + 464, + 380 + ], + "score": 0.88, + "content": "\\lambda _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 365, + 505, + 379 + ], + "score": 1.0, + "content": ", from the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 376, + 272, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 272, + 389 + ], + "score": 1.0, + "content": "bottom to top layers, can be expressed as", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 365, + 505, + 389 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 393, + 437, + 410 + ], + "lines": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "spans": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { h } _ { j } ^ { s , l } = \\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l } \\big ( \\pmb { h } _ { j - 1 } ^ { s , l } , \\pmb { h } _ { j } ^ { s , l - 1 } \\big ) , \\pmb { k } _ { j } ^ { l } = f _ { k } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , \\pmb { \\lambda } _ { j } ^ { l } = f _ { \\lambda } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "43be74adc96890ec451fbee30430565b22fc8900332dee9244027922298d93e7.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 173, + 393, + 437, + 410 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 101, + 411, + 504, + 436 + ], + "spans": [ + { + "bbox": [ + 101, + 414, + 135, + 433 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 415, + 272, + 430 + ], + "score": 0.48, + "content": "h _ { j } ^ { s , 0 } = d _ { j } , h _ { 0 } ^ { s , l } = 0 , ", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 411, + 500, + 436 + ], + "score": 1.0, + "content": "denotes the sentence-level recurrent encoder at layer", + "type": "text" + }, + { + "bbox": [ + 500, + 420, + 504, + 428 + ], + "score": 0.79, + "content": "\\it l", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "implemented with a basic RNN cell, capturing the sequential relationship between sentences within", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 508, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 158, + 455 + ], + "score": 1.0, + "content": "a document,", + "type": "text" + }, + { + "bbox": [ + 158, + 439, + 176, + 455 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 438, + 286, + 455 + ], + "score": 1.0, + "content": "denotes the hidden state of", + "type": "text" + }, + { + "bbox": [ + 287, + 440, + 325, + 453 + ], + "score": 0.92, + "content": "\\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 438, + 393, + 455 + ], + "score": 1.0, + "content": ", and superscript", + "type": "text" + }, + { + "bbox": [ + 393, + 446, + 398, + 451 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 438, + 410, + 455 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 410, + 441, + 427, + 455 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 438, + 508, + 455 + ], + "score": 1.0, + "content": "denotes “sentence-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 452, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 461, + 469 + ], + "score": 1.0, + "content": "level RNN” used to distinguish the hidden state of language model in (3) . Note both", + "type": "text" + }, + { + "bbox": [ + 461, + 455, + 472, + 467 + ], + "score": 0.89, + "content": "f _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 452, + 492, + 469 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 492, + 454, + 504, + 468 + ], + "score": 0.86, + "content": "f _ { \\lambda } ^ { l }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 100, + 464, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 100, + 464, + 267, + 488 + ], + "score": 1.0, + "content": "are nonlinear functions mapping state", + "type": "text" + }, + { + "bbox": [ + 267, + 466, + 285, + 482 + ], + "score": 0.91, + "content": "h _ { j } ^ { s , l }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 464, + 375, + 488 + ], + "score": 1.0, + "content": "to the parameters of", + "type": "text" + }, + { + "bbox": [ + 375, + 468, + 386, + 482 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 464, + 470, + 488 + ], + "score": 1.0, + "content": ", implemented with", + "type": "text" + }, + { + "bbox": [ + 470, + 468, + 505, + 481 + ], + "score": 0.9, + "content": "f ( { \\pmb x } ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 479, + 203, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 198, + 493 + ], + "score": 0.87, + "content": "\\ln ( 1 + \\exp ( \\mathbf { W } x + b ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 479, + 203, + 494 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18.5, + "bbox_fs": [ + 100, + 411, + 508, + 494 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 104, + 495, + 508, + 513 + ], + "spans": [ + { + "bbox": [ + 104, + 495, + 351, + 513 + ], + "score": 1.0, + "content": "Rather than finding a point estimate of the global parameters", + "type": "text" + }, + { + "bbox": [ + 352, + 497, + 403, + 510 + ], + "score": 0.93, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 495, + 508, + 513 + ], + "score": 1.0, + "content": "of the rGBN, we adopt a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "hybrid inference algorithm by combining TLASGR-MCMC described in Cong et al. (2017a); Zhang", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "et al. (2018) and our proposed recurrent variational inference network. In other words, the global", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 528, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 528, + 152, + 545 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 152, + 530, + 203, + 543 + ], + "score": 0.92, + "content": "\\{ \\bar { \\boldsymbol { \\Phi } } ^ { l } , \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { \\bar { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 528, + 506, + 545 + ], + "score": 1.0, + "content": "can be sampled with TLASGR-MCMC, while the parameters of the language", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 367, + 554 + ], + "score": 1.0, + "content": "model and variational recurrent inference network, denoted by", + "type": "text" + }, + { + "bbox": [ + 368, + 542, + 377, + 551 + ], + "score": 0.74, + "content": "\\pmb { \\Omega }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 541, + 505, + 554 + ], + "score": 1.0, + "content": ", can be updated via stochastic", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 567 + ], + "score": 1.0, + "content": "gradient descent (SGD) by maximizing the ELBO in (6). We describe a hybrid variational/sampling", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 560, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 432, + 579 + ], + "score": 1.0, + "content": "inference for rGBN-RNN in Algorithm 1 and provide more details about sampling", + "type": "text" + }, + { + "bbox": [ + 433, + 563, + 483, + 576 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 560, + 507, + 579 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 573, + 477, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 477, + 587 + ], + "score": 1.0, + "content": "TLASGR-MCMC in Appendix C. We defer the details on model complexity to Appendix E.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 104, + 495, + 508, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 591, + 505, + 647 + ], + "lines": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 504, + 603 + ], + "score": 1.0, + "content": "To sum up, as shown in Fig. 1(c), the proposed rGBN-RNN works with a recurrent variational", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 416, + 614 + ], + "score": 1.0, + "content": "autoencoder inference framework, which takes the document context of the", + "type": "text" + }, + { + "bbox": [ + 416, + 603, + 422, + 614 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 602, + 506, + 614 + ], + "score": 1.0, + "content": "th sentence within a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 612, + 502, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 359, + 627 + ], + "score": 1.0, + "content": "document as input and learns hierarchical topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 360, + 613, + 378, + 627 + ], + "score": 0.92, + "content": "\\theta _ { j } ^ { 1 : L }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 612, + 497, + 627 + ], + "score": 1.0, + "content": "that evolve sequentially with", + "type": "text" + }, + { + "bbox": [ + 497, + 615, + 502, + 625 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "The learned topic vectors in different layer are then used to reconstruct the document context input", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 635, + 428, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 374, + 648 + ], + "score": 1.0, + "content": "and as an additional feature for the language model to generate the", + "type": "text" + }, + { + "bbox": [ + 374, + 636, + 380, + 647 + ], + "score": 0.62, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 635, + 428, + 648 + ], + "score": 1.0, + "content": "th sentence.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 591, + 506, + 648 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 663, + 254, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 257, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 257, + 678 + ], + "score": 1.0, + "content": "3 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "score": 1.0, + "content": "We consider three publicly available corpora, including APNEWS, IMDB, and BNC. The links,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "preprocessing steps, and summary statistics for them are deferred to Appendix D. We consider a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 369, + 722 + ], + "score": 1.0, + "content": "recurrent variational inference network for rGBN-RNN to infer", + "type": "text" + }, + { + "bbox": [ + 369, + 709, + 380, + 723 + ], + "score": 0.89, + "content": "\\theta _ { j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ", as shown in Fig. 1(c), whose", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 719, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 507, + 734 + ], + "score": 1.0, + "content": "number of hidden units in (8) are set the same as the number of topics in the corresponding layer.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 687, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), word embeddings are pre-trained 300-dimension word2vec Google", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "News vectors (https://code.google.com/archive/p/word2vec/). Dropout with a rate of 0.4 is used to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 297, + 119 + ], + "score": 1.0, + "content": "the input of the stacked-RNN at each layer, i.e.,", + "type": "text" + }, + { + "bbox": [ + 297, + 104, + 314, + 118 + ], + "score": 0.91, + "content": "\\dot { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 103, + 326, + 119 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 326, + 105, + 365, + 117 + ], + "score": 0.79, + "content": "W _ { e } \\left[ \\boldsymbol { x } _ { j , t } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 103, + 507, + 119 + ], + "score": 1.0, + "content": "in (3). The gradients are clipped if", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "the norm of the parameter vector exceeds 5. We use the Adam optimizer (Kingma & Ba, 2015) with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 160, + 139 + ], + "score": 1.0, + "content": "learning rate", + "type": "text" + }, + { + "bbox": [ + 160, + 126, + 182, + 137 + ], + "score": 0.89, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 125, + 507, + 139 + ], + "score": 1.0, + "content": ". The length of an input sentence is fixed to 30. We set the mini-batch size as 8,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 343, + 149 + ], + "score": 1.0, + "content": "number of training epochs as 5, and scaling hyperparameter", + "type": "text" + }, + { + "bbox": [ + 343, + 139, + 353, + 148 + ], + "score": 0.85, + "content": "\\tau _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "as 1. Code in TensorFlow is provided.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 164, + 255, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 256, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 256, + 176 + ], + "score": 1.0, + "content": "3.1 QUANTITATIVE COMPARISON", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "Perplexity: For fair comparison, we use standard language model perplexity as the evaluation met-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 289, + 208 + ], + "score": 1.0, + "content": "ric, by considering the following baselines:", + "type": "text" + }, + { + "bbox": [ + 289, + 196, + 300, + 207 + ], + "score": 0.32, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 196, + 506, + 208 + ], + "score": 1.0, + "content": "a standard LSTM language model (Hochreiter &", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Schmidhuber, 1997); (ii) LCLM (Tian & Cho, 2016), a larger-context language model that incorpo-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "rates context from preceding sentences, which are treated as a bag of words; (iii) a standard LSTM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 228, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 243 + ], + "score": 1.0, + "content": "language model incorporating the topic information of a separately trained LDA (LDA+LSTM);", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "(iv) Topic-RNN (Dieng et al., 2017), a hybrid model rescoring the prediction of the next word by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 250, + 385, + 264 + ], + "score": 1.0, + "content": "incorporating the topic information through a linear transformation;", + "type": "text" + }, + { + "bbox": [ + 385, + 252, + 398, + 262 + ], + "score": 0.25, + "content": "( \\nu )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "TDLM (Lau et al., 2017),", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "a joint learning framework which learns a convolutional based topic model and a language model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "simultaneously. (vi) TCNLM (Wang et al., 2018), which extracts the global semantic coherence of a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "document via a neural topic model, with the probability of each learned latent topic further adopted to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 308 + ], + "score": 1.0, + "content": "build a mixture-of-experts language model; (vii) TGVAE (Wang et al., 2019), combining a variational", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "auto-encoder based neural sequence model with a neural topic model; (viii) GBN-RNN, a simplified", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 400, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 400, + 330 + ], + "score": 1.0, + "content": "rGBN-RNN that removes the recurrent structure of its rGBN component.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 368, + 345 + ], + "score": 1.0, + "content": "For rGBN-RNN, to ensure the information about the words in the", + "type": "text" + }, + { + "bbox": [ + 368, + 334, + 374, + 345 + ], + "score": 0.56, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "th sentence to be predicted is not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 448, + 357 + ], + "score": 1.0, + "content": "leaking through the sequential document context vectors at the testing stage, the input", + "type": "text" + }, + { + "bbox": [ + 448, + 345, + 460, + 356 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "in (8) only", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 254, + 368 + ], + "score": 1.0, + "content": "summarizes the preceding sentences", + "type": "text" + }, + { + "bbox": [ + 255, + 356, + 272, + 367 + ], + "score": 0.9, + "content": "S _ { < j }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 354, + 506, + 368 + ], + "score": 1.0, + "content": ". For GBN-RNN, following TDLM (Lau et al., 2017) and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "TCNLM (Wang et al., 2018), all the sentences in a document, excluding the one being predicted,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "score": 1.0, + "content": "are used to obtain the BoW document context. As shown in Table 1, rGBN-RNN outperforms all", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "baselines, and the trend of improvement continues as its number of layers increases, indicating", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "the effectiveness of assimilating recurrent hierarchical topic information. rGBN-RNN consistently", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "outperforms GBN-RNN, suggesting the benefits of exploiting the sequential dependencies of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "sentence-contexts for language modeling. Moreover, comparing Table 1 and Table 4 of Appendix E", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "suggests rGBN-RNN, with its hierarchical and temporal topical guidance, achieves better performance", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 443, + 356, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 356, + 454 + ], + "score": 1.0, + "content": "with fewer parameters than comparable RNN-based baselines.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "score": 1.0, + "content": "Note that for language modeling, there has been significant recent interest in replacing RNNs with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "Transformer (Vaswani et al., 2017), which consists of stacked multi-head self-attention modules, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "its variants (Dai et al., 2019; Devlin et al., 2019; Radford et al., 2018; 2019). While Transformer", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "based language models have been shown to be powerful in various natural language processing tasks,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "they often have significantly more parameters, require much more training data, and take much longer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "score": 1.0, + "content": "to train than RNN-based language models. For example, Transformer-XL with 12L and that with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "24L (Dai et al., 2019), which improve Transformer to capture longer-range dependencies, have 41M", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "and 277M parameters, respectively, while the proposed rGBN-RNN with three stochastic hidden", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 186, + 560 + ], + "score": 1.0, + "content": "layers has as few as", + "type": "text" + }, + { + "bbox": [ + 187, + 548, + 209, + 558 + ], + "score": 0.29, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "parameters, as shown in Table 4, when used for language modeling. From", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "a structural point-of-view, we consider the proposed rGBN-RNN as complementary to rather than", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 581 + ], + "score": 1.0, + "content": "competing with Transformer based language models, and consider replacing RNN with Transformer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 580, + 394, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 394, + 593 + ], + "score": 1.0, + "content": "to construct rGBN guided Transformer as a promising future extension.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 597, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "BLEU: Following Wang et al. (2019), we use test-BLEU to evaluate the quality of generated", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 608, + 504, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 504, + 619 + ], + "score": 1.0, + "content": "sentences with a set of real test sentences as the reference, and self-BLEU to evaluate the diversity of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "the generated sentences (Zhu et al., 2018). Given the global parameters of the deep recurrent topic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "model (rGBN) and language model, we can generate the sentences by following the data generation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 364, + 655 + ], + "score": 1.0, + "content": "process of rGBN-RNN: we first generate topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 365, + 640, + 378, + 655 + ], + "score": 0.9, + "content": "\\theta _ { j } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "randomly and then downward", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 319, + 669 + ], + "score": 1.0, + "content": "propagate it through the rGBN as in (2) to generate", + "type": "text" + }, + { + "bbox": [ + 319, + 653, + 338, + 668 + ], + "score": 0.92, + "content": "\\theta _ { j } ^ { < L }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 653, + 506, + 669 + ], + "score": 1.0, + "content": ". By assimilating the random draw topic", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "weight vectors with the hidden states of the language model in each layer depicted in (3), we generate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "a corresponding sentence, where we start from a zero hidden state at each layer in the language model,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "and sample words sequentially until the end-of-the-sentence symbol is generated. Comparisons of the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "BLEU scores between different methods are shown in Fig. 2, using the benchmark tool in Texygen", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "(Zhu et al., 2018); We show below BLEU-3 and BLEU-4 for BNC and defer the analogous plots for", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "IMDB and APNEWS to Appendix G and H. Note we set the validation dataset as the ground-truth.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 48.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), word embeddings are pre-trained 300-dimension word2vec Google", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "News vectors (https://code.google.com/archive/p/word2vec/). Dropout with a rate of 0.4 is used to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 297, + 119 + ], + "score": 1.0, + "content": "the input of the stacked-RNN at each layer, i.e.,", + "type": "text" + }, + { + "bbox": [ + 297, + 104, + 314, + 118 + ], + "score": 0.91, + "content": "\\dot { a } _ { j , t } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 103, + 326, + 119 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 326, + 105, + 365, + 117 + ], + "score": 0.79, + "content": "W _ { e } \\left[ \\boldsymbol { x } _ { j , t } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 103, + 507, + 119 + ], + "score": 1.0, + "content": "in (3). The gradients are clipped if", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "the norm of the parameter vector exceeds 5. We use the Adam optimizer (Kingma & Ba, 2015) with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 125, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 160, + 139 + ], + "score": 1.0, + "content": "learning rate", + "type": "text" + }, + { + "bbox": [ + 160, + 126, + 182, + 137 + ], + "score": 0.89, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 125, + 507, + 139 + ], + "score": 1.0, + "content": ". The length of an input sentence is fixed to 30. We set the mini-batch size as 8,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 343, + 149 + ], + "score": 1.0, + "content": "number of training epochs as 5, and scaling hyperparameter", + "type": "text" + }, + { + "bbox": [ + 343, + 139, + 353, + 148 + ], + "score": 0.85, + "content": "\\tau _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 137, + 506, + 149 + ], + "score": 1.0, + "content": "as 1. Code in TensorFlow is provided.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 507, + 149 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 164, + 255, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 256, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 256, + 176 + ], + "score": 1.0, + "content": "3.1 QUANTITATIVE COMPARISON", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 185, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 506, + 198 + ], + "score": 1.0, + "content": "Perplexity: For fair comparison, we use standard language model perplexity as the evaluation met-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 289, + 208 + ], + "score": 1.0, + "content": "ric, by considering the following baselines:", + "type": "text" + }, + { + "bbox": [ + 289, + 196, + 300, + 207 + ], + "score": 0.32, + "content": "( i )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 196, + 506, + 208 + ], + "score": 1.0, + "content": "a standard LSTM language model (Hochreiter &", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Schmidhuber, 1997); (ii) LCLM (Tian & Cho, 2016), a larger-context language model that incorpo-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "rates context from preceding sentences, which are treated as a bag of words; (iii) a standard LSTM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 228, + 506, + 243 + ], + "spans": [ + { + "bbox": [ + 104, + 228, + 506, + 243 + ], + "score": 1.0, + "content": "language model incorporating the topic information of a separately trained LDA (LDA+LSTM);", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 239, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 253 + ], + "score": 1.0, + "content": "(iv) Topic-RNN (Dieng et al., 2017), a hybrid model rescoring the prediction of the next word by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 104, + 250, + 385, + 264 + ], + "score": 1.0, + "content": "incorporating the topic information through a linear transformation;", + "type": "text" + }, + { + "bbox": [ + 385, + 252, + 398, + 262 + ], + "score": 0.25, + "content": "( \\nu )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "TDLM (Lau et al., 2017),", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 104, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "a joint learning framework which learns a convolutional based topic model and a language model", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 272, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 286 + ], + "score": 1.0, + "content": "simultaneously. (vi) TCNLM (Wang et al., 2018), which extracts the global semantic coherence of a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "document via a neural topic model, with the probability of each learned latent topic further adopted to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 308 + ], + "score": 1.0, + "content": "build a mixture-of-experts language model; (vii) TGVAE (Wang et al., 2019), combining a variational", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 505, + 317 + ], + "score": 1.0, + "content": "auto-encoder based neural sequence model with a neural topic model; (viii) GBN-RNN, a simplified", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 400, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 400, + 330 + ], + "score": 1.0, + "content": "rGBN-RNN that removes the recurrent structure of its rGBN component.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 184, + 506, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 454 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 368, + 345 + ], + "score": 1.0, + "content": "For rGBN-RNN, to ensure the information about the words in the", + "type": "text" + }, + { + "bbox": [ + 368, + 334, + 374, + 345 + ], + "score": 0.56, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "th sentence to be predicted is not", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 448, + 357 + ], + "score": 1.0, + "content": "leaking through the sequential document context vectors at the testing stage, the input", + "type": "text" + }, + { + "bbox": [ + 448, + 345, + 460, + 356 + ], + "score": 0.88, + "content": "d _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "in (8) only", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 354, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 254, + 368 + ], + "score": 1.0, + "content": "summarizes the preceding sentences", + "type": "text" + }, + { + "bbox": [ + 255, + 356, + 272, + 367 + ], + "score": 0.9, + "content": "S _ { < j }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 354, + 506, + 368 + ], + "score": 1.0, + "content": ". For GBN-RNN, following TDLM (Lau et al., 2017) and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 506, + 379 + ], + "score": 1.0, + "content": "TCNLM (Wang et al., 2018), all the sentences in a document, excluding the one being predicted,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 388 + ], + "score": 1.0, + "content": "are used to obtain the BoW document context. As shown in Table 1, rGBN-RNN outperforms all", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "baselines, and the trend of improvement continues as its number of layers increases, indicating", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "the effectiveness of assimilating recurrent hierarchical topic information. rGBN-RNN consistently", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "outperforms GBN-RNN, suggesting the benefits of exploiting the sequential dependencies of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "sentence-contexts for language modeling. Moreover, comparing Table 1 and Table 4 of Appendix E", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 444 + ], + "score": 1.0, + "content": "suggests rGBN-RNN, with its hierarchical and temporal topical guidance, achieves better performance", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 443, + 356, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 356, + 454 + ], + "score": 1.0, + "content": "with fewer parameters than comparable RNN-based baselines.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 333, + 506, + 454 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 472 + ], + "score": 1.0, + "content": "Note that for language modeling, there has been significant recent interest in replacing RNNs with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "Transformer (Vaswani et al., 2017), which consists of stacked multi-head self-attention modules, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "its variants (Dai et al., 2019; Devlin et al., 2019; Radford et al., 2018; 2019). While Transformer", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "based language models have been shown to be powerful in various natural language processing tasks,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "they often have significantly more parameters, require much more training data, and take much longer", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 525 + ], + "score": 1.0, + "content": "to train than RNN-based language models. For example, Transformer-XL with 12L and that with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "24L (Dai et al., 2019), which improve Transformer to capture longer-range dependencies, have 41M", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "and 277M parameters, respectively, while the proposed rGBN-RNN with three stochastic hidden", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 186, + 560 + ], + "score": 1.0, + "content": "layers has as few as", + "type": "text" + }, + { + "bbox": [ + 187, + 548, + 209, + 558 + ], + "score": 0.29, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "parameters, as shown in Table 4, when used for language modeling. From", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "a structural point-of-view, we consider the proposed rGBN-RNN as complementary to rather than", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 570, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 581 + ], + "score": 1.0, + "content": "competing with Transformer based language models, and consider replacing RNN with Transformer", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 580, + 394, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 394, + 593 + ], + "score": 1.0, + "content": "to construct rGBN guided Transformer as a promising future extension.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 458, + 506, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 597, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "BLEU: Following Wang et al. (2019), we use test-BLEU to evaluate the quality of generated", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 608, + 504, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 504, + 619 + ], + "score": 1.0, + "content": "sentences with a set of real test sentences as the reference, and self-BLEU to evaluate the diversity of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "the generated sentences (Zhu et al., 2018). Given the global parameters of the deep recurrent topic", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "model (rGBN) and language model, we can generate the sentences by following the data generation", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 640, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 364, + 655 + ], + "score": 1.0, + "content": "process of rGBN-RNN: we first generate topic weight vectors", + "type": "text" + }, + { + "bbox": [ + 365, + 640, + 378, + 655 + ], + "score": 0.9, + "content": "\\theta _ { j } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 640, + 506, + 655 + ], + "score": 1.0, + "content": "randomly and then downward", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 653, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 653, + 319, + 669 + ], + "score": 1.0, + "content": "propagate it through the rGBN as in (2) to generate", + "type": "text" + }, + { + "bbox": [ + 319, + 653, + 338, + 668 + ], + "score": 0.92, + "content": "\\theta _ { j } ^ { < L }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 653, + 506, + 669 + ], + "score": 1.0, + "content": ". By assimilating the random draw topic", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "weight vectors with the hidden states of the language model in each layer depicted in (3), we generate", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "a corresponding sentence, where we start from a zero hidden state at each layer in the language model,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "and sample words sequentially until the end-of-the-sentence symbol is generated. Comparisons of the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "BLEU scores between different methods are shown in Fig. 2, using the benchmark tool in Texygen", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "(Zhu et al., 2018); We show below BLEU-3 and BLEU-4 for BNC and defer the analogous plots for", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "IMDB and APNEWS to Appendix G and H. Note we set the validation dataset as the ground-truth.", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 48.5, + "bbox_fs": [ + 104, + 597, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 101, + 475, + 281 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 190, + 90, + 416, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 88, + 418, + 102 + ], + "spans": [ + { + "bbox": [ + 190, + 88, + 418, + 102 + ], + "score": 1.0, + "content": "Table 1: Comparison of perplexity on three different datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 101, + 475, + 281 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 101, + 475, + 281 + ], + "spans": [ + { + "bbox": [ + 138, + 101, + 475, + 281 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic SizePerplexity
APNEWSIMDBBNC
LCLM(Tian & Cho,2016)60054.1867.7896.50
900-90050.6367.8687.77
LDA+LSTM (Lau et al., 2017)60010055.5269.6496.50
900-90010050.7563.0487.77
TopicRNN (Dieng et al.,2017)60010054.5467.8393.57
900-90010050.2461.5984.62
TDLM (Lau et al., 2017)60010052.7563.4585.99
900-90010048.9759.0481.83
TCNLM (Wang et al.,2018)60010052.6362.6486.44
TGVAE (Wang et al.,2019)900-90010047.8156.3880.14
6005048.7357.1187.86
basic-LSTM(Hochreiter & Schmidhuber,1997)60064.1372.14102.89
900-90058.8966.4794.23
GBN-RNN900-900-90060.1365.1695.73
600 600-51210047.4257.0186.39
100-8044.6455.4282.95
600-512-256100-80-5044.3554.5380.25
60010046.3555.7681.94
rGBN-RNN600-512100-8043.2653.8280.25
600-512-256100-80-5042.7151.3679.13
", + "type": "table", + "image_path": "73e386e70aa57ede6dedf97b01f2ee335fdfa19becbdaf390aa956483c9bf586.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 101, + 475, + 161.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 161.0, + 475, + 221.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 221.0, + 475, + 281.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 308, + 299, + 451, + 410 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 308, + 299, + 451, + 410 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 308, + 299, + 451, + 410 + ], + "spans": [ + { + "bbox": [ + 308, + 299, + 451, + 410 + ], + "score": 0.599, + "type": "image", + "image_path": "689a2217afebcff19b79da4e367570d7c586116abefb3572d628c5ba49b631f8.jpg" + } + ] + } + ], + "index": 6.0, + "virtual_lines": [ + { + "bbox": [ + 308, + 299, + 451, + 354.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 308, + 354.5, + 451, + 410.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 142, + 299, + 286, + 410 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 299, + 286, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 299, + 286, + 410 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 286, + 410 + ], + "score": 0.864, + "type": "image", + "image_path": "14d6b67e628492ad46630216b1691a87d38768d4c64bd9fb949aadeb6911e8c4.jpg" + } + ] + } + ], + "index": 5.0, + "virtual_lines": [ + { + "bbox": [ + 142, + 299, + 286, + 354.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 354.5, + 286, + 410.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 412, + 504, + 433 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 313, + 424 + ], + "score": 1.0, + "content": "Figure 2: BLEU scores of different methods for BNC.", + "type": "text" + }, + { + "bbox": [ + 313, + 414, + 319, + 421 + ], + "score": 0.37, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, y-axis self-BLEU, and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 421, + 322, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 322, + 434 + ], + "score": 1.0, + "content": "better BLEU score would fall within the lower right corner.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.75 + }, + { + "type": "image", + "bbox": [ + 112, + 436, + 496, + 516 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 436, + 496, + 516 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 436, + 496, + 516 + ], + "spans": [ + { + "bbox": [ + 112, + 436, + 496, + 516 + ], + "score": 0.967, + "type": "image", + "image_path": "c18ac3637092c8dc71298ca34bffdcf08ffbd1c277ffbd215b8990ecc475f69d.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 112, + 436, + 496, + 462.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 112, + 462.6666666666667, + 496, + 489.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 112, + 489.33333333333337, + 496, + 516.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 518, + 504, + 538 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 517, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 216, + 528 + ], + "score": 1.0, + "content": "Figure 3: Visualization of the", + "type": "text" + }, + { + "bbox": [ + 216, + 518, + 227, + 527 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 517, + 505, + 528 + ], + "score": 1.0, + "content": "-norm of the hidden states of the language model of rGBN-RNN, shown in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 527, + 319, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 319, + 539 + ], + "score": 1.0, + "content": "top-row, and that of GBN-RNN, shown in the bottom row.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 504, + 555 + ], + "score": 1.0, + "content": "For all datasets, it is clear that rGBN-RNN yields both higher test-BLEU and lower self-BLEU", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "scores than related methods do, indicating the stacked-RNN based language model in rGBN-RNN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 565, + 414, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 414, + 579 + ], + "score": 1.0, + "content": "generalizes well and does not suffer from mode collapse (i.e., low diversity).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 235, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 236, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 236, + 603 + ], + "score": 1.0, + "content": "3.2 QUALITATIVE ANALYSIS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Hierarchical structure of language model: In Fig. 3, we visualize the hierarchical multi-scale", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "structures learned with the language model of rGBN-RNN and that of GBN-RNN, by visualizing the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 107, + 633, + 119, + 644 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "-norm of the hidden states in each layer, while reading a sentence from the APNEWS validation set", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "as “the service employee international union asked why cme group needs tax relief when it is making", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 466, + 667 + ], + "score": 1.0, + "content": "huge amounts of money?” As shown in Fig. 3(a), in the bottom hidden layer (h1), the", + "type": "text" + }, + { + "bbox": [ + 467, + 657, + 479, + 666 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "norm", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "sequence varies quickly from word to word, except within short phrases such “service employee”,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "“international union,” and “tax relief,” suggesting layer h1 is in charge of capturing short-term local", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 353, + 699 + ], + "score": 1.0, + "content": "dependencies. By contrast, in the top hidden layer (h3), the", + "type": "text" + }, + { + "bbox": [ + 353, + 690, + 365, + 699 + ], + "score": 0.91, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "norm sequence varies slowly and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "exhibits semantic/syntactic meaningful long segments, such as “service employee international union,”", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "“asked why cme group needs tax relief,” “when it is,” and “making huge amounts of,” suggesting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "that layer h3 is in charge of capturing long-range dependencies. Therefore, the language model in", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 138, + 101, + 475, + 281 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 190, + 90, + 416, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 190, + 88, + 418, + 102 + ], + "spans": [ + { + "bbox": [ + 190, + 88, + 418, + 102 + ], + "score": 1.0, + "content": "Table 1: Comparison of perplexity on three different datasets.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 138, + 101, + 475, + 281 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 101, + 475, + 281 + ], + "spans": [ + { + "bbox": [ + 138, + 101, + 475, + 281 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic SizePerplexity
APNEWSIMDBBNC
LCLM(Tian & Cho,2016)60054.1867.7896.50
900-90050.6367.8687.77
LDA+LSTM (Lau et al., 2017)60010055.5269.6496.50
900-90010050.7563.0487.77
TopicRNN (Dieng et al.,2017)60010054.5467.8393.57
900-90010050.2461.5984.62
TDLM (Lau et al., 2017)60010052.7563.4585.99
900-90010048.9759.0481.83
TCNLM (Wang et al.,2018)60010052.6362.6486.44
TGVAE (Wang et al.,2019)900-90010047.8156.3880.14
6005048.7357.1187.86
basic-LSTM(Hochreiter & Schmidhuber,1997)60064.1372.14102.89
900-90058.8966.4794.23
GBN-RNN900-900-90060.1365.1695.73
600 600-51210047.4257.0186.39
100-8044.6455.4282.95
600-512-256100-80-5044.3554.5380.25
60010046.3555.7681.94
rGBN-RNN600-512100-8043.2653.8280.25
600-512-256100-80-5042.7151.3679.13
", + "type": "table", + "image_path": "73e386e70aa57ede6dedf97b01f2ee335fdfa19becbdaf390aa956483c9bf586.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 138, + 101, + 475, + 161.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 161.0, + 475, + 221.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 138, + 221.0, + 475, + 281.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 308, + 299, + 451, + 410 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 308, + 299, + 451, + 410 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 308, + 299, + 451, + 410 + ], + "spans": [ + { + "bbox": [ + 308, + 299, + 451, + 410 + ], + "score": 0.599, + "type": "image", + "image_path": "689a2217afebcff19b79da4e367570d7c586116abefb3572d628c5ba49b631f8.jpg" + } + ] + } + ], + "index": 6.0, + "virtual_lines": [ + { + "bbox": [ + 308, + 299, + 451, + 354.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 308, + 354.5, + 451, + 410.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 142, + 299, + 286, + 410 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 142, + 299, + 286, + 410 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 299, + 286, + 410 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 286, + 410 + ], + "score": 0.864, + "type": "image", + "image_path": "14d6b67e628492ad46630216b1691a87d38768d4c64bd9fb949aadeb6911e8c4.jpg" + } + ] + } + ], + "index": 5.0, + "virtual_lines": [ + { + "bbox": [ + 142, + 299, + 286, + 354.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 142, + 354.5, + 286, + 410.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 412, + 504, + 433 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 313, + 424 + ], + "score": 1.0, + "content": "Figure 2: BLEU scores of different methods for BNC.", + "type": "text" + }, + { + "bbox": [ + 313, + 414, + 319, + 421 + ], + "score": 0.37, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, y-axis self-BLEU, and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 421, + 322, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 322, + 434 + ], + "score": 1.0, + "content": "better BLEU score would fall within the lower right corner.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 6.75 + }, + { + "type": "image", + "bbox": [ + 112, + 436, + 496, + 516 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 436, + 496, + 516 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 436, + 496, + 516 + ], + "spans": [ + { + "bbox": [ + 112, + 436, + 496, + 516 + ], + "score": 0.967, + "type": "image", + "image_path": "c18ac3637092c8dc71298ca34bffdcf08ffbd1c277ffbd215b8990ecc475f69d.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 112, + 436, + 496, + 462.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 112, + 462.6666666666667, + 496, + 489.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 112, + 489.33333333333337, + 496, + 516.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 518, + 504, + 538 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 517, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 216, + 528 + ], + "score": 1.0, + "content": "Figure 3: Visualization of the", + "type": "text" + }, + { + "bbox": [ + 216, + 518, + 227, + 527 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 517, + 505, + 528 + ], + "score": 1.0, + "content": "-norm of the hidden states of the language model of rGBN-RNN, shown in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 527, + 319, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 319, + 539 + ], + "score": 1.0, + "content": "top-row, and that of GBN-RNN, shown in the bottom row.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 504, + 555 + ], + "score": 1.0, + "content": "For all datasets, it is clear that rGBN-RNN yields both higher test-BLEU and lower self-BLEU", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "scores than related methods do, indicating the stacked-RNN based language model in rGBN-RNN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 565, + 414, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 414, + 579 + ], + "score": 1.0, + "content": "generalizes well and does not suffer from mode collapse (i.e., low diversity).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 544, + 505, + 579 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 590, + 235, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 236, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 236, + 603 + ], + "score": 1.0, + "content": "3.2 QUALITATIVE ANALYSIS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Hierarchical structure of language model: In Fig. 3, we visualize the hierarchical multi-scale", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 634 + ], + "score": 1.0, + "content": "structures learned with the language model of rGBN-RNN and that of GBN-RNN, by visualizing the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 632, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 107, + 633, + 119, + 644 + ], + "score": 0.86, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 632, + 506, + 645 + ], + "score": 1.0, + "content": "-norm of the hidden states in each layer, while reading a sentence from the APNEWS validation set", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "as “the service employee international union asked why cme group needs tax relief when it is making", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 466, + 667 + ], + "score": 1.0, + "content": "huge amounts of money?” As shown in Fig. 3(a), in the bottom hidden layer (h1), the", + "type": "text" + }, + { + "bbox": [ + 467, + 657, + 479, + 666 + ], + "score": 0.86, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "norm", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "sequence varies quickly from word to word, except within short phrases such “service employee”,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "“international union,” and “tax relief,” suggesting layer h1 is in charge of capturing short-term local", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 353, + 699 + ], + "score": 1.0, + "content": "dependencies. By contrast, in the top hidden layer (h3), the", + "type": "text" + }, + { + "bbox": [ + 353, + 690, + 365, + 699 + ], + "score": 0.91, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "norm sequence varies slowly and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "exhibits semantic/syntactic meaningful long segments, such as “service employee international union,”", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "“asked why cme group needs tax relief,” “when it is,” and “making huge amounts of,” suggesting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "that layer h3 is in charge of capturing long-range dependencies. Therefore, the language model in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "rGBN-RNN can allow more specific information to transmit through lower layers, while allowing", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "more general higher level information to transmit through higher layers. Our proposed model have the", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "ability to learn hierarchical structure of the sequence, despite without designing the multiscale RNNs", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "on purpose like Chung et al. (2017). We also visualize the language model of GBN-RNN in Fig. 3(b);", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "with much less smoothly time-evolved deeper layers, GBN-RNN fails to utilize its stacked RNN", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "structure as effectively as rGBN-RNN does. This suggests that the language model is much better", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "trained in rGBN-RNN than in GBN-RNN for capturing long-range temporal dependencies, which", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "helps explain why rGBN-RNN exhibits clearly boosted BLEU scores in comparison to GBN-RNN.", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 610, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 81, + 480, + 293 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 81, + 480, + 293 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 81, + 480, + 293 + ], + "spans": [ + { + "bbox": [ + 128, + 81, + 480, + 293 + ], + "score": 0.978, + "type": "image", + "image_path": "c6c87135119fc368e16b91c16511c2df95d97a5e3e106d36f41782b51347d109.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 81, + 480, + 151.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 151.66666666666669, + 480, + 222.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 222.33333333333337, + 480, + 293.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 297, + 505, + 348 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "Figure 4: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 307, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 319 + ], + "score": 1.0, + "content": "APNEWS dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "score": 1.0, + "content": "topic at layer 3, 2, 1 are shown in orange, yellow and blue boxes respectively, and each sentence is shown in a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "dotted line box labeled with the corresponding topic index. Sentences generated with a combination of topics in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 336, + 275, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 275, + 349 + ], + "score": 1.0, + "content": "different layers are at the bottom of the figure.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 376 + ], + "score": 1.0, + "content": "rGBN-RNN can allow more specific information to transmit through lower layers, while allowing", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "more general higher level information to transmit through higher layers. Our proposed model have the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "ability to learn hierarchical structure of the sequence, despite without designing the multiscale RNNs", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "on purpose like Chung et al. (2017). We also visualize the language model of GBN-RNN in Fig. 3(b);", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "with much less smoothly time-evolved deeper layers, GBN-RNN fails to utilize its stacked RNN", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "structure as effectively as rGBN-RNN does. This suggests that the language model is much better", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "trained in rGBN-RNN than in GBN-RNN for capturing long-range temporal dependencies, which", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "helps explain why rGBN-RNN exhibits clearly boosted BLEU scores in comparison to GBN-RNN.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "Hierarchical topics: We present an example topic hierarchy inferred by a three-layer rGBN-RNN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "from APNEWS. In Fig. 4, we select a large-weighted topic at the top hidden layer and move down the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "network to include any lower-layer topics connected to their ancestors with sufficiently large weights.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Horizontal arrows link temporally related topics at the same layer, while top-down arrows link", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "hierarchically related topics across layers. For example, topic 48 of layer 3 on “budget, lawmakers,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 511, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 507, + 524 + ], + "score": 1.0, + "content": "gov., revenue,” is related not only in hierarchy to topic 57 on “lawmakers, pay, proposal, legislation”", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "and topic 60 of the lower layer on “budget, gov., revenue, vote, costs, mayor,” but also in time to topic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "35 of the same layer on “democratic, taxes, proposed, future, state.” Highly interpretable hierarchical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "relationships between the topics at different layers, and temporal relationships between the topics at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "the same layer are captured by rGBN-RNN, and the topics are often quite specific semantically at the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 566, + 428, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 428, + 580 + ], + "score": 1.0, + "content": "bottom layer while becoming increasingly more general when moving upwards.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Sentence generation under topic guidance: Given the learned rGBN-RNN, we can sample the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "sentences both conditioning on a single topic of a certain layer and on a combination of the topics", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "from different layers. Shown in the dotted-line boxes in Fig. 4, most of the generated sentences", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "conditioned on a single topic or a combination of topics are highly related to the given topics in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "terms of their semantical meanings but not necessarily in key words, indicating the language model is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "successfully guided by the recurrent hierarchical topics. These observations suggest that rGBN-RNN", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "has successfully captured syntax and global semantics simultaneously for natural language generation.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 507, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 507, + 677 + ], + "score": 1.0, + "content": "Sentence/paragraph generation conditioning on a paragraph: Given the GBN-RNN and rGBN-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "RNN learned on APNEWS, we further present the generated sentences conditioning on a paragraph,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "as shown in Fig. 5. To randomly generate sentences, we encode the paragraph into a hierarchical", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "latent representation and then feed it into the stacked-RNN. Besides, we can generate a paragraph", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "with rGBN-RNN, using its recurrent inference network to encode the paragraph into a dynamic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "hierarchical latent representation, which is fed into the language model to predict the word sequence", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 128, + 81, + 480, + 293 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 128, + 81, + 480, + 293 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 128, + 81, + 480, + 293 + ], + "spans": [ + { + "bbox": [ + 128, + 81, + 480, + 293 + ], + "score": 0.978, + "type": "image", + "image_path": "c6c87135119fc368e16b91c16511c2df95d97a5e3e106d36f41782b51347d109.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 128, + 81, + 480, + 151.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 128, + 151.66666666666669, + 480, + 222.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 128, + 222.33333333333337, + 480, + 293.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 297, + 505, + 348 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "Figure 4: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 307, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 319 + ], + "score": 1.0, + "content": "APNEWS dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "score": 1.0, + "content": "topic at layer 3, 2, 1 are shown in orange, yellow and blue boxes respectively, and each sentence is shown in a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "dotted line box labeled with the corresponding topic index. Sentences generated with a combination of topics in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 336, + 275, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 275, + 349 + ], + "score": 1.0, + "content": "different layers are at the bottom of the figure.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 451 + ], + "lines": [], + "index": 11.5, + "bbox_fs": [ + 105, + 362, + 506, + 452 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "Hierarchical topics: We present an example topic hierarchy inferred by a three-layer rGBN-RNN", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "from APNEWS. In Fig. 4, we select a large-weighted topic at the top hidden layer and move down the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "network to include any lower-layer topics connected to their ancestors with sufficiently large weights.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Horizontal arrows link temporally related topics at the same layer, while top-down arrows link", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 506, + 514 + ], + "score": 1.0, + "content": "hierarchically related topics across layers. For example, topic 48 of layer 3 on “budget, lawmakers,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 511, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 507, + 524 + ], + "score": 1.0, + "content": "gov., revenue,” is related not only in hierarchy to topic 57 on “lawmakers, pay, proposal, legislation”", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 535 + ], + "score": 1.0, + "content": "and topic 60 of the lower layer on “budget, gov., revenue, vote, costs, mayor,” but also in time to topic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 547 + ], + "score": 1.0, + "content": "35 of the same layer on “democratic, taxes, proposed, future, state.” Highly interpretable hierarchical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "relationships between the topics at different layers, and temporal relationships between the topics at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "the same layer are captured by rGBN-RNN, and the topics are often quite specific semantically at the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 566, + 428, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 428, + 580 + ], + "score": 1.0, + "content": "bottom layer while becoming increasingly more general when moving upwards.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 456, + 507, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "Sentence generation under topic guidance: Given the learned rGBN-RNN, we can sample the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "sentences both conditioning on a single topic of a certain layer and on a combination of the topics", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "from different layers. Shown in the dotted-line boxes in Fig. 4, most of the generated sentences", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "conditioned on a single topic or a combination of topics are highly related to the given topics in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "terms of their semantical meanings but not necessarily in key words, indicating the language model is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "successfully guided by the recurrent hierarchical topics. These observations suggest that rGBN-RNN", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "has successfully captured syntax and global semantics simultaneously for natural language generation.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 583, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 507, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 507, + 677 + ], + "score": 1.0, + "content": "Sentence/paragraph generation conditioning on a paragraph: Given the GBN-RNN and rGBN-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "RNN learned on APNEWS, we further present the generated sentences conditioning on a paragraph,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "as shown in Fig. 5. To randomly generate sentences, we encode the paragraph into a hierarchical", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "latent representation and then feed it into the stacked-RNN. Besides, we can generate a paragraph", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "with rGBN-RNN, using its recurrent inference network to encode the paragraph into a dynamic", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "hierarchical latent representation, which is fed into the language model to predict the word sequence", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 665, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 119, + 87, + 149, + 93 + ], + "lines": [ + { + "bbox": [ + 118, + 85, + 150, + 95 + ], + "spans": [ + { + "bbox": [ + 118, + 85, + 150, + 95 + ], + "score": 1.0, + "content": "Document", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 120, + 92, + 488, + 123 + ], + "lines": [ + { + "bbox": [ + 120, + 92, + 487, + 101 + ], + "spans": [ + { + "bbox": [ + 120, + 94, + 126, + 99 + ], + "score": 0.776, + "content": "。", + "type": "text" + }, + { + "bbox": [ + 127, + 92, + 487, + 101 + ], + "score": 1.0, + "content": "the senate sponsor (…) , a house committee last week removed photo ids issued by public colleges and universities from the measure", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 100, + 486, + 109 + ], + "spans": [ + { + "bbox": [ + 127, + 100, + 486, + 109 + ], + "score": 1.0, + "content": "sponsored by republican rep. susan lynn , who said she agreed with the change . the house approved the bill on a 65-30 vote on monday", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 108, + 487, + 115 + ], + "spans": [ + { + "bbox": [ + 127, + 108, + 487, + 115 + ], + "score": 1.0, + "content": "evening . but republican sen. bill ketron in a statement noted that the upper chamber overwhelmingly rejected efforts to take student", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 128, + 115, + 486, + 122 + ], + "spans": [ + { + "bbox": [ + 128, + 115, + 486, + 122 + ], + "score": 1.0, + "content": "ids out of the bill when it passed 21-8 earlier this month . ketron said he would take the bill to conference committee if needed .", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 118, + 129, + 222, + 136 + ], + "lines": [ + { + "bbox": [ + 118, + 128, + 223, + 137 + ], + "spans": [ + { + "bbox": [ + 118, + 128, + 223, + 137 + ], + "score": 1.0, + "content": "Generated Sentences with GBN-RNN", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 120, + 137, + 362, + 153 + ], + "lines": [ + { + "bbox": [ + 119, + 135, + 363, + 145 + ], + "spans": [ + { + "bbox": [ + 119, + 137, + 126, + 144 + ], + "score": 0.34, + "content": "^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 135, + 363, + 145 + ], + "score": 1.0, + "content": "if the house and senate agree , it will be the first time they 'll have to seek their first meeting .", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 121, + 145, + 361, + 153 + ], + "spans": [ + { + "bbox": [ + 121, + 147, + 126, + 151 + ], + "score": 0.628, + "content": "。", + "type": "text" + }, + { + "bbox": [ + 126, + 145, + 361, + 153 + ], + "score": 1.0, + "content": "the proposal would also give lawmakers with more money to protect public safety , he said .", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 119, + 159, + 225, + 167 + ], + "lines": [ + { + "bbox": [ + 118, + 158, + 226, + 167 + ], + "spans": [ + { + "bbox": [ + 118, + 158, + 226, + 167 + ], + "score": 1.0, + "content": "Generated Sentences with rGBN-RNN", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 118, + 168, + 442, + 185 + ], + "lines": [ + { + "bbox": [ + 119, + 167, + 441, + 176 + ], + "spans": [ + { + "bbox": [ + 119, + 167, + 441, + 176 + ], + "score": 1.0, + "content": "the proposal , which was introduced in the house on a vote on wednesday , has already passed the senate floor to the house", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 176, + 431, + 185 + ], + "spans": [ + { + "bbox": [ + 119, + 176, + 431, + 185 + ], + "score": 1.0, + "content": "the city commission voted last week to approve the law , which would have allowed the council to approve the new bill .", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 119, + 189, + 287, + 197 + ], + "lines": [ + { + "bbox": [ + 118, + 187, + 289, + 200 + ], + "spans": [ + { + "bbox": [ + 118, + 187, + 289, + 200 + ], + "score": 1.0, + "content": "Generated temporal Sentences with rGBN-RNN (Paragraph)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 120, + 197, + 488, + 249 + ], + "lines": [ + { + "bbox": [ + 121, + 198, + 486, + 205 + ], + "spans": [ + { + "bbox": [ + 121, + 198, + 486, + 205 + ], + "score": 1.0, + "content": "senate president pro tem joe scarnati said the governor 's office has never resolved the deadline for a vote in the house . the proposal is a new", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 128, + 205, + 486, + 212 + ], + "spans": [ + { + "bbox": [ + 128, + 205, + 486, + 212 + ], + "score": 1.0, + "content": "measure version of the bill to enact a senate committee to approve the emergency manager ‘s emergency license . the house gave the bill to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 211, + 486, + 220 + ], + "spans": [ + { + "bbox": [ + 127, + 211, + 486, + 220 + ], + "score": 1.0, + "content": "six weeks of testimony , but the vote now goes to the full house for consideration . jackson signed his paperwork wednesday with the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 128, + 219, + 487, + 227 + ], + "spans": [ + { + "bbox": [ + 128, + 219, + 487, + 227 + ], + "score": 1.0, + "content": "legislature .the proposal would also give lawmakers with more money to protect public safety , he said . \"a spokesman for the federal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 128, + 227, + 486, + 234 + ], + "spans": [ + { + "bbox": [ + 128, + 227, + 486, + 234 + ], + "score": 1.0, + "content": "department of public safety says it has been selected for a special meeting for the state senate to investigate his proposed law . a new state", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 233, + 487, + 242 + ], + "spans": [ + { + "bbox": [ + 127, + 233, + 487, + 242 + ], + "score": 1.0, + "content": "house committee has voted to approve a measure to let idaho join a national plan to ban private school systems at public schools . the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 241, + 415, + 249 + ], + "spans": [ + { + "bbox": [ + 127, + 241, + 415, + 249 + ], + "score": 1.0, + "content": "campaign also launched a website at the university of california , irvine , which are studying the current proposal .", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "Figure 5: Examples of generated sentences and paragraph conditioned on a document from APNEWS (green", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 266, + 395, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 395, + 277 + ], + "score": 1.0, + "content": "denotes novel words, blue the key words in document and generated sentences.)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "in each sentence of the input paragraph. It is clear that both the proposed GBN-RNN and rGBN-RNN", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "can successfully capture the key textual information of the input paragraph, and generate diverse", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "realistic sentences. Interestingly, the rGBN-RNN can generate semantically coherent paragraphs,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "incorporating contextual information both within and beyond the sentences. Note that with the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "topics that extract the document-level word cooccurrence patterns, our proposed models can generate", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 348, + 423, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 423, + 361 + ], + "score": 1.0, + "content": "semantically-meaningful words, which may not exist in the original document.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 108, + 376, + 195, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 197, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 197, + 392 + ], + "score": 1.0, + "content": "4 CONCLUSION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 506, + 413 + ], + "score": 1.0, + "content": "We propose a recurrent gamma belief network (rGBN) guided neural language modeling framework, a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "novel method to learn a language model and a deep recurrent topic model simultaneously. For scalable", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "score": 1.0, + "content": "inference, we develop hybrid SG-MCMC and recurrent autoencoding variational inference, allowing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "efficient end-to-end training. Experiments results conducted on real world corpora demonstrate that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "the proposed models outperform a variety of shallow-topic-model-guided neural language models,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "and effectively generate the sentences from the designated multi-level topics or noise, while inferring", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "interpretable hierarchical latent topic structure of document and hierarchical multiscale structures", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "score": 1.0, + "content": "of sequences. For future work, we plan to extend the proposed models to specific natural language", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "processing tasks, such as machine translation, image paragraph captioning, and text summarization.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "Another promising extension is to replace the stacked-RNN in rGBN-RNN with Transformer, i.e.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 511, + 468, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 468, + 523 + ], + "score": 1.0, + "content": "constructing an rGBN guided Transformer as a new larger-context neural language model.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 539, + 175, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 176, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 176, + 552 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 558, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 572 + ], + "score": 1.0, + "content": "Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A neural knowledge language", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 568, + 318, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 568, + 318, + 582 + ], + "score": 1.0, + "content": "model. arXiv: Computation and Language, 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 388, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 387, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 387, + 601 + ], + "score": 1.0, + "content": "D. M. Blei and J. D. Lafferty. Dynamic topic models. In ICML, 2006.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 621 + ], + "score": 1.0, + "content": "David M Blei, Andrew Y Ng, and Michael I Jordan. Latent Dirichlet allocation. Journal of Machine", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 618, + 274, + 631 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 274, + 631 + ], + "score": 1.0, + "content": "Learning Research, 3:993–1022, 2003.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 637, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 651 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Fethi Bougares, and Yoshua Bengio.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "Learning phrase representations using RNN encoder-decoder for statistical machine translation. In", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 660, + 219, + 672 + ], + "spans": [ + { + "bbox": [ + 116, + 660, + 219, + 672 + ], + "score": 1.0, + "content": "Computer Science, 2014.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "Junyoung Chung, Sungjin Ahn, and Yoshua Bengio. Hierarchical multiscale recurrent neural networks.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 115, + 690, + 179, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 179, + 702 + ], + "score": 1.0, + "content": "In ICLR, 2017.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Yulai Cong, Bo Chen, Hongwei Liu, and Mingyuan Zhou. Deep latent Dirichlet allocation with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 116, + 721, + 432, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 432, + 732 + ], + "score": 1.0, + "content": "topic-layer-adaptive stochastic gradient Riemannian MCMC. In ICML, 2017a.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 119, + 87, + 149, + 93 + ], + "lines": [ + { + "bbox": [ + 118, + 85, + 150, + 95 + ], + "spans": [ + { + "bbox": [ + 118, + 85, + 150, + 95 + ], + "score": 1.0, + "content": "Document", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 120, + 92, + 488, + 123 + ], + "lines": [ + { + "bbox": [ + 120, + 92, + 487, + 101 + ], + "spans": [ + { + "bbox": [ + 120, + 94, + 126, + 99 + ], + "score": 0.776, + "content": "。", + "type": "text" + }, + { + "bbox": [ + 127, + 92, + 487, + 101 + ], + "score": 1.0, + "content": "the senate sponsor (…) , a house committee last week removed photo ids issued by public colleges and universities from the measure", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 100, + 486, + 109 + ], + "spans": [ + { + "bbox": [ + 127, + 100, + 486, + 109 + ], + "score": 1.0, + "content": "sponsored by republican rep. susan lynn , who said she agreed with the change . the house approved the bill on a 65-30 vote on monday", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 108, + 487, + 115 + ], + "spans": [ + { + "bbox": [ + 127, + 108, + 487, + 115 + ], + "score": 1.0, + "content": "evening . but republican sen. bill ketron in a statement noted that the upper chamber overwhelmingly rejected efforts to take student", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 128, + 115, + 486, + 122 + ], + "spans": [ + { + "bbox": [ + 128, + 115, + 486, + 122 + ], + "score": 1.0, + "content": "ids out of the bill when it passed 21-8 earlier this month . ketron said he would take the bill to conference committee if needed .", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 120, + 92, + 487, + 122 + ] + }, + { + "type": "title", + "bbox": [ + 118, + 129, + 222, + 136 + ], + "lines": [ + { + "bbox": [ + 118, + 128, + 223, + 137 + ], + "spans": [ + { + "bbox": [ + 118, + 128, + 223, + 137 + ], + "score": 1.0, + "content": "Generated Sentences with GBN-RNN", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "list", + "bbox": [ + 120, + 137, + 362, + 153 + ], + "lines": [ + { + "bbox": [ + 119, + 135, + 363, + 145 + ], + "spans": [ + { + "bbox": [ + 119, + 137, + 126, + 144 + ], + "score": 0.34, + "content": "^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 135, + 363, + 145 + ], + "score": 1.0, + "content": "if the house and senate agree , it will be the first time they 'll have to seek their first meeting .", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 121, + 145, + 361, + 153 + ], + "spans": [ + { + "bbox": [ + 121, + 147, + 126, + 151 + ], + "score": 0.628, + "content": "。", + "type": "text" + }, + { + "bbox": [ + 126, + 145, + 361, + 153 + ], + "score": 1.0, + "content": "the proposal would also give lawmakers with more money to protect public safety , he said .", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 6.5, + "bbox_fs": [ + 119, + 135, + 363, + 153 + ] + }, + { + "type": "title", + "bbox": [ + 119, + 159, + 225, + 167 + ], + "lines": [ + { + "bbox": [ + 118, + 158, + 226, + 167 + ], + "spans": [ + { + "bbox": [ + 118, + 158, + 226, + 167 + ], + "score": 1.0, + "content": "Generated Sentences with rGBN-RNN", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 118, + 168, + 442, + 185 + ], + "lines": [ + { + "bbox": [ + 119, + 167, + 441, + 176 + ], + "spans": [ + { + "bbox": [ + 119, + 167, + 441, + 176 + ], + "score": 1.0, + "content": "the proposal , which was introduced in the house on a vote on wednesday , has already passed the senate floor to the house", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 119, + 176, + 431, + 185 + ], + "spans": [ + { + "bbox": [ + 119, + 176, + 431, + 185 + ], + "score": 1.0, + "content": "the city commission voted last week to approve the law , which would have allowed the council to approve the new bill .", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 119, + 167, + 441, + 185 + ] + }, + { + "type": "title", + "bbox": [ + 119, + 189, + 287, + 197 + ], + "lines": [ + { + "bbox": [ + 118, + 187, + 289, + 200 + ], + "spans": [ + { + "bbox": [ + 118, + 187, + 289, + 200 + ], + "score": 1.0, + "content": "Generated temporal Sentences with rGBN-RNN (Paragraph)", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 120, + 197, + 488, + 249 + ], + "lines": [ + { + "bbox": [ + 121, + 198, + 486, + 205 + ], + "spans": [ + { + "bbox": [ + 121, + 198, + 486, + 205 + ], + "score": 1.0, + "content": "senate president pro tem joe scarnati said the governor 's office has never resolved the deadline for a vote in the house . the proposal is a new", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 128, + 205, + 486, + 212 + ], + "spans": [ + { + "bbox": [ + 128, + 205, + 486, + 212 + ], + "score": 1.0, + "content": "measure version of the bill to enact a senate committee to approve the emergency manager ‘s emergency license . the house gave the bill to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 211, + 486, + 220 + ], + "spans": [ + { + "bbox": [ + 127, + 211, + 486, + 220 + ], + "score": 1.0, + "content": "six weeks of testimony , but the vote now goes to the full house for consideration . jackson signed his paperwork wednesday with the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 128, + 219, + 487, + 227 + ], + "spans": [ + { + "bbox": [ + 128, + 219, + 487, + 227 + ], + "score": 1.0, + "content": "legislature .the proposal would also give lawmakers with more money to protect public safety , he said . \"a spokesman for the federal", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 128, + 227, + 486, + 234 + ], + "spans": [ + { + "bbox": [ + 128, + 227, + 486, + 234 + ], + "score": 1.0, + "content": "department of public safety says it has been selected for a special meeting for the state senate to investigate his proposed law . a new state", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 233, + 487, + 242 + ], + "spans": [ + { + "bbox": [ + 127, + 233, + 487, + 242 + ], + "score": 1.0, + "content": "house committee has voted to approve a measure to let idaho join a national plan to ban private school systems at public schools . the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 241, + 415, + 249 + ], + "spans": [ + { + "bbox": [ + 127, + 241, + 415, + 249 + ], + "score": 1.0, + "content": "campaign also launched a website at the university of california , irvine , which are studying the current proposal .", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 121, + 198, + 487, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 504, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "Figure 5: Examples of generated sentences and paragraph conditioned on a document from APNEWS (green", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 266, + 395, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 395, + 277 + ], + "score": 1.0, + "content": "denotes novel words, blue the key words in document and generated sentences.)", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 254, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "in each sentence of the input paragraph. It is clear that both the proposed GBN-RNN and rGBN-RNN", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "can successfully capture the key textual information of the input paragraph, and generate diverse", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 316, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 328 + ], + "score": 1.0, + "content": "realistic sentences. Interestingly, the rGBN-RNN can generate semantically coherent paragraphs,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "incorporating contextual information both within and beyond the sentences. Note that with the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "topics that extract the document-level word cooccurrence patterns, our proposed models can generate", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 348, + 423, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 423, + 361 + ], + "score": 1.0, + "content": "semantically-meaningful words, which may not exist in the original document.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 293, + 506, + 361 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 376, + 195, + 388 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 197, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 197, + 392 + ], + "score": 1.0, + "content": "4 CONCLUSION", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 401, + 506, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 506, + 413 + ], + "score": 1.0, + "content": "We propose a recurrent gamma belief network (rGBN) guided neural language modeling framework, a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "novel method to learn a language model and a deep recurrent topic model simultaneously. For scalable", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "score": 1.0, + "content": "inference, we develop hybrid SG-MCMC and recurrent autoencoding variational inference, allowing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "efficient end-to-end training. Experiments results conducted on real world corpora demonstrate that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "the proposed models outperform a variety of shallow-topic-model-guided neural language models,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "and effectively generate the sentences from the designated multi-level topics or noise, while inferring", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "interpretable hierarchical latent topic structure of document and hierarchical multiscale structures", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 492 + ], + "score": 1.0, + "content": "of sequences. For future work, we plan to extend the proposed models to specific natural language", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "processing tasks, such as machine translation, image paragraph captioning, and text summarization.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "Another promising extension is to replace the stacked-RNN in rGBN-RNN with Transformer, i.e.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 511, + 468, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 468, + 523 + ], + "score": 1.0, + "content": "constructing an rGBN guided Transformer as a new larger-context neural language model.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 401, + 506, + 523 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 539, + 175, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 539, + 176, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 176, + 552 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 558, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 572 + ], + "score": 1.0, + "content": "Sungjin Ahn, Heeyoul Choi, Tanel Parnamaa, and Yoshua Bengio. A neural knowledge language", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 568, + 318, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 568, + 318, + 582 + ], + "score": 1.0, + "content": "model. arXiv: Computation and Language, 2017.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 555, + 505, + 582 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 388, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 387, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 387, + 601 + ], + "score": 1.0, + "content": "D. M. Blei and J. D. Lafferty. Dynamic topic models. In ICML, 2006.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 587, + 387, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 621 + ], + "score": 1.0, + "content": "David M Blei, Andrew Y Ng, and Michael I Jordan. Latent Dirichlet allocation. Journal of Machine", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 618, + 274, + 631 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 274, + 631 + ], + "score": 1.0, + "content": "Learning Research, 3:993–1022, 2003.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 606, + 505, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 637, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 636, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 506, + 651 + ], + "score": 1.0, + "content": "Kyunghyun Cho, Bart Van Merrienboer, Caglar Gulcehre, Fethi Bougares, and Yoshua Bengio.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "Learning phrase representations using RNN encoder-decoder for statistical machine translation. In", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 660, + 219, + 672 + ], + "spans": [ + { + "bbox": [ + 116, + 660, + 219, + 672 + ], + "score": 1.0, + "content": "Computer Science, 2014.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 636, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "score": 1.0, + "content": "Junyoung Chung, Sungjin Ahn, and Yoshua Bengio. Hierarchical multiscale recurrent neural networks.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 115, + 690, + 179, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 179, + 702 + ], + "score": 1.0, + "content": "In ICLR, 2017.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 678, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 502, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "Yulai Cong, Bo Chen, Hongwei Liu, and Mingyuan Zhou. Deep latent Dirichlet allocation with", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 116, + 721, + 432, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 432, + 732 + ], + "score": 1.0, + "content": "topic-layer-adaptive stochastic gradient Riemannian MCMC. In ICML, 2017a.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5, + "bbox_fs": [ + 107, + 709, + 504, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Yulai Cong, Bo Chen, and Mingyuan Zhou. Fast simulation of hyperplane-truncated multivariate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 372, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 372, + 105 + ], + "score": 1.0, + "content": "normal distributions. Bayesian Anal., 12(4):1017–1037, 2017b.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 509, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 509, + 127 + ], + "score": 1.0, + "content": "BNC Consortium. The British National Corpus, version 3 (BNC XML Edition). http://www.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 125, + 242, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 125, + 242, + 136 + ], + "score": 1.0, + "content": "natcorp.ox.ac.uk, 2007.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 507, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 507, + 156 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 155, + 474, + 168 + ], + "spans": [ + { + "bbox": [ + 116, + 155, + 474, + 168 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. In ACL, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "Jacob Devlin, Mingwei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 186, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 506, + 198 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In north american chapter of the association", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 196, + 327, + 210 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 327, + 210 + ], + "score": 1.0, + "content": "for computational linguistics, pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Adji B Dieng, Chong Wang, Jianfeng Gao, and John Paisley. TopicRNN: A recurrent neural network", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 335, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 335, + 240 + ], + "score": 1.0, + "content": "with long-range semantic dependency. In ICLR, 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "score": 1.0, + "content": "Zhe Gan, Changyou Chen, Ricardo Henao, David Carlson, and Lawrence Carin. Scalable deep", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 258, + 420, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 420, + 271 + ], + "score": 1.0, + "content": "Poisson factor analysis for topic modeling. In ICML, pp. 1823–1832, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 277, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "Zhe Gan, Chuang Gan, Xiaodong He, Yunchen Pu, Kenneth Tran, Jianfeng Gao, Lawrence Carin,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 115, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "and Li Deng. Semantic compositional networks for visual captioning. In CVPR, pp. 1141–1150,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 298, + 144, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 144, + 313 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 319, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Bottom-up abstractive summarization. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 330, + 244, + 343 + ], + "spans": [ + { + "bbox": [ + 116, + 330, + 244, + 343 + ], + "score": 1.0, + "content": "EMNLP, pp. 4098–4109, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Mark A Girolami and Ben Calderhead. Riemann manifold Langevin and Hamiltonian Monte Carlo", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "methods. Journal of The Royal Statistical Society Series B-statistical Methodology, 73(2):123–214,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 114, + 371, + 142, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 371, + 142, + 385 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 504, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "A. Graves, A. Mohamed, and G. Hinton. Speech recognition with deep recurrent neural networks. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 244, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 244, + 415 + ], + "score": 1.0, + "content": "ICASSP, pp. 6645–6649, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 438 + ], + "score": 1.0, + "content": "Alex Graves. Generating sequences with recurrent neural networks. arXiv: Neural and Evolutionary", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 434, + 191, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 434, + 191, + 447 + ], + "score": 1.0, + "content": "Computing, 2013.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 468 + ], + "score": 1.0, + "content": "T. L. Griffiths and M. Steyvers. Finding scientific topics. Proceedings of the National Academy of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 464, + 248, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 248, + 477 + ], + "score": 1.0, + "content": "Sciences, 101:5228–5235, 2004.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "Thomas L Griffiths, Mark Steyvers, David M Blei, and Joshua B Tenenbaum. Integrating topics and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 496, + 278, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 278, + 507 + ], + "score": 1.0, + "content": "syntax. In NeurIPS, pp. 537–544, 2004.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "Dandan Guo, Bo Chen, Hao Zhang, and Mingyuan Zhou. Deep Poisson gamma dynamical systems.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 527, + 256, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 527, + 256, + 538 + ], + "score": 1.0, + "content": "In NeurIPS, pp. 8451–8461, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 546, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. Neural Computation, 9(8):", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 556, + 191, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 191, + 570 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "Matthew D Hoffman, David M Blei, Chong Wang, and John Paisley. Stochastic variational inference.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 587, + 394, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 394, + 601 + ], + "score": 1.0, + "content": "The Journal of Machine Learning Research, 14(1):1303–1347, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 105, + 608, + 497, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 497, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 497, + 621 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In ICLR, 2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 460, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 460, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 460, + 641 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "D Klein and Christopher D Manning. Accurate unlexicalized parsing. In Meeting of the Association", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 659, + 267, + 671 + ], + "spans": [ + { + "bbox": [ + 114, + 659, + 267, + 671 + ], + "score": 1.0, + "content": "for Computational Linguistics, 2003.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 503, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Jey Han Lau, Timothy Baldwin, and Trevor Cohn. Topically driven neural language model. In", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 690, + 423, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 423, + 702 + ], + "score": 1.0, + "content": "meeting of the association for computational linguistics, pp. 355–365, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "C. Li, C. Chen, D. Carlson, and L. Carin. Preconditioned stochastic gradient Langevin dynamics for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 721, + 259, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 259, + 732 + ], + "score": 1.0, + "content": "deep neural networks. arXiv, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Yulai Cong, Bo Chen, and Mingyuan Zhou. Fast simulation of hyperplane-truncated multivariate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 372, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 372, + 105 + ], + "score": 1.0, + "content": "normal distributions. Bayesian Anal., 12(4):1017–1037, 2017b.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 112, + 505, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 111, + 509, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 509, + 127 + ], + "score": 1.0, + "content": "BNC Consortium. The British National Corpus, version 3 (BNC XML Edition). http://www.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 125, + 242, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 125, + 242, + 136 + ], + "score": 1.0, + "content": "natcorp.ox.ac.uk, 2007.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 509, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 143, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 507, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 507, + 156 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc V Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 155, + 474, + 168 + ], + "spans": [ + { + "bbox": [ + 116, + 155, + 474, + 168 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. In ACL, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 144, + 507, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 504, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "Jacob Devlin, Mingwei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 186, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 506, + 198 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In north american chapter of the association", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 196, + 327, + 210 + ], + "spans": [ + { + "bbox": [ + 114, + 196, + 327, + 210 + ], + "score": 1.0, + "content": "for computational linguistics, pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 174, + 506, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 505, + 229 + ], + "score": 1.0, + "content": "Adji B Dieng, Chong Wang, Jianfeng Gao, and John Paisley. TopicRNN: A recurrent neural network", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 335, + 240 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 335, + 240 + ], + "score": 1.0, + "content": "with long-range semantic dependency. In ICLR, 2017.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 216, + 505, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 261 + ], + "score": 1.0, + "content": "Zhe Gan, Changyou Chen, Ricardo Henao, David Carlson, and Lawrence Carin. Scalable deep", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 258, + 420, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 420, + 271 + ], + "score": 1.0, + "content": "Poisson factor analysis for topic modeling. In ICML, pp. 1823–1832, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 246, + 505, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 277, + 504, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "Zhe Gan, Chuang Gan, Xiaodong He, Yunchen Pu, Kenneth Tran, Jianfeng Gao, Lawrence Carin,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 115, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "and Li Deng. Semantic compositional networks for visual captioning. In CVPR, pp. 1141–1150,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 298, + 144, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 144, + 313 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 277, + 506, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 319, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "Sebastian Gehrmann, Yuntian Deng, and Alexander Rush. Bottom-up abstractive summarization. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 330, + 244, + 343 + ], + "spans": [ + { + "bbox": [ + 116, + 330, + 244, + 343 + ], + "score": 1.0, + "content": "EMNLP, pp. 4098–4109, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 319, + 505, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Mark A Girolami and Ben Calderhead. Riemann manifold Langevin and Hamiltonian Monte Carlo", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "methods. Journal of The Royal Statistical Society Series B-statistical Methodology, 73(2):123–214,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 114, + 371, + 142, + 385 + ], + "spans": [ + { + "bbox": [ + 114, + 371, + 142, + 385 + ], + "score": 1.0, + "content": "2011.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 351, + 506, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 504, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "A. Graves, A. Mohamed, and G. Hinton. Speech recognition with deep recurrent neural networks. In", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 244, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 244, + 415 + ], + "score": 1.0, + "content": "ICASSP, pp. 6645–6649, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 392, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 438 + ], + "score": 1.0, + "content": "Alex Graves. Generating sequences with recurrent neural networks. arXiv: Neural and Evolutionary", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 434, + 191, + 447 + ], + "spans": [ + { + "bbox": [ + 115, + 434, + 191, + 447 + ], + "score": 1.0, + "content": "Computing, 2013.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 420, + 506, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 468 + ], + "score": 1.0, + "content": "T. L. Griffiths and M. Steyvers. Finding scientific topics. Proceedings of the National Academy of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 464, + 248, + 477 + ], + "spans": [ + { + "bbox": [ + 115, + 464, + 248, + 477 + ], + "score": 1.0, + "content": "Sciences, 101:5228–5235, 2004.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 452, + 506, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 498 + ], + "score": 1.0, + "content": "Thomas L Griffiths, Mark Steyvers, David M Blei, and Joshua B Tenenbaum. Integrating topics and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 496, + 278, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 278, + 507 + ], + "score": 1.0, + "content": "syntax. In NeurIPS, pp. 537–544, 2004.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 483, + 505, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "Dandan Guo, Bo Chen, Hao Zhang, and Mingyuan Zhou. Deep Poisson gamma dynamical systems.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 527, + 256, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 527, + 256, + 538 + ], + "score": 1.0, + "content": "In NeurIPS, pp. 8451–8461, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 514, + 506, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 546, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 560 + ], + "score": 1.0, + "content": "Sepp Hochreiter and Jurgen Schmidhuber. Long short-term memory. Neural Computation, 9(8):", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 556, + 191, + 570 + ], + "spans": [ + { + "bbox": [ + 115, + 556, + 191, + 570 + ], + "score": 1.0, + "content": "1735–1780, 1997.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 545, + 506, + 570 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 577, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 507, + 590 + ], + "score": 1.0, + "content": "Matthew D Hoffman, David M Blei, Chong Wang, and John Paisley. Stochastic variational inference.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 587, + 394, + 601 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 394, + 601 + ], + "score": 1.0, + "content": "The Journal of Machine Learning Research, 14(1):1303–1347, 2013.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 576, + 507, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 608, + 497, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 497, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 497, + 621 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In ICLR, 2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 607, + 497, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 460, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 460, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 460, + 641 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-encoding variational bayes. In ICLR, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 627, + 460, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "D Klein and Christopher D Manning. Accurate unlexicalized parsing. In Meeting of the Association", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 659, + 267, + 671 + ], + "spans": [ + { + "bbox": [ + 114, + 659, + 267, + 671 + ], + "score": 1.0, + "content": "for Computational Linguistics, 2003.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 648, + 505, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 503, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "Jey Han Lau, Timothy Baldwin, and Trevor Cohn. Topically driven neural language model. In", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 690, + 423, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 423, + 702 + ], + "score": 1.0, + "content": "meeting of the association for computational linguistics, pp. 355–365, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 678, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "C. Li, C. Chen, D. Carlson, and L. Carin. Preconditioned stochastic gradient Langevin dynamics for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 721, + 259, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 259, + 732 + ], + "score": 1.0, + "content": "deep neural networks. arXiv, 2015.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 52, + 507, + 741 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 508, + 98 + ], + "score": 1.0, + "content": "Y. Ma, T. Chen, and E. Fox. A complete recipe for stochastic gradient MCMC. In NIPS, pp.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 91, + 192, + 108 + ], + "spans": [ + { + "bbox": [ + 114, + 91, + 192, + 108 + ], + "score": 1.0, + "content": "2899–2907, 2015.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 507, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 507, + 126 + ], + "score": 1.0, + "content": "Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Huang Dan, Andrew Y. Ng, and Christopher Potts.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 113, + 121, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 113, + 121, + 507, + 138 + ], + "score": 1.0, + "content": "Learning Word Vectors for Sentiment Analysis. In Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 322, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 322, + 147 + ], + "score": 1.0, + "content": "Linguistics: Human Language Technologies, 2011.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 150, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 150, + 507, + 168 + ], + "score": 1.0, + "content": "Junhua Mao, Wei Xu, Yi Yang, Jiang Wang, Zhiheng Huang, and Alan L Yuille. Deep captioning", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 396, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 396, + 176 + ], + "score": 1.0, + "content": "with multimodal recurrent neural networks (m-RNN). In ICLR, 2015.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Yishu Miao, Edward Grefenstette, and Phil Blunsom. Discovering discrete latent topics with neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 194, + 335, + 208 + ], + "spans": [ + { + "bbox": [ + 114, + 194, + 335, + 208 + ], + "score": 1.0, + "content": "variational inference. In ICML, pp. 2410–2419, 2017.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 223, + 228, + 237 + ], + "spans": [ + { + "bbox": [ + 114, + 223, + 228, + 237 + ], + "score": 1.0, + "content": "In SLT, pp. 234–239, 2012.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Recurrent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 114, + 253, + 362, + 267 + ], + "spans": [ + { + "bbox": [ + 114, + 253, + 362, + 267 + ], + "score": 1.0, + "content": "neural network based language model. In Interspeech, 2010.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "Tomas Mikolov, Stefan Kombrink, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Extensions", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 282, + 435, + 297 + ], + "spans": [ + { + "bbox": [ + 114, + 282, + 435, + 297 + ], + "score": 1.0, + "content": "of recurrent neural network language model. In ICASSP, pp. 5528–5531, 2011.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 302, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 506, + 314 + ], + "score": 1.0, + "content": "Andriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 113, + 312, + 236, + 326 + ], + "spans": [ + { + "bbox": [ + 113, + 312, + 236, + 326 + ], + "score": 1.0, + "content": "ICML, pp. 1791–1799, 2014.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "Sam Patterson and Yee Whye Teh. Stochastic gradient Riemannian Langevin dynamics on the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 113, + 342, + 328, + 356 + ], + "spans": [ + { + "bbox": [ + 113, + 342, + 328, + 356 + ], + "score": 1.0, + "content": "probability simplex. In NIPS, pp. 3102–3110, 2013.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language under-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 113, + 372, + 288, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 288, + 385 + ], + "score": 1.0, + "content": "standing by generative pre-training. 2018.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 104, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 113, + 401, + 321, + 415 + ], + "spans": [ + { + "bbox": [ + 113, + 401, + 321, + 415 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. 2019.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 433 + ], + "score": 1.0, + "content": "Steven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 113, + 430, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 113, + 430, + 506, + 446 + ], + "score": 1.0, + "content": "sequence training for image captioning. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 442, + 335, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 335, + 456 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 7008–7024, 2017.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 471, + 448, + 486 + ], + "spans": [ + { + "bbox": [ + 114, + 471, + 448, + 486 + ], + "score": 1.0, + "content": "approximate inference in deep generative models. In ICML, pp. 1278–1286, 2014.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "score": 1.0, + "content": "Alexander M Rush, Sumit Chopra, and Jason Weston. A neural attention model for abstractive", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 502, + 347, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 502, + 347, + 514 + ], + "score": 1.0, + "content": "sentence summarization. In EMNLP, pp. 379–389, 2015.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "Aaron Schein, Hanna Wallach, and Mingyuan Zhou. Poisson–gamma dynamical systems. In Neural", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 531, + 275, + 545 + ], + "spans": [ + { + "bbox": [ + 114, + 531, + 275, + 545 + ], + "score": 1.0, + "content": "Information Processing Systems, 2016.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "Akash Srivastava and Charles Sutton. Autoencoding variational inference for topic models. In ICLR,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 561, + 143, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 143, + 574 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 577, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 595 + ], + "score": 1.0, + "content": "Nitish Srivastava, Ruslan Salakhutdinov, and Geoffrey E Hinton. Modeling documents with deep", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 591, + 392, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 392, + 604 + ], + "score": 1.0, + "content": "Boltzmann machines. In Uncertainty in Artificial Intelligence, 2013.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 610, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 113, + 620, + 426, + 634 + ], + "spans": [ + { + "bbox": [ + 113, + 620, + 426, + 634 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "Yee Whye Teh, Michael I Jordan, Matthew J Beal, and David M Blei. Hierarchical Dirichlet processes.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 651, + 442, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 651, + 442, + 663 + ], + "score": 1.0, + "content": "Publications of the American Statistical Association, 101(476):1566–1581, 2006.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Wang Tian and Kyunghyun Cho. Larger-context language modelling with recurrent neural network.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 681, + 386, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 386, + 693 + ], + "score": 1.0, + "content": "In Meeting of the Association for Computational Linguistics, 2016.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 721, + 207, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 721, + 207, + 732 + ], + "score": 1.0, + "content": "pp. 6000–6010, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 22 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 52, + 507, + 741 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 508, + 98 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 508, + 98 + ], + "score": 1.0, + "content": "Y. Ma, T. Chen, and E. Fox. A complete recipe for stochastic gradient MCMC. In NIPS, pp.", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 91, + 192, + 108 + ], + "spans": [ + { + "bbox": [ + 114, + 91, + 192, + 108 + ], + "score": 1.0, + "content": "2899–2907, 2015.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 112, + 507, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 507, + 126 + ], + "score": 1.0, + "content": "Andrew L. Maas, Raymond E. Daly, Peter T. Pham, Huang Dan, Andrew Y. Ng, and Christopher Potts.", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 121, + 507, + 138 + ], + "spans": [ + { + "bbox": [ + 113, + 121, + 507, + 138 + ], + "score": 1.0, + "content": "Learning Word Vectors for Sentiment Analysis. In Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 135, + 322, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 322, + 147 + ], + "score": 1.0, + "content": "Linguistics: Human Language Technologies, 2011.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 150, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 150, + 507, + 168 + ], + "score": 1.0, + "content": "Junhua Mao, Wei Xu, Yi Yang, Jiang Wang, Zhiheng Huang, and Alan L Yuille. Deep captioning", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 164, + 396, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 396, + 176 + ], + "score": 1.0, + "content": "with multimodal recurrent neural networks (m-RNN). In ICLR, 2015.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Yishu Miao, Edward Grefenstette, and Phil Blunsom. Discovering discrete latent topics with neural", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 194, + 335, + 208 + ], + "spans": [ + { + "bbox": [ + 114, + 194, + 335, + 208 + ], + "score": 1.0, + "content": "variational inference. In ICML, pp. 2410–2419, 2017.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 227 + ], + "score": 1.0, + "content": "Tomas Mikolov and Geoffrey Zweig. Context dependent recurrent neural network language model.", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 223, + 228, + 237 + ], + "spans": [ + { + "bbox": [ + 114, + 223, + 228, + 237 + ], + "score": 1.0, + "content": "In SLT, pp. 234–239, 2012.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "Tomas Mikolov, Martin Karafiat, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Recurrent", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 253, + 362, + 267 + ], + "spans": [ + { + "bbox": [ + 114, + 253, + 362, + 267 + ], + "score": 1.0, + "content": "neural network based language model. In Interspeech, 2010.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "Tomas Mikolov, Stefan Kombrink, Lukas Burget, Jan Cernocky, and Sanjeev Khudanpur. Extensions", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 282, + 435, + 297 + ], + "spans": [ + { + "bbox": [ + 114, + 282, + 435, + 297 + ], + "score": 1.0, + "content": "of recurrent neural network language model. In ICASSP, pp. 5528–5531, 2011.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 302, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 506, + 314 + ], + "score": 1.0, + "content": "Andriy Mnih and Karol Gregor. Neural variational inference and learning in belief networks. In", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 312, + 236, + 326 + ], + "spans": [ + { + "bbox": [ + 113, + 312, + 236, + 326 + ], + "score": 1.0, + "content": "ICML, pp. 1791–1799, 2014.", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "Sam Patterson and Yee Whye Teh. Stochastic gradient Riemannian Langevin dynamics on the", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 342, + 328, + 356 + ], + "spans": [ + { + "bbox": [ + 113, + 342, + 328, + 356 + ], + "score": 1.0, + "content": "probability simplex. In NIPS, pp. 3102–3110, 2013.", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language under-", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 372, + 288, + 385 + ], + "spans": [ + { + "bbox": [ + 113, + 372, + 288, + 385 + ], + "score": 1.0, + "content": "standing by generative pre-training. 2018.", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 104, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 401, + 321, + 415 + ], + "spans": [ + { + "bbox": [ + 113, + 401, + 321, + 415 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. 2019.", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 421, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 506, + 433 + ], + "score": 1.0, + "content": "Steven J Rennie, Etienne Marcheret, Youssef Mroueh, Jerret Ross, and Vaibhava Goel. Self-critical", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 430, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 113, + 430, + 506, + 446 + ], + "score": 1.0, + "content": "sequence training for image captioning. In Proceedings of the IEEE Conference on Computer", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 442, + 335, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 442, + 335, + 456 + ], + "score": 1.0, + "content": "Vision and Pattern Recognition, pp. 7008–7024, 2017.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 475 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende, Shakir Mohamed, and Daan Wierstra. Stochastic backpropagation and", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 471, + 448, + 486 + ], + "spans": [ + { + "bbox": [ + 114, + 471, + 448, + 486 + ], + "score": 1.0, + "content": "approximate inference in deep generative models. In ICML, pp. 1278–1286, 2014.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 506, + 503 + ], + "score": 1.0, + "content": "Alexander M Rush, Sumit Chopra, and Jason Weston. A neural attention model for abstractive", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 502, + 347, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 502, + 347, + 514 + ], + "score": 1.0, + "content": "sentence summarization. In EMNLP, pp. 379–389, 2015.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "Aaron Schein, Hanna Wallach, and Mingyuan Zhou. Poisson–gamma dynamical systems. In Neural", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 531, + 275, + 545 + ], + "spans": [ + { + "bbox": [ + 114, + 531, + 275, + 545 + ], + "score": 1.0, + "content": "Information Processing Systems, 2016.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "Akash Srivastava and Charles Sutton. Autoencoding variational inference for topic models. In ICLR,", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 561, + 143, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 143, + 574 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 577, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 595 + ], + "score": 1.0, + "content": "Nitish Srivastava, Ruslan Salakhutdinov, and Geoffrey E Hinton. Modeling documents with deep", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 591, + 392, + 604 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 392, + 604 + ], + "score": 1.0, + "content": "Boltzmann machines. In Uncertainty in Artificial Intelligence, 2013.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 610, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 506, + 622 + ], + "score": 1.0, + "content": "Ilya Sutskever, Oriol Vinyals, and Quoc V Le. Sequence to sequence learning with neural networks.", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 620, + 426, + 634 + ], + "spans": [ + { + "bbox": [ + 113, + 620, + 426, + 634 + ], + "score": 1.0, + "content": "In Advances in neural information processing systems, pp. 3104–3112, 2014.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "Yee Whye Teh, Michael I Jordan, Matthew J Beal, and David M Blei. Hierarchical Dirichlet processes.", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 651, + 442, + 663 + ], + "spans": [ + { + "bbox": [ + 115, + 651, + 442, + 663 + ], + "score": 1.0, + "content": "Publications of the American Statistical Association, 101(476):1566–1581, 2006.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Wang Tian and Kyunghyun Cho. Larger-context language modelling with recurrent neural network.", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 681, + 386, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 386, + 693 + ], + "score": 1.0, + "content": "In Meeting of the Association for Computational Linguistics, 2016.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 114, + 708, + 507, + 723 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 721, + 207, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 721, + 207, + 732 + ], + "score": 1.0, + "content": "pp. 6000–6010, 2017.", + "type": "text" + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 82, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 97 + ], + "score": 1.0, + "content": "Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 95, + 257, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 257, + 107 + ], + "score": 1.0, + "content": "caption generator. In CVPR, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 112, + 464, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 464, + 126 + ], + "score": 1.0, + "content": "Hanna M Wallach. Topic modeling: beyond bag-of-words. In ICML, pp. 977–984, 2006.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "Wenlin Wang, Zhe Gan, Wenqi Wang, Dinghan Shen, Jiaji Huang, Wei Ping, Sanjeev Satheesh, and", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 142, + 499, + 156 + ], + "spans": [ + { + "bbox": [ + 115, + 142, + 499, + 156 + ], + "score": 1.0, + "content": "Lawrence Carin. Topic compositional neural language model. In AISTATS, pp. 356–365, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "score": 1.0, + "content": "Wenlin Wang, Zhe Gan, Hongteng Xu, Ruiyi Zhang, Guoyin Wang, Dinghan Shen, Changyou Chen,", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "and Lawrence Carin. Topic-guided variational autoencoders for text generation. In NAACL, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "Max Welling and Yee Whye Teh. Bayesian learning via stochastic gradient Langevin dynamics. In", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 202, + 225, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 225, + 215 + ], + "score": 1.0, + "content": "ICML, pp. 681–688, 2011.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "Kelvin Xu, Jimmy Ba, Ryan Kiros, Kyunghyun Cho, Aaron C Courville, Ruslan Salakhudinov, Rich", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "Zemel, and Yoshua Bengio. Show, attend and tell: Neural image caption generation with visual", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 244, + 287, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 287, + 256 + ], + "score": 1.0, + "content": "attention. In ICML, pp. 2048–2057, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "score": 1.0, + "content": "Hao Zhang, Bo Chen, Dandan Guo, and Mingyuan Zhou. WHAI: Weibull hybrid autoencoding", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 273, + 320, + 286 + ], + "spans": [ + { + "bbox": [ + 115, + 273, + 320, + 286 + ], + "score": 1.0, + "content": "inference for deep topic modeling. In ICLR, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "He Zhao, Lan Du, Wray Buntine, and Mingyuan Zhou. Dirichlet belief networks for topic structure", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 303, + 419, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 419, + 316 + ], + "score": 1.0, + "content": "learning. In Neural Information Processing Systems, pp. 7955–7966, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 320, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 336 + ], + "score": 1.0, + "content": "Mingyuan Zhou and Lawrence Carin. Negative binomial process count and mixture modeling. IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 333, + 445, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 445, + 346 + ], + "score": 1.0, + "content": "Transactions on Pattern Analysis and Machine Intelligence, 37(2):307–320, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Mingyuan Zhou, Yulai Cong, and Bo Chen. Augmentable gamma belief networks. J. Mach. Learn.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 363, + 222, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 222, + 376 + ], + "score": 1.0, + "content": "Res., 17(163):1–44, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 380, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 396 + ], + "score": 1.0, + "content": "Yaoming Zhu, Sidi Lu, Lei Zheng, Jiaxian Guo, Weinan Zhang, Jun Wang, and Yong Yu. Texygen:", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 392, + 388, + 406 + ], + "spans": [ + { + "bbox": [ + 114, + 392, + 388, + 406 + ], + "score": 1.0, + "content": "A benchmarking platform for text generation models. SIGIR, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + } + ], + "index": 22, + "bbox_fs": [ + 104, + 79, + 508, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 78, + 507, + 405 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 97 + ], + "score": 1.0, + "content": "Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 95, + 257, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 257, + 107 + ], + "score": 1.0, + "content": "caption generator. In CVPR, 2015.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 464, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 464, + 126 + ], + "score": 1.0, + "content": "Hanna M Wallach. Topic modeling: beyond bag-of-words. In ICML, pp. 977–984, 2006.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "Wenlin Wang, Zhe Gan, Wenqi Wang, Dinghan Shen, Jiaji Huang, Wei Ping, Sanjeev Satheesh, and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 142, + 499, + 156 + ], + "spans": [ + { + "bbox": [ + 115, + 142, + 499, + 156 + ], + "score": 1.0, + "content": "Lawrence Carin. Topic compositional neural language model. In AISTATS, pp. 356–365, 2018.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "score": 1.0, + "content": "Wenlin Wang, Zhe Gan, Hongteng Xu, Ruiyi Zhang, Guoyin Wang, Dinghan Shen, Changyou Chen,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 172, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 115, + 172, + 506, + 186 + ], + "score": 1.0, + "content": "and Lawrence Carin. Topic-guided variational autoencoders for text generation. In NAACL, 2019.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 506, + 205 + ], + "score": 1.0, + "content": "Max Welling and Yee Whye Teh. Bayesian learning via stochastic gradient Langevin dynamics. In", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 202, + 225, + 215 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 225, + 215 + ], + "score": 1.0, + "content": "ICML, pp. 681–688, 2011.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "Kelvin Xu, Jimmy Ba, Ryan Kiros, Kyunghyun Cho, Aaron C Courville, Ruslan Salakhudinov, Rich", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "Zemel, and Yoshua Bengio. Show, attend and tell: Neural image caption generation with visual", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 244, + 287, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 287, + 256 + ], + "score": 1.0, + "content": "attention. In ICML, pp. 2048–2057, 2015.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 505, + 276 + ], + "score": 1.0, + "content": "Hao Zhang, Bo Chen, Dandan Guo, and Mingyuan Zhou. WHAI: Weibull hybrid autoencoding", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 273, + 320, + 286 + ], + "spans": [ + { + "bbox": [ + 115, + 273, + 320, + 286 + ], + "score": 1.0, + "content": "inference for deep topic modeling. In ICLR, 2018.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "He Zhao, Lan Du, Wray Buntine, and Mingyuan Zhou. Dirichlet belief networks for topic structure", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 303, + 419, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 419, + 316 + ], + "score": 1.0, + "content": "learning. In Neural Information Processing Systems, pp. 7955–7966, 2018.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 336 + ], + "score": 1.0, + "content": "Mingyuan Zhou and Lawrence Carin. Negative binomial process count and mixture modeling. IEEE", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 333, + 445, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 445, + 346 + ], + "score": 1.0, + "content": "Transactions on Pattern Analysis and Machine Intelligence, 37(2):307–320, 2015.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Mingyuan Zhou, Yulai Cong, and Bo Chen. Augmentable gamma belief networks. J. Mach. Learn.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 363, + 222, + 376 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 222, + 376 + ], + "score": 1.0, + "content": "Res., 17(163):1–44, 2016.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 380, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 396 + ], + "score": 1.0, + "content": "Yaoming Zhu, Sidi Lu, Lei Zheng, Jiaxian Guo, Weinan Zhang, Jun Wang, and Yong Yu. Texygen:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 392, + 388, + 406 + ], + "spans": [ + { + "bbox": [ + 114, + 392, + 388, + 406 + ], + "score": 1.0, + "content": "A benchmarking platform for text generation models. SIGIR, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 10.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 78, + 507, + 405 + ], + "lines": [], + "index": 10.5, + "bbox_fs": [ + 105, + 82, + 506, + 406 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 80, + 212, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 214, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 214, + 96 + ], + "score": 1.0, + "content": "A THE GBN-RNN", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 159, + 120 + ], + "score": 1.0, + "content": "GBN-RNN:", + "type": "text" + }, + { + "bbox": [ + 159, + 106, + 198, + 118 + ], + "score": 0.93, + "content": "\\{ y _ { 1 : T } , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 103, + 350, + 120 + ], + "score": 1.0, + "content": "denotes a sentence-context pair, where", + "type": "text" + }, + { + "bbox": [ + 351, + 104, + 385, + 119 + ], + "score": 0.94, + "content": "d \\in \\mathbb { Z } _ { + } ^ { V _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 103, + 507, + 120 + ], + "score": 1.0, + "content": "represents the document-level", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "context as a word frequency count vector, the vth element of which counts the number of times the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 388, + 140 + ], + "score": 1.0, + "content": "vth word in the vocabulary appears in the document excluding sentence", + "type": "text" + }, + { + "bbox": [ + 389, + 129, + 407, + 140 + ], + "score": 0.87, + "content": "y _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 127, + 506, + 140 + ], + "score": 1.0, + "content": ". The hierarchical model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 356, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 124, + 151 + ], + "score": 1.0, + "content": "of a", + "type": "text" + }, + { + "bbox": [ + 124, + 140, + 132, + 149 + ], + "score": 0.84, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 139, + 356, + 151 + ], + "score": 1.0, + "content": "-hidden-layer GBN, from top to bottom, is expressed as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 154, + 431, + 189 + ], + "lines": [ + { + "bbox": [ + 178, + 154, + 431, + 189 + ], + "spans": [ + { + "bbox": [ + 178, + 154, + 431, + 189 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\pmb { \\theta } ^ { L } \\sim \\mathrm { G a m } \\left( r , c ^ { L + 1 } \\right) , \\ldots , \\pmb { \\theta } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , c ^ { l + 1 } \\right) , \\ldots , } \\\\ & { \\pmb { \\theta } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } ^ { 2 } , c ^ { 2 } \\right) , \\ d \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } ^ { 1 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "53f54a15e4e762c290ecd4efea0cb387c84f0c83fe6e213c789c79b4468dbc26.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 178, + 154, + 431, + 165.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 178, + 165.66666666666666, + 431, + 177.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 178, + 177.33333333333331, + 431, + 188.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 445, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 447, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 447, + 210 + ], + "score": 1.0, + "content": "The stacked-RNN based language model described in (3) is also used in GBN-RNN.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Statistical inference: To infer GBN-RNN, we consider a hybrid of stochastic gradient MCMC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 224, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 507, + 238 + ], + "score": 1.0, + "content": "(Welling & Teh, 2011; Patterson & Teh, 2013; Li et al., 2015; Ma et al., 2015; Cong et al., 2017a),", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 234, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 234, + 209, + 250 + ], + "score": 1.0, + "content": "used for the GBN topics", + "type": "text" + }, + { + "bbox": [ + 210, + 235, + 223, + 248 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 234, + 507, + 250 + ], + "score": 1.0, + "content": ", and auto-encoding variational inference (Kingma & Welling, 2013;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 507, + 259 + ], + "score": 1.0, + "content": "Rezende et al., 2014), used for the parameters of both the inference network (encoder) and RNN.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 256, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 256, + 506, + 271 + ], + "score": 1.0, + "content": "More specifically, GBN-RNN generalizes Weibull hybrid auto-encoding inference (WHAI) of Zhang", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "et al. (2018): it uses a deterministic-downward-stochastic-upward inference network to encode the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 279, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 235, + 293 + ], + "score": 1.0, + "content": "bag-of-words representation of", + "type": "text" + }, + { + "bbox": [ + 235, + 280, + 243, + 290 + ], + "score": 0.8, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 279, + 394, + 293 + ], + "score": 1.0, + "content": "into the latent topic-weight variables", + "type": "text" + }, + { + "bbox": [ + 395, + 279, + 405, + 290 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 279, + 506, + 293 + ], + "score": 1.0, + "content": "across all hidden layers,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 302, + 303 + ], + "score": 1.0, + "content": "which are fed into not only GBN to reconstruct", + "type": "text" + }, + { + "bbox": [ + 303, + 291, + 310, + 300 + ], + "score": 0.76, + "content": "\\textbf { \\em d }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 290, + 506, + 303 + ], + "score": 1.0, + "content": ", but also a stacked RNN in language model, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 290, + 315 + ], + "score": 1.0, + "content": "shown in (3), to predict the word sequence in", + "type": "text" + }, + { + "bbox": [ + 290, + 303, + 309, + 313 + ], + "score": 0.88, + "content": "y _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 302, + 358, + 315 + ], + "score": 1.0, + "content": ". The topics", + "type": "text" + }, + { + "bbox": [ + 358, + 301, + 371, + 314 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "can be sampled with topic-layer-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "adaptive stochastic gradient Riemannian (TLASGR) MCMC, whose details can be found in Cong", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 452, + 337 + ], + "score": 1.0, + "content": "et al. (2017a); Zhang et al. (2018), omitted here for brevity. Given the sampled topics", + "type": "text" + }, + { + "bbox": [ + 452, + 324, + 465, + 336 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 324, + 505, + 337 + ], + "score": 1.0, + "content": ", the joint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 291, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 198, + 348 + ], + "score": 1.0, + "content": "marginal likelihood of", + "type": "text" + }, + { + "bbox": [ + 198, + 335, + 237, + 347 + ], + "score": 0.93, + "content": "\\{ y _ { 1 : T } , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 334, + 291, + 348 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 351, + 483, + 385 + ], + "lines": [ + { + "bbox": [ + 111, + 351, + 483, + 385 + ], + "spans": [ + { + "bbox": [ + 111, + 351, + 483, + 385 + ], + "score": 0.93, + "content": "p \\left( \\boldsymbol { y } _ { 1 : T } , d \\mid \\{ \\Phi ^ { l } \\} _ { l } \\right) = \\int p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T } p \\left( \\boldsymbol { y } _ { t } \\mid \\boldsymbol { y } _ { 1 : t - 1 } , \\boldsymbol { \\theta } ^ { 1 : L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\boldsymbol { \\theta } ^ { l } \\mid \\Phi ^ { l + 1 } \\boldsymbol { \\theta } ^ { l + 1 } \\right) \\right] d \\boldsymbol { \\theta } ^ { 1 : L } .", + "type": "interline_equation", + "image_path": "d62ddf2d36ec01dd8c2fb3798602cceeb233fc9734b065d075aceaf11e1cfbc9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 111, + 351, + 483, + 362.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 111, + 362.3333333333333, + 483, + 373.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 373.66666666666663, + 483, + 384.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 504, + 415 + ], + "lines": [ + { + "bbox": [ + 104, + 389, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 298, + 407 + ], + "score": 1.0, + "content": "For efficient inference, an inference network as", + "type": "text" + }, + { + "bbox": [ + 299, + 390, + 423, + 405 + ], + "score": 0.93, + "content": "\\begin{array} { r } { Q = \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } ^ { l } | \\pmb { d } , \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 389, + 506, + 407 + ], + "score": 1.0, + "content": "is used to provide a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 288, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 288, + 415 + ], + "score": 1.0, + "content": "ELBO of the log joint marginal likelihood as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 420, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 111, + 420, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 111, + 420, + 505, + 449 + ], + "score": 0.88, + "content": "{ \\overset { , } { \\left( } { y _ { 1 : T } , d \\right) } } = \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T } \\ln p \\left( y _ { t } \\mid y _ { 1 : t - 1 } , \\theta ^ { 1 : L } \\right) \\right] - \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln { \\frac { q \\left( \\theta ^ { l } \\mid d , \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } { p \\left( \\theta ^ { l } \\mid \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } } \\right]", + "type": "interline_equation", + "image_path": "348d23660459e876227d8e29afa3ebcf458b3fe716ff9efda204c3d1abfa6549.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 111, + 420, + 505, + 429.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 111, + 429.6666666666667, + 505, + 439.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 439.33333333333337, + 505, + 449.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 506, + 515 + ], + "lines": [ + { + "bbox": [ + 104, + 455, + 508, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 283, + 474 + ], + "score": 1.0, + "content": "and the training is performed by maximizing", + "type": "text" + }, + { + "bbox": [ + 283, + 457, + 380, + 470 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p _ { \\mathrm { d a t a } } ( y _ { 1 : T } , d ) } [ L ( y _ { 1 : T } , d ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 455, + 508, + 474 + ], + "score": 1.0, + "content": "; following Zhang et al. (2018),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 146, + 483 + ], + "score": 1.0, + "content": "we define", + "type": "text" + }, + { + "bbox": [ + 147, + 469, + 359, + 483 + ], + "score": 0.88, + "content": "q ( \\pmb { \\theta } ^ { l } \\mid d , \\pmb { \\Phi } ^ { l + 1 } , \\pmb { \\theta } ^ { l + 1 } ) = \\mathrm { W e i b u l l } ( \\pmb { k } ^ { l } + \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , \\pmb { \\lambda } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 468, + 410, + 483 + ], + "score": 1.0, + "content": ", where both", + "type": "text" + }, + { + "bbox": [ + 410, + 469, + 421, + 480 + ], + "score": 0.87, + "content": "k ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 468, + 438, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 470, + 450, + 481 + ], + "score": 0.86, + "content": "\\lambda ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 468, + 507, + 483 + ], + "score": 1.0, + "content": "are determin-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 214, + 494 + ], + "score": 1.0, + "content": "istically transformed from", + "type": "text" + }, + { + "bbox": [ + 214, + 483, + 222, + 492 + ], + "score": 0.74, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "using neural networks. Distinct from a usual variational auto-encoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "whose inference network has a pure bottom-up structure, the inference network here has a determistic-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 504, + 376, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 376, + 516 + ], + "score": 1.0, + "content": "upward–stoachstic-downward ladder structure (Zhang et al., 2018).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 531, + 251, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 252, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 252, + 545 + ], + "score": 1.0, + "content": "B THE COUPLING VECTOR", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 104, + 553, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 233, + 570 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), the", + "type": "text" + }, + { + "bbox": [ + 234, + 555, + 312, + 569 + ], + "score": 0.93, + "content": "\\mathbf { \\Delta } _ { \\cdot \\cdot } ^ { a _ { j , t } ^ { l } } = g ^ { l } \\left( h _ { j , t } ^ { l } , \\theta _ { j } ^ { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 553, + 506, + 570 + ], + "score": 1.0, + "content": "can be implemented with a gating unit similar to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 565, + 259, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 259, + 579 + ], + "score": 1.0, + "content": "a GRU (Cho et al., 2014), describe as", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 581, + 402, + 653 + ], + "lines": [ + { + "bbox": [ + 210, + 581, + 402, + 653 + ], + "spans": [ + { + "bbox": [ + 210, + 581, + 402, + 653 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { z _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { z } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { z } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { z } ^ { l } \\right) } \\\\ & { r _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { r } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { r } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { r } ^ { l } \\right) } \\\\ & { \\hat { h } _ { j , t } ^ { l } = \\operatorname { t a n h } \\left( \\mathbf { W } _ { h } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { h } ^ { l } \\left( r _ { j , t } ^ { l } \\odot { h } _ { j , t } ^ { l } \\right) + \\mathbf { b } _ { h } ^ { l } \\right) } \\\\ & { a _ { j , t } ^ { l } = \\left( 1 - z _ { j , t } ^ { l } \\right) \\odot { h } _ { j , t } ^ { l } + z _ { j , t } ^ { l } \\odot \\hat { h } _ { j , t } ^ { l } } \\end{array}", + "type": "interline_equation", + "image_path": "a19b9303ca8190ac8c615aac41014e4a0ea631df5bdd37fd3f993bd6d2797890.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 210, + 581, + 402, + 595.4 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 210, + 595.4, + 402, + 609.8 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 609.8, + 402, + 624.1999999999999 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 210, + 624.1999999999999, + 402, + 638.5999999999999 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 210, + 638.5999999999999, + 402, + 652.9999999999999 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 276, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 278, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 278, + 678 + ], + "score": 1.0, + "content": "C SGMCMC FOR RGBN-RNN", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "To allow for scalable inference, we apply the topic-layer-adaptive stochastic gradient Riemannian", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "(TLASGR) MCMC algorithm described in Cong et al. (2017a); Zhang et al. (2018), which can be", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "used to sample simplex-constrained global parameters Cong et al. (2017b) in a mini-batch based", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "manner. It improves its sampling efficiency via the use of the Fisher information matrix (FIM)", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 80, + 212, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 214, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 214, + 96 + ], + "score": 1.0, + "content": "A THE GBN-RNN", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 150 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 159, + 120 + ], + "score": 1.0, + "content": "GBN-RNN:", + "type": "text" + }, + { + "bbox": [ + 159, + 106, + 198, + 118 + ], + "score": 0.93, + "content": "\\{ y _ { 1 : T } , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 103, + 350, + 120 + ], + "score": 1.0, + "content": "denotes a sentence-context pair, where", + "type": "text" + }, + { + "bbox": [ + 351, + 104, + 385, + 119 + ], + "score": 0.94, + "content": "d \\in \\mathbb { Z } _ { + } ^ { V _ { c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 103, + 507, + 120 + ], + "score": 1.0, + "content": "represents the document-level", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "context as a word frequency count vector, the vth element of which counts the number of times the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 388, + 140 + ], + "score": 1.0, + "content": "vth word in the vocabulary appears in the document excluding sentence", + "type": "text" + }, + { + "bbox": [ + 389, + 129, + 407, + 140 + ], + "score": 0.87, + "content": "y _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 127, + 506, + 140 + ], + "score": 1.0, + "content": ". The hierarchical model", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 356, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 124, + 151 + ], + "score": 1.0, + "content": "of a", + "type": "text" + }, + { + "bbox": [ + 124, + 140, + 132, + 149 + ], + "score": 0.84, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 139, + 356, + 151 + ], + "score": 1.0, + "content": "-hidden-layer GBN, from top to bottom, is expressed as", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 103, + 507, + 151 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 154, + 431, + 189 + ], + "lines": [ + { + "bbox": [ + 178, + 154, + 431, + 189 + ], + "spans": [ + { + "bbox": [ + 178, + 154, + 431, + 189 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\pmb { \\theta } ^ { L } \\sim \\mathrm { G a m } \\left( r , c ^ { L + 1 } \\right) , \\ldots , \\pmb { \\theta } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , c ^ { l + 1 } \\right) , \\ldots , } \\\\ & { \\pmb { \\theta } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } ^ { 2 } , c ^ { 2 } \\right) , \\ d \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } ^ { 1 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "53f54a15e4e762c290ecd4efea0cb387c84f0c83fe6e213c789c79b4468dbc26.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 178, + 154, + 431, + 165.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 178, + 165.66666666666666, + 431, + 177.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 178, + 177.33333333333331, + 431, + 188.99999999999997 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 196, + 445, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 447, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 447, + 210 + ], + "score": 1.0, + "content": "The stacked-RNN based language model described in (3) is also used in GBN-RNN.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 196, + 447, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Statistical inference: To infer GBN-RNN, we consider a hybrid of stochastic gradient MCMC", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 224, + 507, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 507, + 238 + ], + "score": 1.0, + "content": "(Welling & Teh, 2011; Patterson & Teh, 2013; Li et al., 2015; Ma et al., 2015; Cong et al., 2017a),", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 234, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 104, + 234, + 209, + 250 + ], + "score": 1.0, + "content": "used for the GBN topics", + "type": "text" + }, + { + "bbox": [ + 210, + 235, + 223, + 248 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 234, + 507, + 250 + ], + "score": 1.0, + "content": ", and auto-encoding variational inference (Kingma & Welling, 2013;", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 507, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 507, + 259 + ], + "score": 1.0, + "content": "Rezende et al., 2014), used for the parameters of both the inference network (encoder) and RNN.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 256, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 256, + 506, + 271 + ], + "score": 1.0, + "content": "More specifically, GBN-RNN generalizes Weibull hybrid auto-encoding inference (WHAI) of Zhang", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "et al. (2018): it uses a deterministic-downward-stochastic-upward inference network to encode the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 279, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 235, + 293 + ], + "score": 1.0, + "content": "bag-of-words representation of", + "type": "text" + }, + { + "bbox": [ + 235, + 280, + 243, + 290 + ], + "score": 0.8, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 279, + 394, + 293 + ], + "score": 1.0, + "content": "into the latent topic-weight variables", + "type": "text" + }, + { + "bbox": [ + 395, + 279, + 405, + 290 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 279, + 506, + 293 + ], + "score": 1.0, + "content": "across all hidden layers,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 302, + 303 + ], + "score": 1.0, + "content": "which are fed into not only GBN to reconstruct", + "type": "text" + }, + { + "bbox": [ + 303, + 291, + 310, + 300 + ], + "score": 0.76, + "content": "\\textbf { \\em d }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 290, + 506, + 303 + ], + "score": 1.0, + "content": ", but also a stacked RNN in language model, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 301, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 290, + 315 + ], + "score": 1.0, + "content": "shown in (3), to predict the word sequence in", + "type": "text" + }, + { + "bbox": [ + 290, + 303, + 309, + 313 + ], + "score": 0.88, + "content": "y _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 302, + 358, + 315 + ], + "score": 1.0, + "content": ". The topics", + "type": "text" + }, + { + "bbox": [ + 358, + 301, + 371, + 314 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 302, + 506, + 315 + ], + "score": 1.0, + "content": "can be sampled with topic-layer-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 104, + 311, + 506, + 327 + ], + "score": 1.0, + "content": "adaptive stochastic gradient Riemannian (TLASGR) MCMC, whose details can be found in Cong", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 452, + 337 + ], + "score": 1.0, + "content": "et al. (2017a); Zhang et al. (2018), omitted here for brevity. Given the sampled topics", + "type": "text" + }, + { + "bbox": [ + 452, + 324, + 465, + 336 + ], + "score": 0.9, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 324, + 505, + 337 + ], + "score": 1.0, + "content": ", the joint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 334, + 291, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 198, + 348 + ], + "score": 1.0, + "content": "marginal likelihood of", + "type": "text" + }, + { + "bbox": [ + 198, + 335, + 237, + 347 + ], + "score": 0.93, + "content": "\\{ y _ { 1 : T } , d \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 334, + 291, + 348 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 213, + 507, + 348 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 351, + 483, + 385 + ], + "lines": [ + { + "bbox": [ + 111, + 351, + 483, + 385 + ], + "spans": [ + { + "bbox": [ + 111, + 351, + 483, + 385 + ], + "score": 0.93, + "content": "p \\left( \\boldsymbol { y } _ { 1 : T } , d \\mid \\{ \\Phi ^ { l } \\} _ { l } \\right) = \\int p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T } p \\left( \\boldsymbol { y } _ { t } \\mid \\boldsymbol { y } _ { 1 : t - 1 } , \\boldsymbol { \\theta } ^ { 1 : L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\boldsymbol { \\theta } ^ { l } \\mid \\Phi ^ { l + 1 } \\boldsymbol { \\theta } ^ { l + 1 } \\right) \\right] d \\boldsymbol { \\theta } ^ { 1 : L } .", + "type": "interline_equation", + "image_path": "d62ddf2d36ec01dd8c2fb3798602cceeb233fc9734b065d075aceaf11e1cfbc9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 111, + 351, + 483, + 362.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 111, + 362.3333333333333, + 483, + 373.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 373.66666666666663, + 483, + 384.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 390, + 504, + 415 + ], + "lines": [ + { + "bbox": [ + 104, + 389, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 298, + 407 + ], + "score": 1.0, + "content": "For efficient inference, an inference network as", + "type": "text" + }, + { + "bbox": [ + 299, + 390, + 423, + 405 + ], + "score": 0.93, + "content": "\\begin{array} { r } { Q = \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } ^ { l } | \\pmb { d } , \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 389, + 506, + 407 + ], + "score": 1.0, + "content": "is used to provide a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 288, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 288, + 415 + ], + "score": 1.0, + "content": "ELBO of the log joint marginal likelihood as", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 389, + 506, + 415 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 420, + 505, + 449 + ], + "lines": [ + { + "bbox": [ + 111, + 420, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 111, + 420, + 505, + 449 + ], + "score": 0.88, + "content": "{ \\overset { , } { \\left( } { y _ { 1 : T } , d \\right) } } = \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T } \\ln p \\left( y _ { t } \\mid y _ { 1 : t - 1 } , \\theta ^ { 1 : L } \\right) \\right] - \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln { \\frac { q \\left( \\theta ^ { l } \\mid d , \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } { p \\left( \\theta ^ { l } \\mid \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } } \\right]", + "type": "interline_equation", + "image_path": "348d23660459e876227d8e29afa3ebcf458b3fe716ff9efda204c3d1abfa6549.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 111, + 420, + 505, + 429.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 111, + 429.6666666666667, + 505, + 439.33333333333337 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 111, + 439.33333333333337, + 505, + 449.00000000000006 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 506, + 515 + ], + "lines": [ + { + "bbox": [ + 104, + 455, + 508, + 474 + ], + "spans": [ + { + "bbox": [ + 104, + 455, + 283, + 474 + ], + "score": 1.0, + "content": "and the training is performed by maximizing", + "type": "text" + }, + { + "bbox": [ + 283, + 457, + 380, + 470 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { p _ { \\mathrm { d a t a } } ( y _ { 1 : T } , d ) } [ L ( y _ { 1 : T } , d ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 455, + 508, + 474 + ], + "score": 1.0, + "content": "; following Zhang et al. (2018),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 507, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 146, + 483 + ], + "score": 1.0, + "content": "we define", + "type": "text" + }, + { + "bbox": [ + 147, + 469, + 359, + 483 + ], + "score": 0.88, + "content": "q ( \\pmb { \\theta } ^ { l } \\mid d , \\pmb { \\Phi } ^ { l + 1 } , \\pmb { \\theta } ^ { l + 1 } ) = \\mathrm { W e i b u l l } ( \\pmb { k } ^ { l } + \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , \\pmb { \\lambda } ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 468, + 410, + 483 + ], + "score": 1.0, + "content": ", where both", + "type": "text" + }, + { + "bbox": [ + 410, + 469, + 421, + 480 + ], + "score": 0.87, + "content": "k ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 468, + 438, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 439, + 470, + 450, + 481 + ], + "score": 0.86, + "content": "\\lambda ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 468, + 507, + 483 + ], + "score": 1.0, + "content": "are determin-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 214, + 494 + ], + "score": 1.0, + "content": "istically transformed from", + "type": "text" + }, + { + "bbox": [ + 214, + 483, + 222, + 492 + ], + "score": 0.74, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "using neural networks. Distinct from a usual variational auto-encoder", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "whose inference network has a pure bottom-up structure, the inference network here has a determistic-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 504, + 376, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 376, + 516 + ], + "score": 1.0, + "content": "upward–stoachstic-downward ladder structure (Zhang et al., 2018).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 455, + 508, + 516 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 531, + 251, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 252, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 252, + 545 + ], + "score": 1.0, + "content": "B THE COUPLING VECTOR", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 554, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 104, + 553, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 233, + 570 + ], + "score": 1.0, + "content": "Following Lau et al. (2017), the", + "type": "text" + }, + { + "bbox": [ + 234, + 555, + 312, + 569 + ], + "score": 0.93, + "content": "\\mathbf { \\Delta } _ { \\cdot \\cdot } ^ { a _ { j , t } ^ { l } } = g ^ { l } \\left( h _ { j , t } ^ { l } , \\theta _ { j } ^ { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 553, + 506, + 570 + ], + "score": 1.0, + "content": "can be implemented with a gating unit similar to", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 565, + 259, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 259, + 579 + ], + "score": 1.0, + "content": "a GRU (Cho et al., 2014), describe as", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 553, + 506, + 579 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 581, + 402, + 653 + ], + "lines": [ + { + "bbox": [ + 210, + 581, + 402, + 653 + ], + "spans": [ + { + "bbox": [ + 210, + 581, + 402, + 653 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { z _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { z } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { z } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { z } ^ { l } \\right) } \\\\ & { r _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { r } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { r } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { r } ^ { l } \\right) } \\\\ & { \\hat { h } _ { j , t } ^ { l } = \\operatorname { t a n h } \\left( \\mathbf { W } _ { h } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { h } ^ { l } \\left( r _ { j , t } ^ { l } \\odot { h } _ { j , t } ^ { l } \\right) + \\mathbf { b } _ { h } ^ { l } \\right) } \\\\ & { a _ { j , t } ^ { l } = \\left( 1 - z _ { j , t } ^ { l } \\right) \\odot { h } _ { j , t } ^ { l } + z _ { j , t } ^ { l } \\odot \\hat { h } _ { j , t } ^ { l } } \\end{array}", + "type": "interline_equation", + "image_path": "a19b9303ca8190ac8c615aac41014e4a0ea631df5bdd37fd3f993bd6d2797890.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 210, + 581, + 402, + 595.4 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 210, + 595.4, + 402, + 609.8 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 210, + 609.8, + 402, + 624.1999999999999 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 210, + 624.1999999999999, + 402, + 638.5999999999999 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 210, + 638.5999999999999, + 402, + 652.9999999999999 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 276, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 662, + 278, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 278, + 678 + ], + "score": 1.0, + "content": "C SGMCMC FOR RGBN-RNN", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "To allow for scalable inference, we apply the topic-layer-adaptive stochastic gradient Riemannian", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "(TLASGR) MCMC algorithm described in Cong et al. (2017a); Zhang et al. (2018), which can be", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "used to sample simplex-constrained global parameters Cong et al. (2017b) in a mini-batch based", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "manner. It improves its sampling efficiency via the use of the Fisher information matrix (FIM)", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 686, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "Girolami & Calderhead (2011), with adaptive step-sizes for the latent factors and transition matrices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 90, + 508, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 90, + 441, + 109 + ], + "score": 1.0, + "content": "of different layers. In this section, we discuss how to update the global parameters", + "type": "text" + }, + { + "bbox": [ + 441, + 93, + 492, + 106 + ], + "score": 0.93, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 90, + 508, + 109 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 342, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 342, + 117 + ], + "score": 1.0, + "content": "rGBN in detail and give a complete one in Algorithm in 1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 506, + 134 + ], + "score": 1.0, + "content": "Sample the auxiliary counts: This step is about the “backward” and “upward” pass. Let us denote", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 129, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 107, + 135, + 192, + 149 + ], + "score": 0.72, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 131, + 162, + 142 + ], + "score": 1.0, + "content": "Kl", + "type": "text" + }, + { + "bbox": [ + 192, + 129, + 199, + 155 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 136, + 251, + 149 + ], + "score": 0.64, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 129, + 273, + 155 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 273, + 134, + 324, + 149 + ], + "score": 0.93, + "content": "x _ { k j } ^ { ( 1 , 1 ) } = d _ { v j }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 129, + 357, + 155 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 357, + 137, + 465, + 147 + ], + "score": 0.92, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 129, + 506, + 155 + ], + "score": 1.0, + "content": "is shown", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 146, + 425, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 227, + 160 + ], + "score": 1.0, + "content": "in (2). Working backward for", + "type": "text" + }, + { + "bbox": [ + 227, + 150, + 273, + 159 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 146, + 338, + 160 + ], + "score": 1.0, + "content": "and upward for", + "type": "text" + }, + { + "bbox": [ + 338, + 150, + 384, + 159 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 146, + 425, + 160 + ], + "score": 1.0, + "content": ", we draw", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 162, + 471, + 224 + ], + "lines": [ + { + "bbox": [ + 123, + 162, + 471, + 224 + ], + "spans": [ + { + "bbox": [ + 123, + 162, + 471, + 224 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { ( A _ { k 1 j } ^ { l } , . . . , . , A _ { k K _ { l } j } ^ { l } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { ( l , l ) } ; \\frac { \\phi _ { k 1 } ^ { l } \\theta _ { 1 j } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k k _ { l } } ^ { l } \\theta _ { k l } ^ { l } } , . . . , \\frac { \\phi _ { k K _ { l } } ^ { l } \\theta _ { K l } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k l } ^ { l } \\theta _ { k l } ^ { l } } \\right) , } \\\\ & { x _ { k j } ^ { l + 1 } \\sim \\mathrm { C R T } \\left[ A _ { \\cdot k j } ^ { l } + Z _ { \\cdot k , j + 1 } ^ { l } , \\tau _ { 0 } \\left( \\sum _ { k _ { l + 1 } = 1 } ^ { K _ { l + 1 } } \\phi _ { k k _ { l + 1 } } ^ { l + 1 } \\theta _ { k _ { l + 1 } j } ^ { l + 1 } + \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\pi _ { k k _ { 1 } } ^ { l } \\theta _ { k _ { 1 } , j - 1 } ^ { l } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "24b0837a7e013a09877465c1b7d936c3e49729d24fec23b9a6205fe734836063.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 123, + 162, + 471, + 182.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 123, + 182.66666666666666, + 471, + 203.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 123, + 203.33333333333331, + 471, + 223.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 225, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 104, + 222, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 340, + 242 + ], + "score": 1.0, + "content": "Note that via the deep structure, the latent counts xl+1kj", + "type": "text" + }, + { + "bbox": [ + 340, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "will be influenced by the effects from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 102, + 238, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 102, + 238, + 150, + 259 + ], + "score": 1.0, + "content": "both time", + "type": "text" + }, + { + "bbox": [ + 150, + 244, + 174, + 253 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 238, + 211, + 259 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 211, + 244, + 215, + 252 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 238, + 257, + 259 + ], + "score": 1.0, + "content": "and time", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 263, + 254 + ], + "score": 0.87, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 238, + 300, + 259 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 300, + 244, + 322, + 253 + ], + "score": 0.91, + "content": "{ \\it l } + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 238, + 353, + 259 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 354, + 241, + 457, + 256 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 238, + 478, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 478, + 243, + 505, + 255 + ], + "score": 0.8, + "content": "p _ { 2 } : =", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 256, + 420, + 272 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 197, + 272 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 257, + 362, + 272 + ], + "score": 1.0, + "content": ", we can sample the latent counts at layer", + "type": "text" + }, + { + "bbox": [ + 363, + 259, + 366, + 267 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 257, + 385, + 272 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 385, + 259, + 406, + 268 + ], + "score": 0.9, + "content": "{ \\it l } + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 257, + 420, + 272 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 273, + 435, + 295 + ], + "lines": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "spans": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "score": 0.91, + "content": "( x _ { k j } ^ { l + 1 , l } , x _ { k j } ^ { l + 1 , l + 1 } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { l + 1 } , p _ { 1 } / ( p _ { 1 } + p _ { 2 } ) , p _ { 2 } / ( p _ { 1 } + p _ { 2 } ) \\right) ,", + "type": "interline_equation", + "image_path": "034b6f3634a246ffdf00d9ed069105d5810e2f614b77264f87c035ec4393c70d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 165, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 165, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 165, + 308 + ], + "score": 1.0, + "content": "and then draw", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 307, + 471, + 343 + ], + "lines": [ + { + "bbox": [ + 140, + 307, + 471, + 343 + ], + "spans": [ + { + "bbox": [ + 140, + 307, + 471, + 343 + ], + "score": 0.93, + "content": "-", + "type": "interline_equation", + "image_path": "5471998221864c5cff248067a3072c69ae8138bb363c56ceaf2ac0847b5fcca2.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 140, + 307, + 471, + 319.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 140, + 319.0, + 471, + 331.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 140, + 331.0, + 471, + 343.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 267, + 369 + ], + "score": 1.0, + "content": "In rGBN, the prior and the likelihood of", + "type": "text" + }, + { + "bbox": [ + 267, + 353, + 302, + 366 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 351, + 383, + 369 + ], + "score": 1.0, + "content": "is very similar with", + "type": "text" + }, + { + "bbox": [ + 383, + 353, + 419, + 366 + ], + "score": 0.92, + "content": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 351, + 506, + 369 + ], + "score": 1.0, + "content": ", so we also apply the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 473, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 473, + 378 + ], + "score": 1.0, + "content": "TLASGR MCMC sampling algorithm on both of them conditioned on the auxiliary counts.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 104, + 379, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 264, + 397 + ], + "score": 1.0, + "content": "Sample the hierarchical components", + "type": "text" + }, + { + "bbox": [ + 264, + 381, + 300, + 395 + ], + "score": 0.88, + "content": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 379, + 322, + 397 + ], + "score": 1.0, + "content": ": For", + "type": "text" + }, + { + "bbox": [ + 322, + 381, + 334, + 394 + ], + "score": 0.88, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 379, + 353, + 397 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 354, + 382, + 360, + 392 + ], + "score": 0.58, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 379, + 492, + 397 + ], + "score": 1.0, + "content": "th column of the loading matrix", + "type": "text" + }, + { + "bbox": [ + 492, + 383, + 504, + 392 + ], + "score": 0.86, + "content": "\\Phi ^ { l }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 315, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 140, + 405 + ], + "score": 1.0, + "content": "of layer", + "type": "text" + }, + { + "bbox": [ + 140, + 394, + 144, + 403 + ], + "score": 0.78, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 393, + 315, + 405 + ], + "score": 1.0, + "content": ", its sampling can be efficiently realized as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 406, + 443, + 464 + ], + "lines": [ + { + "bbox": [ + 168, + 406, + 443, + 464 + ], + "spans": [ + { + "bbox": [ + 168, + 406, + 443, + 464 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { ( \\phi _ { k } ^ { l } ) _ { n + 1 } = [ ( \\phi _ { k } ^ { l } ) _ { n } + \\frac { \\varepsilon _ { n } } { P _ { k } ^ { l } } [ ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + \\eta _ { 0 } ^ { l } ) - ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + K _ { l - 1 } \\eta _ { 0 } ^ { l } ) ( \\phi _ { k } ^ { l } ) _ { n } ] } } \\\\ & { } & { + \\ N ( 0 , \\frac { 2 \\varepsilon _ { n } } { P _ { k } ^ { l } } [ \\mathrm { d i a g } ( \\phi _ { k } ^ { l } ) _ { n } - ( \\phi _ { k } ^ { l } ) _ { n } ( \\phi _ { k } ^ { l } ) _ { n } ^ { T } ] ) ] _ { \\angle } , } \\end{array}", + "type": "interline_equation", + "image_path": "515664226991ceaa40c20a2cc840205153846da8ec91755cea1e12689ca059f5.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 168, + 406, + 443, + 425.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 168, + 425.3333333333333, + 443, + 444.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 168, + 444.66666666666663, + 443, + 463.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 465, + 503, + 509 + ], + "lines": [ + { + "bbox": [ + 102, + 461, + 504, + 485 + ], + "spans": [ + { + "bbox": [ + 102, + 461, + 133, + 485 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 467, + 145, + 480 + ], + "score": 0.9, + "content": "P _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 461, + 300, + 485 + ], + "score": 1.0, + "content": "is calculated using the estimated FIM,", + "type": "text" + }, + { + "bbox": [ + 300, + 466, + 504, + 482 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\tilde { A } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } A _ { k _ { l } k { j } } ^ { l } , \\tilde { A } _ { : k \\cdot } ^ { l } = \\{ \\tilde { A } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { A } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 100, + 473, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 100, + 473, + 124, + 504 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 480, + 205, + 497 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\tilde { A } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { A } _ { k _ { l } j } ^ { l } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 473, + 210, + 504 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 211, + 481, + 235, + 497 + ], + "score": 0.9, + "content": "A _ { k _ { l } k j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 473, + 403, + 504 + ], + "score": 1.0, + "content": "l l comes from the augmented latent counts", + "type": "text" + }, + { + "bbox": [ + 404, + 482, + 415, + 493 + ], + "score": 0.88, + "content": "A ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 473, + 448, + 504 + ], + "score": 1.0, + "content": "in (13),", + "type": "text" + }, + { + "bbox": [ + 448, + 482, + 459, + 495 + ], + "score": 0.88, + "content": "\\eta _ { 0 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 473, + 504, + 504 + ], + "score": 1.0, + "content": "l denote the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 496, + 308, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 139, + 509 + ], + "score": 1.0, + "content": "prior of", + "type": "text" + }, + { + "bbox": [ + 140, + 496, + 152, + 509 + ], + "score": 0.89, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 496, + 173, + 509 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 173, + 497, + 189, + 509 + ], + "score": 0.87, + "content": "[ \\cdot ] _ { \\angle }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 496, + 308, + 509 + ], + "score": 1.0, + "content": "denotes a simplex constraint.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 245, + 529 + ], + "score": 1.0, + "content": "Sample the transmission matrix", + "type": "text" + }, + { + "bbox": [ + 245, + 514, + 281, + 528 + ], + "score": 0.88, + "content": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 512, + 303, + 529 + ], + "score": 1.0, + "content": ": For", + "type": "text" + }, + { + "bbox": [ + 303, + 514, + 315, + 527 + ], + "score": 0.9, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 512, + 334, + 529 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 334, + 515, + 341, + 525 + ], + "score": 0.45, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 512, + 479, + 529 + ], + "score": 1.0, + "content": "th column of the transition matrix", + "type": "text" + }, + { + "bbox": [ + 480, + 514, + 492, + 525 + ], + "score": 0.88, + "content": "\\Pi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 512, + 507, + 529 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 525, + 304, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 129, + 538 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 527, + 133, + 536 + ], + "score": 0.56, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 525, + 304, + 538 + ], + "score": 1.0, + "content": ", its sampling can be efficiently realized as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 539, + 436, + 597 + ], + "lines": [ + { + "bbox": [ + 175, + 539, + 436, + 597 + ], + "spans": [ + { + "bbox": [ + 175, + 539, + 436, + 597 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\left( \\pi _ { k } ^ { l } \\right) _ { n + 1 } = \\biggr [ \\left( \\pi _ { k } ^ { l } \\right) _ { n } + \\frac { \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { : k } ^ { l } \\right) - \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { . k } ^ { l } \\right) \\left( \\pi _ { k } ^ { l } \\right) _ { n } \\right] } \\\\ & { \\qquad + \\mathcal { N } \\left( 0 , \\frac { 2 \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\mathrm { d i a g } ( \\pi _ { k } ^ { l } ) _ { n } - ( \\pi _ { k } ^ { l } ) _ { n } ( \\pi _ { k } ^ { l } ) _ { n } ^ { T } \\right] \\right) \\biggr ] _ { \\angle } , } \\end{array}", + "type": "interline_equation", + "image_path": "514bdf702093229444d62ad827d2c3c7b0c9ecaac1de56bc2bfdb1df032a3d41.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 175, + 539, + 436, + 558.3333333333334 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 175, + 558.3333333333334, + 436, + 577.6666666666667 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 175, + 577.6666666666667, + 436, + 597.0000000000001 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 104, + 596, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 596, + 133, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 600, + 149, + 613 + ], + "score": 0.92, + "content": "M _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 596, + 303, + 617 + ], + "score": 1.0, + "content": "is calculated using the estimated FIM,", + "type": "text" + }, + { + "bbox": [ + 304, + 599, + 504, + 615 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\tilde { Z } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } Z _ { k _ { l } k _ { j } } ^ { l } , \\tilde { Z } _ { : k \\cdot } ^ { l } = \\{ \\tilde { Z } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { Z } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 101, + 609, + 509, + 632 + ], + "spans": [ + { + "bbox": [ + 101, + 609, + 123, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 613, + 202, + 630 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\tilde { Z } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { Z } _ { k _ { l } j } ^ { l } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 609, + 208, + 632 + ], + "score": 1.0, + "content": "· ,", + "type": "text" + }, + { + "bbox": [ + 209, + 614, + 232, + 629 + ], + "score": 0.79, + "content": "Z _ { k _ { l } k j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 609, + 394, + 632 + ], + "score": 1.0, + "content": "comes from the augmented latent counts", + "type": "text" + }, + { + "bbox": [ + 395, + 615, + 406, + 626 + ], + "score": 0.87, + "content": "Z ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 609, + 456, + 632 + ], + "score": 1.0, + "content": "in (16), and", + "type": "text" + }, + { + "bbox": [ + 456, + 616, + 471, + 628 + ], + "score": 0.88, + "content": "[ . ] _ { \\angle }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 609, + 509, + 632 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 628, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 209, + 643 + ], + "score": 1.0, + "content": "a simplex constraint, and", + "type": "text" + }, + { + "bbox": [ + 209, + 629, + 223, + 642 + ], + "score": 0.9, + "content": "\\eta _ { ; k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 628, + 306, + 643 + ], + "score": 1.0, + "content": "denotes the prior of", + "type": "text" + }, + { + "bbox": [ + 306, + 628, + 318, + 642 + ], + "score": 0.91, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 628, + 506, + 643 + ], + "score": 1.0, + "content": ", more details about TLASGR-MCMC for our", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 640, + 320, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 320, + 654 + ], + "score": 1.0, + "content": "proposed model can be found in Cong et al. (2017a).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 106, + 667, + 182, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 183, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 183, + 684 + ], + "score": 1.0, + "content": "D DATASETS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "We consider three publicly available corpora1. APNEWS is a collection of Associated Press news", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 702, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 505, + 715 + ], + "score": 1.0, + "content": "articles from 2009 to 2016, IMDB is a set of movie reviews collected by Maas et al. (2011), and BNC", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 119, + 721, + 353, + 732 + ], + "lines": [ + { + "bbox": [ + 120, + 720, + 353, + 733 + ], + "spans": [ + { + "bbox": [ + 120, + 720, + 353, + 733 + ], + "score": 1.0, + "content": "1https://ibm.ent.box.com/s/ls61p8ovc1y87w45oa02zink2zl7l6z4", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 95 + ], + "score": 1.0, + "content": "Girolami & Calderhead (2011), with adaptive step-sizes for the latent factors and transition matrices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 90, + 508, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 90, + 441, + 109 + ], + "score": 1.0, + "content": "of different layers. In this section, we discuss how to update the global parameters", + "type": "text" + }, + { + "bbox": [ + 441, + 93, + 492, + 106 + ], + "score": 0.93, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 90, + 508, + 109 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 342, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 342, + 117 + ], + "score": 1.0, + "content": "rGBN in detail and give a complete one in Algorithm in 1.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 82, + 508, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 506, + 134 + ], + "score": 1.0, + "content": "Sample the auxiliary counts: This step is about the “backward” and “upward” pass. Let us denote", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 129, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 107, + 135, + 192, + 149 + ], + "score": 0.72, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 131, + 162, + 142 + ], + "score": 1.0, + "content": "Kl", + "type": "text" + }, + { + "bbox": [ + 192, + 129, + 199, + 155 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 199, + 136, + 251, + 149 + ], + "score": 0.64, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 129, + 273, + 155 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 273, + 134, + 324, + 149 + ], + "score": 0.93, + "content": "x _ { k j } ^ { ( 1 , 1 ) } = d _ { v j }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 129, + 357, + 155 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 357, + 137, + 465, + 147 + ], + "score": 0.92, + "content": "-", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 129, + 506, + 155 + ], + "score": 1.0, + "content": "is shown", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 146, + 425, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 146, + 227, + 160 + ], + "score": 1.0, + "content": "in (2). Working backward for", + "type": "text" + }, + { + "bbox": [ + 227, + 150, + 273, + 159 + ], + "score": 0.92, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 146, + 338, + 160 + ], + "score": 1.0, + "content": "and upward for", + "type": "text" + }, + { + "bbox": [ + 338, + 150, + 384, + 159 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 146, + 425, + 160 + ], + "score": 1.0, + "content": ", we draw", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 119, + 506, + 160 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 123, + 162, + 471, + 224 + ], + "lines": [ + { + "bbox": [ + 123, + 162, + 471, + 224 + ], + "spans": [ + { + "bbox": [ + 123, + 162, + 471, + 224 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { ( A _ { k 1 j } ^ { l } , . . . , . , A _ { k K _ { l } j } ^ { l } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { ( l , l ) } ; \\frac { \\phi _ { k 1 } ^ { l } \\theta _ { 1 j } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k k _ { l } } ^ { l } \\theta _ { k l } ^ { l } } , . . . , \\frac { \\phi _ { k K _ { l } } ^ { l } \\theta _ { K l } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k l } ^ { l } \\theta _ { k l } ^ { l } } \\right) , } \\\\ & { x _ { k j } ^ { l + 1 } \\sim \\mathrm { C R T } \\left[ A _ { \\cdot k j } ^ { l } + Z _ { \\cdot k , j + 1 } ^ { l } , \\tau _ { 0 } \\left( \\sum _ { k _ { l + 1 } = 1 } ^ { K _ { l + 1 } } \\phi _ { k k _ { l + 1 } } ^ { l + 1 } \\theta _ { k _ { l + 1 } j } ^ { l + 1 } + \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\pi _ { k k _ { 1 } } ^ { l } \\theta _ { k _ { 1 } , j - 1 } ^ { l } \\right) \\right] . } \\end{array}", + "type": "interline_equation", + "image_path": "24b0837a7e013a09877465c1b7d936c3e49729d24fec23b9a6205fe734836063.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 123, + 162, + 471, + 182.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 123, + 182.66666666666666, + 471, + 203.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 123, + 203.33333333333331, + 471, + 223.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 225, + 504, + 270 + ], + "lines": [ + { + "bbox": [ + 104, + 222, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 104, + 222, + 340, + 242 + ], + "score": 1.0, + "content": "Note that via the deep structure, the latent counts xl+1kj", + "type": "text" + }, + { + "bbox": [ + 340, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "will be influenced by the effects from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 102, + 238, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 102, + 238, + 150, + 259 + ], + "score": 1.0, + "content": "both time", + "type": "text" + }, + { + "bbox": [ + 150, + 244, + 174, + 253 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 238, + 211, + 259 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 211, + 244, + 215, + 252 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 238, + 257, + 259 + ], + "score": 1.0, + "content": "and time", + "type": "text" + }, + { + "bbox": [ + 258, + 244, + 263, + 254 + ], + "score": 0.87, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 238, + 300, + 259 + ], + "score": 1.0, + "content": "at layer", + "type": "text" + }, + { + "bbox": [ + 300, + 244, + 322, + 253 + ], + "score": 0.91, + "content": "{ \\it l } + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 238, + 353, + 259 + ], + "score": 1.0, + "content": ". With", + "type": "text" + }, + { + "bbox": [ + 354, + 241, + 457, + 256 + ], + "score": 0.92, + "content": "\\_", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 238, + 478, + 259 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 478, + 243, + 505, + 255 + ], + "score": 0.8, + "content": "p _ { 2 } : =", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 256, + 420, + 272 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 197, + 272 + ], + "score": 0.93, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 257, + 362, + 272 + ], + "score": 1.0, + "content": ", we can sample the latent counts at layer", + "type": "text" + }, + { + "bbox": [ + 363, + 259, + 366, + 267 + ], + "score": 0.82, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 257, + 385, + 272 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 385, + 259, + 406, + 268 + ], + "score": 0.9, + "content": "{ \\it l } + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 257, + 420, + 272 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 102, + 222, + 506, + 272 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 273, + 435, + 295 + ], + "lines": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "spans": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "score": 0.91, + "content": "( x _ { k j } ^ { l + 1 , l } , x _ { k j } ^ { l + 1 , l + 1 } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { l + 1 } , p _ { 1 } / ( p _ { 1 } + p _ { 2 } ) , p _ { 2 } / ( p _ { 1 } + p _ { 2 } ) \\right) ,", + "type": "interline_equation", + "image_path": "034b6f3634a246ffdf00d9ed069105d5810e2f614b77264f87c035ec4393c70d.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 175, + 273, + 435, + 295 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 165, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 165, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 165, + 308 + ], + "score": 1.0, + "content": "and then draw", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 296, + 165, + 308 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 307, + 471, + 343 + ], + "lines": [ + { + "bbox": [ + 140, + 307, + 471, + 343 + ], + "spans": [ + { + "bbox": [ + 140, + 307, + 471, + 343 + ], + "score": 0.93, + "content": "-", + "type": "interline_equation", + "image_path": "5471998221864c5cff248067a3072c69ae8138bb363c56ceaf2ac0847b5fcca2.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 140, + 307, + 471, + 319.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 140, + 319.0, + 471, + 331.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 140, + 331.0, + 471, + 343.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 352, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 267, + 369 + ], + "score": 1.0, + "content": "In rGBN, the prior and the likelihood of", + "type": "text" + }, + { + "bbox": [ + 267, + 353, + 302, + 366 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 351, + 383, + 369 + ], + "score": 1.0, + "content": "is very similar with", + "type": "text" + }, + { + "bbox": [ + 383, + 353, + 419, + 366 + ], + "score": 0.92, + "content": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 351, + 506, + 369 + ], + "score": 1.0, + "content": ", so we also apply the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 364, + 473, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 473, + 378 + ], + "score": 1.0, + "content": "TLASGR MCMC sampling algorithm on both of them conditioned on the auxiliary counts.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 351, + 506, + 378 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 503, + 405 + ], + "lines": [ + { + "bbox": [ + 104, + 379, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 104, + 379, + 264, + 397 + ], + "score": 1.0, + "content": "Sample the hierarchical components", + "type": "text" + }, + { + "bbox": [ + 264, + 381, + 300, + 395 + ], + "score": 0.88, + "content": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 379, + 322, + 397 + ], + "score": 1.0, + "content": ": For", + "type": "text" + }, + { + "bbox": [ + 322, + 381, + 334, + 394 + ], + "score": 0.88, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 379, + 353, + 397 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 354, + 382, + 360, + 392 + ], + "score": 0.58, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 379, + 492, + 397 + ], + "score": 1.0, + "content": "th column of the loading matrix", + "type": "text" + }, + { + "bbox": [ + 492, + 383, + 504, + 392 + ], + "score": 0.86, + "content": "\\Phi ^ { l }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 393, + 315, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 140, + 405 + ], + "score": 1.0, + "content": "of layer", + "type": "text" + }, + { + "bbox": [ + 140, + 394, + 144, + 403 + ], + "score": 0.78, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 393, + 315, + 405 + ], + "score": 1.0, + "content": ", its sampling can be efficiently realized as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 379, + 504, + 405 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 406, + 443, + 464 + ], + "lines": [ + { + "bbox": [ + 168, + 406, + 443, + 464 + ], + "spans": [ + { + "bbox": [ + 168, + 406, + 443, + 464 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { ( \\phi _ { k } ^ { l } ) _ { n + 1 } = [ ( \\phi _ { k } ^ { l } ) _ { n } + \\frac { \\varepsilon _ { n } } { P _ { k } ^ { l } } [ ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + \\eta _ { 0 } ^ { l } ) - ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + K _ { l - 1 } \\eta _ { 0 } ^ { l } ) ( \\phi _ { k } ^ { l } ) _ { n } ] } } \\\\ & { } & { + \\ N ( 0 , \\frac { 2 \\varepsilon _ { n } } { P _ { k } ^ { l } } [ \\mathrm { d i a g } ( \\phi _ { k } ^ { l } ) _ { n } - ( \\phi _ { k } ^ { l } ) _ { n } ( \\phi _ { k } ^ { l } ) _ { n } ^ { T } ] ) ] _ { \\angle } , } \\end{array}", + "type": "interline_equation", + "image_path": "515664226991ceaa40c20a2cc840205153846da8ec91755cea1e12689ca059f5.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 168, + 406, + 443, + 425.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 168, + 425.3333333333333, + 443, + 444.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 168, + 444.66666666666663, + 443, + 463.99999999999994 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 465, + 503, + 509 + ], + "lines": [ + { + "bbox": [ + 102, + 461, + 504, + 485 + ], + "spans": [ + { + "bbox": [ + 102, + 461, + 133, + 485 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 467, + 145, + 480 + ], + "score": 0.9, + "content": "P _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 461, + 300, + 485 + ], + "score": 1.0, + "content": "is calculated using the estimated FIM,", + "type": "text" + }, + { + "bbox": [ + 300, + 466, + 504, + 482 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\tilde { A } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } A _ { k _ { l } k { j } } ^ { l } , \\tilde { A } _ { : k \\cdot } ^ { l } = \\{ \\tilde { A } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { A } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 100, + 473, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 100, + 473, + 124, + 504 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 480, + 205, + 497 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\tilde { A } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { A } _ { k _ { l } j } ^ { l } . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 473, + 210, + 504 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 211, + 481, + 235, + 497 + ], + "score": 0.9, + "content": "A _ { k _ { l } k j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 473, + 403, + 504 + ], + "score": 1.0, + "content": "l l comes from the augmented latent counts", + "type": "text" + }, + { + "bbox": [ + 404, + 482, + 415, + 493 + ], + "score": 0.88, + "content": "A ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 473, + 448, + 504 + ], + "score": 1.0, + "content": "in (13),", + "type": "text" + }, + { + "bbox": [ + 448, + 482, + 459, + 495 + ], + "score": 0.88, + "content": "\\eta _ { 0 } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 473, + 504, + 504 + ], + "score": 1.0, + "content": "l denote the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 496, + 308, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 139, + 509 + ], + "score": 1.0, + "content": "prior of", + "type": "text" + }, + { + "bbox": [ + 140, + 496, + 152, + 509 + ], + "score": 0.89, + "content": "\\phi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 496, + 173, + 509 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 173, + 497, + 189, + 509 + ], + "score": 0.87, + "content": "[ \\cdot ] _ { \\angle }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 496, + 308, + 509 + ], + "score": 1.0, + "content": "denotes a simplex constraint.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 100, + 461, + 504, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 245, + 529 + ], + "score": 1.0, + "content": "Sample the transmission matrix", + "type": "text" + }, + { + "bbox": [ + 245, + 514, + 281, + 528 + ], + "score": 0.88, + "content": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 512, + 303, + 529 + ], + "score": 1.0, + "content": ": For", + "type": "text" + }, + { + "bbox": [ + 303, + 514, + 315, + 527 + ], + "score": 0.9, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 512, + 334, + 529 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 334, + 515, + 341, + 525 + ], + "score": 0.45, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 512, + 479, + 529 + ], + "score": 1.0, + "content": "th column of the transition matrix", + "type": "text" + }, + { + "bbox": [ + 480, + 514, + 492, + 525 + ], + "score": 0.88, + "content": "\\Pi ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 512, + 507, + 529 + ], + "score": 1.0, + "content": "of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 525, + 304, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 129, + 538 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 527, + 133, + 536 + ], + "score": 0.56, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 525, + 304, + 538 + ], + "score": 1.0, + "content": ", its sampling can be efficiently realized as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 512, + 507, + 538 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 539, + 436, + 597 + ], + "lines": [ + { + "bbox": [ + 175, + 539, + 436, + 597 + ], + "spans": [ + { + "bbox": [ + 175, + 539, + 436, + 597 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\left( \\pi _ { k } ^ { l } \\right) _ { n + 1 } = \\biggr [ \\left( \\pi _ { k } ^ { l } \\right) _ { n } + \\frac { \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { : k } ^ { l } \\right) - \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { . k } ^ { l } \\right) \\left( \\pi _ { k } ^ { l } \\right) _ { n } \\right] } \\\\ & { \\qquad + \\mathcal { N } \\left( 0 , \\frac { 2 \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\mathrm { d i a g } ( \\pi _ { k } ^ { l } ) _ { n } - ( \\pi _ { k } ^ { l } ) _ { n } ( \\pi _ { k } ^ { l } ) _ { n } ^ { T } \\right] \\right) \\biggr ] _ { \\angle } , } \\end{array}", + "type": "interline_equation", + "image_path": "514bdf702093229444d62ad827d2c3c7b0c9ecaac1de56bc2bfdb1df032a3d41.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 175, + 539, + 436, + 558.3333333333334 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 175, + 558.3333333333334, + 436, + 577.6666666666667 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 175, + 577.6666666666667, + 436, + 597.0000000000001 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 598, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 104, + 596, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 596, + 133, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 600, + 149, + 613 + ], + "score": 0.92, + "content": "M _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 596, + 303, + 617 + ], + "score": 1.0, + "content": "is calculated using the estimated FIM,", + "type": "text" + }, + { + "bbox": [ + 304, + 599, + 504, + 615 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\tilde { Z } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } Z _ { k _ { l } k _ { j } } ^ { l } , \\tilde { Z } _ { : k \\cdot } ^ { l } = \\{ \\tilde { Z } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { Z } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 101, + 609, + 509, + 632 + ], + "spans": [ + { + "bbox": [ + 101, + 609, + 123, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 613, + 202, + 630 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\tilde { Z } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { Z } _ { k _ { l } j } ^ { l } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 609, + 208, + 632 + ], + "score": 1.0, + "content": "· ,", + "type": "text" + }, + { + "bbox": [ + 209, + 614, + 232, + 629 + ], + "score": 0.79, + "content": "Z _ { k _ { l } k j } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 609, + 394, + 632 + ], + "score": 1.0, + "content": "comes from the augmented latent counts", + "type": "text" + }, + { + "bbox": [ + 395, + 615, + 406, + 626 + ], + "score": 0.87, + "content": "Z ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 609, + 456, + 632 + ], + "score": 1.0, + "content": "in (16), and", + "type": "text" + }, + { + "bbox": [ + 456, + 616, + 471, + 628 + ], + "score": 0.88, + "content": "[ . ] _ { \\angle }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 609, + 509, + 632 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 628, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 209, + 643 + ], + "score": 1.0, + "content": "a simplex constraint, and", + "type": "text" + }, + { + "bbox": [ + 209, + 629, + 223, + 642 + ], + "score": 0.9, + "content": "\\eta _ { ; k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 628, + 306, + 643 + ], + "score": 1.0, + "content": "denotes the prior of", + "type": "text" + }, + { + "bbox": [ + 306, + 628, + 318, + 642 + ], + "score": 0.91, + "content": "\\pi _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 628, + 506, + 643 + ], + "score": 1.0, + "content": ", more details about TLASGR-MCMC for our", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 640, + 320, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 320, + 654 + ], + "score": 1.0, + "content": "proposed model can be found in Cong et al. (2017a).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 101, + 596, + 509, + 654 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 667, + 182, + 680 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 183, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 183, + 684 + ], + "score": 1.0, + "content": "D DATASETS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 691, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "We consider three publicly available corpora1. APNEWS is a collection of Associated Press news", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 702, + 505, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 505, + 715 + ], + "score": 1.0, + "content": "articles from 2009 to 2016, IMDB is a set of movie reviews collected by Maas et al. (2011), and BNC", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "is the written portion of the British National Corpus (Consortium, 2007). Following the preprocessing", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "steps in Lau et al. (2017), we tokenize words and sentences using Stanford CoreNLP (Klein &", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Manning, 2003), lowercase all word tokens, and filter out word tokens that occur less than 10 times.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 379, + 128 + ], + "score": 1.0, + "content": "For the topic model, we additionally exclude stopwords2 and the top", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 380, + 115, + 402, + 126 + ], + "score": 0.92, + "content": "0 . 1 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 402, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "most frequent words. All", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "these corpora are partitioned into training, validation, and testing sets, whose summary statistics are", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 256, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 256, + 150 + ], + "score": 1.0, + "content": "provided in Table 2 of the Appendix.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 691, + 505, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "is the written portion of the British National Corpus (Consortium, 2007). Following the preprocessing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "steps in Lau et al. (2017), we tokenize words and sentences using Stanford CoreNLP (Klein &", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Manning, 2003), lowercase all word tokens, and filter out word tokens that occur less than 10 times.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 379, + 128 + ], + "score": 1.0, + "content": "For the topic model, we additionally exclude stopwords2 and the top", + "type": "text" + }, + { + "bbox": [ + 380, + 115, + 402, + 126 + ], + "score": 0.92, + "content": "0 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "most frequent words. All", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "these corpora are partitioned into training, validation, and testing sets, whose summary statistics are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 256, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 256, + 150 + ], + "score": 1.0, + "content": "provided in Table 2 of the Appendix.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 108, + 180, + 503, + 243 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 169, + 387, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 223, + 167, + 388, + 181 + ], + "spans": [ + { + "bbox": [ + 223, + 167, + 388, + 181 + ], + "score": 1.0, + "content": "Table 2: Summary statistics for the datasets.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table_body", + "bbox": [ + 108, + 180, + 503, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 180, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 108, + 180, + 503, + 243 + ], + "score": 0.978, + "html": "
DatasetVocubalryTrainingValidationTesting
LMTMDocsSentsTokensDocsSentsTokensDocsSentsTokens
APNEWS342313216950K0.8M15M2K33K0.6M2K32K0.6M
IMDB360093492575K1.1M20M12.5K0.18M0.3M12.5K0.18M0.3M
BNC437034155215K1M18M1K57K1M1K66K1M
", + "type": "table", + "image_path": "18adee267fb7312ee6e79eec4f085e18f2b7c8b3931f3ca78a94525be76d1202.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 108, + 180, + 503, + 201.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 201.0, + 503, + 222.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 222.0, + 503, + 243.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 281, + 290 + ], + "lines": [ + { + "bbox": [ + 107, + 278, + 282, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 279, + 118, + 289 + ], + "score": 1.0, + "content": "E", + "type": "text" + }, + { + "bbox": [ + 125, + 278, + 282, + 289 + ], + "score": 1.0, + "content": "COMPLEXITY OF RGBN-RNN", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 506, + 415 + ], + "lines": [ + { + "bbox": [ + 103, + 302, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 103, + 302, + 452, + 330 + ], + "score": 1.0, + "content": "The proposed rGBN-RNN consists of both language model and topic model compontopic model component, there are the global parameters of rGBN (decoder), including", + "type": "text" + }, + { + "bbox": [ + 452, + 313, + 504, + 326 + ], + "score": 0.89, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "in (2) , and the parameters of the variational recurrent inference network (encoder), consisting of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 334, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 107, + 337, + 144, + 349 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 334, + 149, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 149, + 338, + 159, + 349 + ], + "score": 0.9, + "content": "f _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 334, + 181, + 351 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 181, + 338, + 192, + 349 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 334, + 433, + 351 + ], + "score": 1.0, + "content": "in (8). The language model component is parameterized by", + "type": "text" + }, + { + "bbox": [ + 433, + 336, + 480, + 349 + ], + "score": 0.8, + "content": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 334, + 506, + 351 + ], + "score": 1.0, + "content": "in (3)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 209, + 361 + ], + "score": 1.0, + "content": "and the coupling vectors", + "type": "text" + }, + { + "bbox": [ + 209, + 350, + 217, + 361 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "described in Appendix B. We summarize in Table 3 the complexity of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 288, + 372 + ], + "score": 1.0, + "content": "rGBN-RNN (ignoring all bias terms), where", + "type": "text" + }, + { + "bbox": [ + 288, + 362, + 297, + 370 + ], + "score": 0.87, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "denotes the vocabulary size of the language model,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 115, + 381 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 369, + 293, + 383 + ], + "score": 1.0, + "content": "the dimension of word embedding vectors,", + "type": "text" + }, + { + "bbox": [ + 293, + 373, + 303, + 382 + ], + "score": 0.9, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "the size of the vocabulary of the topic model that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 190, + 393 + ], + "score": 1.0, + "content": "excludes stop words,", + "type": "text" + }, + { + "bbox": [ + 190, + 384, + 206, + 394 + ], + "score": 0.91, + "content": "H _ { l } ^ { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 381, + 441, + 393 + ], + "score": 1.0, + "content": "the number of hidden units of the word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 441, + 384, + 445, + 392 + ], + "score": 0.26, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "(stacked-RNN", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 180, + 405 + ], + "score": 1.0, + "content": "language model),", + "type": "text" + }, + { + "bbox": [ + 180, + 395, + 194, + 406 + ], + "score": 0.91, + "content": "H _ { l } ^ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 392, + 450, + 405 + ], + "score": 1.0, + "content": "the number of hidden units of the sentence-level RNN at layer", + "type": "text" + }, + { + "bbox": [ + 451, + 395, + 454, + 403 + ], + "score": 0.45, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "(variational", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 403, + 381, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 243, + 416 + ], + "score": 1.0, + "content": "recurrent inference network), and", + "type": "text" + }, + { + "bbox": [ + 243, + 406, + 254, + 415 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 403, + 373, + 416 + ], + "score": 1.0, + "content": "the number of topics at layer", + "type": "text" + }, + { + "bbox": [ + 374, + 406, + 377, + 414 + ], + "score": 0.53, + "content": "\\it l", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 403, + 381, + 416 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "Table 4 further compares the number of parameters between various RNN-based language models,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "where we follow the convention to ignore the word embedding layers. Some models in Table 1", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "are not included here, because we could not find sufficient information from their corresponding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "papers or code to accurately calculate the number of model parameters. Note when used for language", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 389, + 477 + ], + "score": 1.0, + "content": "generation at the testing stage, rGBN-RNN no longer needs its topics", + "type": "text" + }, + { + "bbox": [ + 389, + 465, + 411, + 477 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ", whose parameters are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "hence not counted. Note the number of parameters of the topic model component is often dominated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 487, + 275, + 498 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 275, + 498 + ], + "score": 1.0, + "content": "by that of the language model component.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "table", + "bbox": [ + 109, + 529, + 504, + 570 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 210, + 518, + 401, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 209, + 517, + 401, + 530 + ], + "spans": [ + { + "bbox": [ + 209, + 517, + 401, + 530 + ], + "score": 1.0, + "content": "Table 3: Complexity of the three-layer rGBN-RNN.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 109, + 529, + 504, + 570 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 529, + 504, + 570 + ], + "spans": [ + { + "bbox": [ + 109, + 529, + 504, + 570 + ], + "score": 0.967, + "html": "
Component ParamLanguage ModelTopic Model
LSTMword in (3)glinBΦin (2)II in (2)RNNsent in (8)f in (8)f in (8)
Layer1O(4×(E+H) ×H")O(3×(K1+H)×H1)O(Vc × K1)O(K1 × K1)O(Vc+H𝑖) × HiO(Hi)O(K1 x Hi)
Layer2O(4×(H+H)×H²)O(3 × (K2+H) × H)O(K1 × K2)O(K2 ×K2)O((Hi +H²)×H)O(H)O(K2 ×H)
Layer3O(4×(H+H)×H))1O(3×(K3+H)×H)[O(K2×K3)|O(K3 × K3)|O(H+H) × H)O(H)O(K ×H)
", + "type": "table", + "image_path": "fb844f74783ed6a0142b19fcb2b44dd86d4b39aa368fe50b4566bca16a3d30c2.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 109, + 529, + 504, + 542.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 109, + 542.6666666666666, + 504, + 556.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 109, + 556.3333333333333, + 504, + 569.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "table", + "bbox": [ + 136, + 595, + 475, + 690 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 584, + 497, + 594 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 111, + 582, + 498, + 596 + ], + "spans": [ + { + "bbox": [ + 111, + 582, + 498, + 596 + ], + "score": 1.0, + "content": "Table 4: Comparison of the number of parameters of different models when used for language generation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "table_body", + "bbox": [ + 136, + 595, + 475, + 690 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 136, + 595, + 475, + 690 + ], + "spans": [ + { + "bbox": [ + 136, + 595, + 475, + 690 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic Size# LM Param#TMParam# All Param
TDLM (Lau et al., 2017)600 900-900100 1003.35M 13.38M0.019M 0.019M3.37M 13.40M
basic-LSTM (Hochreiter & Schmidhuber,1997)600 900-900 900-900-9002.16M 10.80M 17.68M2.16M 10.80M 17.68M
GBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.02M 0.04M 0.05M3.42M 6.54M 7.25M
rGBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.03M 0.06M 0.07M3.43M 6.56M 7.27M
", + "type": "table", + "image_path": "6c2ef31ccb7eb9bd791bd9db8ab0599d4471f6ce7e3c3d1b3b555b5d9ab523d5.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 595, + 475, + 626.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 626.6666666666666, + 475, + 658.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 658.3333333333333, + 475, + 689.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 32.0 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 118, + 721, + 432, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 432, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 432, + 734 + ], + "score": 1.0, + "content": "2We use Mallet’s stopword list: https://github.com/mimno/Mallet/tree/master/stoplists.", + "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 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 104, + 80, + 506, + 150 + ], + "lines_deleted": true + }, + { + "type": "table", + "bbox": [ + 108, + 180, + 503, + 243 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 224, + 169, + 387, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 223, + 167, + 388, + 181 + ], + "spans": [ + { + "bbox": [ + 223, + 167, + 388, + 181 + ], + "score": 1.0, + "content": "Table 2: Summary statistics for the datasets.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "table_body", + "bbox": [ + 108, + 180, + 503, + 243 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 180, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 108, + 180, + 503, + 243 + ], + "score": 0.978, + "html": "
DatasetVocubalryTrainingValidationTesting
LMTMDocsSentsTokensDocsSentsTokensDocsSentsTokens
APNEWS342313216950K0.8M15M2K33K0.6M2K32K0.6M
IMDB360093492575K1.1M20M12.5K0.18M0.3M12.5K0.18M0.3M
BNC437034155215K1M18M1K57K1M1K66K1M
", + "type": "table", + "image_path": "18adee267fb7312ee6e79eec4f085e18f2b7c8b3931f3ca78a94525be76d1202.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 108, + 180, + 503, + 201.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 201.0, + 503, + 222.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 108, + 222.0, + 503, + 243.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "title", + "bbox": [ + 108, + 277, + 281, + 290 + ], + "lines": [ + { + "bbox": [ + 107, + 278, + 282, + 289 + ], + "spans": [ + { + "bbox": [ + 107, + 279, + 118, + 289 + ], + "score": 1.0, + "content": "E", + "type": "text" + }, + { + "bbox": [ + 125, + 278, + 282, + 289 + ], + "score": 1.0, + "content": "COMPLEXITY OF RGBN-RNN", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 506, + 415 + ], + "lines": [ + { + "bbox": [ + 103, + 302, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 103, + 302, + 452, + 330 + ], + "score": 1.0, + "content": "The proposed rGBN-RNN consists of both language model and topic model compontopic model component, there are the global parameters of rGBN (decoder), including", + "type": "text" + }, + { + "bbox": [ + 452, + 313, + 504, + 326 + ], + "score": 0.89, + "content": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "in (2) , and the parameters of the variational recurrent inference network (encoder), consisting of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 334, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 107, + 337, + 144, + 349 + ], + "score": 0.87, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 334, + 149, + 351 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 149, + 338, + 159, + 349 + ], + "score": 0.9, + "content": "f _ { k } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 334, + 181, + 351 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 181, + 338, + 192, + 349 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 334, + 433, + 351 + ], + "score": 1.0, + "content": "in (8). The language model component is parameterized by", + "type": "text" + }, + { + "bbox": [ + 433, + 336, + 480, + 349 + ], + "score": 0.8, + "content": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 334, + 506, + 351 + ], + "score": 1.0, + "content": "in (3)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 209, + 361 + ], + "score": 1.0, + "content": "and the coupling vectors", + "type": "text" + }, + { + "bbox": [ + 209, + 350, + 217, + 361 + ], + "score": 0.89, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "described in Appendix B. We summarize in Table 3 the complexity of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 288, + 372 + ], + "score": 1.0, + "content": "rGBN-RNN (ignoring all bias terms), where", + "type": "text" + }, + { + "bbox": [ + 288, + 362, + 297, + 370 + ], + "score": 0.87, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "denotes the vocabulary size of the language model,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 115, + 381 + ], + "score": 0.83, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 369, + 293, + 383 + ], + "score": 1.0, + "content": "the dimension of word embedding vectors,", + "type": "text" + }, + { + "bbox": [ + 293, + 373, + 303, + 382 + ], + "score": 0.9, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "the size of the vocabulary of the topic model that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 190, + 393 + ], + "score": 1.0, + "content": "excludes stop words,", + "type": "text" + }, + { + "bbox": [ + 190, + 384, + 206, + 394 + ], + "score": 0.91, + "content": "H _ { l } ^ { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 381, + 441, + 393 + ], + "score": 1.0, + "content": "the number of hidden units of the word-level LSTM at layer", + "type": "text" + }, + { + "bbox": [ + 441, + 384, + 445, + 392 + ], + "score": 0.26, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "(stacked-RNN", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 180, + 405 + ], + "score": 1.0, + "content": "language model),", + "type": "text" + }, + { + "bbox": [ + 180, + 395, + 194, + 406 + ], + "score": 0.91, + "content": "H _ { l } ^ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 392, + 450, + 405 + ], + "score": 1.0, + "content": "the number of hidden units of the sentence-level RNN at layer", + "type": "text" + }, + { + "bbox": [ + 451, + 395, + 454, + 403 + ], + "score": 0.45, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "(variational", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 403, + 381, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 243, + 416 + ], + "score": 1.0, + "content": "recurrent inference network), and", + "type": "text" + }, + { + "bbox": [ + 243, + 406, + 254, + 415 + ], + "score": 0.91, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 403, + 373, + 416 + ], + "score": 1.0, + "content": "the number of topics at layer", + "type": "text" + }, + { + "bbox": [ + 374, + 406, + 377, + 414 + ], + "score": 0.53, + "content": "\\it l", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 403, + 381, + 416 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15, + "bbox_fs": [ + 103, + 302, + 506, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 433 + ], + "score": 1.0, + "content": "Table 4 further compares the number of parameters between various RNN-based language models,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "where we follow the convention to ignore the word embedding layers. Some models in Table 1", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "are not included here, because we could not find sufficient information from their corresponding", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 467 + ], + "score": 1.0, + "content": "papers or code to accurately calculate the number of model parameters. Note when used for language", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 389, + 477 + ], + "score": 1.0, + "content": "generation at the testing stage, rGBN-RNN no longer needs its topics", + "type": "text" + }, + { + "bbox": [ + 389, + 465, + 411, + 477 + ], + "score": 0.92, + "content": "\\{ \\Phi ^ { l } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ", whose parameters are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "hence not counted. Note the number of parameters of the topic model component is often dominated", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 487, + 275, + 498 + ], + "spans": [ + { + "bbox": [ + 107, + 487, + 275, + 498 + ], + "score": 1.0, + "content": "by that of the language model component.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 419, + 506, + 498 + ] + }, + { + "type": "table", + "bbox": [ + 109, + 529, + 504, + 570 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 210, + 518, + 401, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 209, + 517, + 401, + 530 + ], + "spans": [ + { + "bbox": [ + 209, + 517, + 401, + 530 + ], + "score": 1.0, + "content": "Table 3: Complexity of the three-layer rGBN-RNN.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 109, + 529, + 504, + 570 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 529, + 504, + 570 + ], + "spans": [ + { + "bbox": [ + 109, + 529, + 504, + 570 + ], + "score": 0.967, + "html": "
Component ParamLanguage ModelTopic Model
LSTMword in (3)glinBΦin (2)II in (2)RNNsent in (8)f in (8)f in (8)
Layer1O(4×(E+H) ×H")O(3×(K1+H)×H1)O(Vc × K1)O(K1 × K1)O(Vc+H𝑖) × HiO(Hi)O(K1 x Hi)
Layer2O(4×(H+H)×H²)O(3 × (K2+H) × H)O(K1 × K2)O(K2 ×K2)O((Hi +H²)×H)O(H)O(K2 ×H)
Layer3O(4×(H+H)×H))1O(3×(K3+H)×H)[O(K2×K3)|O(K3 × K3)|O(H+H) × H)O(H)O(K ×H)
", + "type": "table", + "image_path": "fb844f74783ed6a0142b19fcb2b44dd86d4b39aa368fe50b4566bca16a3d30c2.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 109, + 529, + 504, + 542.6666666666666 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 109, + 542.6666666666666, + 504, + 556.3333333333333 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 109, + 556.3333333333333, + 504, + 569.9999999999999 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "table", + "bbox": [ + 136, + 595, + 475, + 690 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 584, + 497, + 594 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 111, + 582, + 498, + 596 + ], + "spans": [ + { + "bbox": [ + 111, + 582, + 498, + 596 + ], + "score": 1.0, + "content": "Table 4: Comparison of the number of parameters of different models when used for language generation.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "table_body", + "bbox": [ + 136, + 595, + 475, + 690 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 136, + 595, + 475, + 690 + ], + "spans": [ + { + "bbox": [ + 136, + 595, + 475, + 690 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic Size# LM Param#TMParam# All Param
TDLM (Lau et al., 2017)600 900-900100 1003.35M 13.38M0.019M 0.019M3.37M 13.40M
basic-LSTM (Hochreiter & Schmidhuber,1997)600 900-900 900-900-9002.16M 10.80M 17.68M2.16M 10.80M 17.68M
GBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.02M 0.04M 0.05M3.42M 6.54M 7.25M
rGBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.03M 0.06M 0.07M3.43M 6.56M 7.27M
", + "type": "table", + "image_path": "6c2ef31ccb7eb9bd791bd9db8ab0599d4471f6ce7e3c3d1b3b555b5d9ab523d5.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 136, + 595, + 475, + 626.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 136, + 626.6666666666666, + 475, + 658.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 136, + 658.3333333333333, + 475, + 689.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 32.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 111, + 474, + 336 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 111, + 474, + 336 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 111, + 474, + 336 + ], + "spans": [ + { + "bbox": [ + 134, + 111, + 474, + 336 + ], + "score": 0.976, + "type": "image", + "image_path": "d0f732dcd06494584cd25d57050fc337f309e1ed610f269575fe293a28ccb69d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 134, + 111, + 474, + 186.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 186.0, + 474, + 261.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 261.0, + 474, + 336.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 344, + 505, + 399 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "Figure 6: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the IMDB", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 386, + 156, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 156, + 401 + ], + "score": 1.0, + "content": "of the figure.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 135, + 425, + 474, + 652 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 425, + 474, + 652 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 135, + 425, + 474, + 652 + ], + "spans": [ + { + "bbox": [ + 135, + 425, + 474, + 652 + ], + "score": 0.975, + "type": "image", + "image_path": "e51953d8d5fc18d93d196deb64d7eedba8a7e6e6e2a96d75c4b704e3b727ab13.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 135, + 425, + 474, + 500.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 135, + 500.6666666666667, + 474, + 576.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 135, + 576.3333333333334, + 474, + 652.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 659, + 505, + 710 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Figure 7: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the BNC", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 679, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 691 + ], + "score": 1.0, + "content": "are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 698, + 156, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 156, + 712 + ], + "score": 1.0, + "content": "of the figure.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + } + ], + "index": 11.0 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 81, + 399, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 399, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 399, + 95 + ], + "score": 1.0, + "content": "F MORE EXPERIMENTAL RESULTS ON IMDB AND BNC", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 111, + 474, + 336 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 111, + 474, + 336 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 111, + 474, + 336 + ], + "spans": [ + { + "bbox": [ + 134, + 111, + 474, + 336 + ], + "score": 0.976, + "type": "image", + "image_path": "d0f732dcd06494584cd25d57050fc337f309e1ed610f269575fe293a28ccb69d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 134, + 111, + 474, + 186.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 186.0, + 474, + 261.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 261.0, + 474, + 336.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 344, + 505, + 399 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "Figure 6: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the IMDB", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 377 + ], + "score": 1.0, + "content": "are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 386, + 156, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 156, + 401 + ], + "score": 1.0, + "content": "of the figure.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "image", + "bbox": [ + 135, + 425, + 474, + 652 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 425, + 474, + 652 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 135, + 425, + 474, + 652 + ], + "spans": [ + { + "bbox": [ + 135, + 425, + 474, + 652 + ], + "score": 0.975, + "type": "image", + "image_path": "e51953d8d5fc18d93d196deb64d7eedba8a7e6e6e2a96d75c4b704e3b727ab13.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 135, + 425, + 474, + 500.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 135, + 500.6666666666667, + 474, + 576.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 135, + 576.3333333333334, + 474, + 652.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 659, + 505, + 710 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Figure 7: Topics and their temporal trajectories inferred by a three-hidden-layer rGBN-RNN from the BNC", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "dataset, and the generated sentences under topic guidance (best viewed in color). Top words of each topic", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 679, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 506, + 691 + ], + "score": 1.0, + "content": "are shown in orange, yellow and blue box, and each sentence is shown in a dotted line box labeled with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "corresponding topic index. Sentences generated with a combination of topics in different layers are at the bottom", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 698, + 156, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 156, + 712 + ], + "score": 1.0, + "content": "of the figure.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + } + ], + "index": 11.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 122, + 479, + 237 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 122, + 479, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 122, + 479, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 479, + 237 + ], + "score": 0.961, + "type": "image", + "image_path": "55b975ca0a44ac5eea39ae50f5a4b8d259eecdc7e16870f52516b9082a795520.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 122, + 479, + 160.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 160.33333333333334, + 479, + 198.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 198.66666666666669, + 479, + 237.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 241, + 506, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 309, + 253 + ], + "score": 1.0, + "content": "Figure 8: BLEU scores of different methods for IMDB.", + "type": "text" + }, + { + "bbox": [ + 309, + 243, + 315, + 250 + ], + "score": 0.36, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, and y-axis self-BLEU. Left", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner, where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "black point represents mean value and circles with different colors denote the elliptical surface of probability of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 270, + 235, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 235, + 283 + ], + "score": 1.0, + "content": "BLEU in a two-dimensional space.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 107, + 310, + 284, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 285, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 285, + 324 + ], + "score": 1.0, + "content": "H BLEU SCORES FOR APNEWS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 119, + 351, + 483, + 466 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 351, + 483, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 119, + 351, + 483, + 466 + ], + "spans": [ + { + "bbox": [ + 119, + 351, + 483, + 466 + ], + "score": 0.967, + "type": "image", + "image_path": "e8bbc3300e8cdcbc6089fe0c71b52e2f90f4cc90ee75d4b1dc906e44895a6eee.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 119, + 351, + 483, + 389.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 119, + 389.3333333333333, + 483, + 427.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 119, + 427.66666666666663, + 483, + 465.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 470, + 507, + 511 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 325, + 482 + ], + "score": 1.0, + "content": "Figure 9: BLEU scores of different methods for APNEWS.", + "type": "text" + }, + { + "bbox": [ + 325, + 472, + 331, + 479 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, and y-axis self-BLEU.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Left panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "score": 1.0, + "content": "where black point represents mean value and circles with different colors denote the elliptical surface of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 499, + 286, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 286, + 512 + ], + "score": 1.0, + "content": "probability of BLEU in a two-dimensional space.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 10.75 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 81, + 265, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 266, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 266, + 95 + ], + "score": 1.0, + "content": "G BLEU SCORES FOR IMDB", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 122, + 479, + 237 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 122, + 479, + 237 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 122, + 479, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 479, + 237 + ], + "score": 0.961, + "type": "image", + "image_path": "55b975ca0a44ac5eea39ae50f5a4b8d259eecdc7e16870f52516b9082a795520.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 122, + 479, + 160.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 160.33333333333334, + 479, + 198.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 198.66666666666669, + 479, + 237.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 241, + 506, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 309, + 253 + ], + "score": 1.0, + "content": "Figure 8: BLEU scores of different methods for IMDB.", + "type": "text" + }, + { + "bbox": [ + 309, + 243, + 315, + 250 + ], + "score": 0.36, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, and y-axis self-BLEU. Left", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner, where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 505, + 273 + ], + "score": 1.0, + "content": "black point represents mean value and circles with different colors denote the elliptical surface of probability of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 270, + 235, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 235, + 283 + ], + "score": 1.0, + "content": "BLEU in a two-dimensional space.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 107, + 310, + 284, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 285, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 285, + 324 + ], + "score": 1.0, + "content": "H BLEU SCORES FOR APNEWS", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 119, + 351, + 483, + 466 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 351, + 483, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 119, + 351, + 483, + 466 + ], + "spans": [ + { + "bbox": [ + 119, + 351, + 483, + 466 + ], + "score": 0.967, + "type": "image", + "image_path": "e8bbc3300e8cdcbc6089fe0c71b52e2f90f4cc90ee75d4b1dc906e44895a6eee.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 119, + 351, + 483, + 389.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 119, + 389.3333333333333, + 483, + 427.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 119, + 427.66666666666663, + 483, + 465.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 470, + 507, + 511 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 325, + 482 + ], + "score": 1.0, + "content": "Figure 9: BLEU scores of different methods for APNEWS.", + "type": "text" + }, + { + "bbox": [ + 325, + 472, + 331, + 479 + ], + "score": 0.53, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "-axis denotes test-BLEU, and y-axis self-BLEU.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Left panel is BLEU-3 and right is BLEU-4, and a better BLEU score would fall within the lower right corner,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 506, + 502 + ], + "score": 1.0, + "content": "where black point represents mean value and circles with different colors denote the elliptical surface of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 499, + 286, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 286, + 512 + ], + "score": 1.0, + "content": "probability of BLEU in a two-dimensional space.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + } + ], + "index": 10.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Byl1W1rtvH/Byl1W1rtvH_model.json b/parse/train/Byl1W1rtvH/Byl1W1rtvH_model.json new file mode 100644 index 0000000000000000000000000000000000000000..c3b1c4a2585a7b357ae327b82853438cfc75e58c --- /dev/null +++ b/parse/train/Byl1W1rtvH/Byl1W1rtvH_model.json @@ -0,0 +1,27711 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1103, + 1406, + 1103, + 1406, + 1622, + 297, + 1622 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 398, + 584, + 1304, + 584, + 1304, + 981, + 398, + 981 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1405, + 1637, + 1405, + 2033, + 298, + 2033 + ], + "score": 0.982 + }, + { + "category_id": 0, + "poly": [ + 299, + 219, + 1214, + 219, + 1214, + 324, + 299, + 324 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 680, + 377, + 680, + 438, + 313, + 438 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 302, + 1035, + 573, + 1035, + 573, + 1070, + 302, + 1070 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 773, + 518, + 927, + 518, + 927, + 553, + 773, + 553 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.73 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 217.0, + 1216.0, + 217.0, + 1216.0, + 273.0, + 293.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 272.0, + 918.0, + 272.0, + 918.0, + 326.0, + 296.0, + 326.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, + 1032.0, + 579.0, + 1032.0, + 579.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 515.0, + 934.0, + 515.0, + 934.0, + 558.0, + 768.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1103.0, + 1406.0, + 1103.0, + 1406.0, + 1136.0, + 296.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1133.0, + 1404.0, + 1133.0, + 1404.0, + 1165.0, + 296.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1163.0, + 1406.0, + 1163.0, + 1406.0, + 1197.0, + 292.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1195.0, + 1404.0, + 1195.0, + 1404.0, + 1227.0, + 295.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1222.0, + 1407.0, + 1222.0, + 1407.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1250.0, + 1407.0, + 1250.0, + 1407.0, + 1293.0, + 291.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1286.0, + 1404.0, + 1286.0, + 1404.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1407.0, + 1315.0, + 1407.0, + 1351.0, + 294.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1348.0, + 1407.0, + 1348.0, + 1407.0, + 1381.0, + 295.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1378.0, + 1403.0, + 1378.0, + 1403.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1404.0, + 1408.0, + 1404.0, + 1440.0, + 295.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1531.0, + 292.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1404.0, + 1530.0, + 1404.0, + 1562.0, + 295.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1407.0, + 1556.0, + 1407.0, + 1597.0, + 292.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1194.0, + 1584.0, + 1194.0, + 1630.0, + 294.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 584.0, + 1308.0, + 584.0, + 1308.0, + 619.0, + 394.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 617.0, + 1309.0, + 617.0, + 1309.0, + 649.0, + 393.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 646.0, + 1306.0, + 646.0, + 1306.0, + 679.0, + 394.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 676.0, + 1306.0, + 676.0, + 1306.0, + 711.0, + 393.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 705.0, + 1306.0, + 705.0, + 1306.0, + 742.0, + 393.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 737.0, + 1305.0, + 737.0, + 1305.0, + 771.0, + 393.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 770.0, + 1307.0, + 770.0, + 1307.0, + 799.0, + 395.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 798.0, + 1306.0, + 798.0, + 1306.0, + 831.0, + 393.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 829.0, + 1305.0, + 829.0, + 1305.0, + 861.0, + 393.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 859.0, + 1307.0, + 859.0, + 1307.0, + 891.0, + 394.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 889.0, + 1306.0, + 889.0, + 1306.0, + 924.0, + 394.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 921.0, + 1304.0, + 921.0, + 1304.0, + 953.0, + 394.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 951.0, + 931.0, + 951.0, + 931.0, + 985.0, + 393.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1674.0, + 293.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1666.0, + 1405.0, + 1666.0, + 1405.0, + 1705.0, + 293.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1734.0, + 293.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1764.0, + 295.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 1405.0, + 1788.0, + 1405.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1857.0, + 295.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1845.0, + 1406.0, + 1845.0, + 1406.0, + 1889.0, + 292.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1407.0, + 1911.0, + 1407.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 377.0, + 560.0, + 377.0, + 560.0, + 410.0, + 315.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 407.0, + 682.0, + 407.0, + 682.0, + 440.0, + 311.0, + 440.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 659, + 1405, + 659, + 1405, + 1148, + 297, + 1148 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 398, + 1404, + 398, + 1404, + 644, + 298, + 644 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1754, + 1404, + 1754, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1256, + 1404, + 1256, + 1404, + 1455, + 297, + 1455 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1585, + 1403, + 1585, + 1403, + 1740, + 298, + 1740 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 384, + 298, + 384 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 518, + 1463, + 1179, + 1463, + 1179, + 1503, + 518, + 1503 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 297, + 1509, + 1412, + 1509, + 1412, + 1572, + 297, + 1572 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 303, + 1193, + 1247, + 1193, + 1247, + 1227, + 303, + 1227 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1467, + 1399, + 1467, + 1399, + 1497, + 1366, + 1497 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.707 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.207 + }, + { + "category_id": 13, + "poly": [ + 675, + 1937, + 791, + 1937, + 791, + 1976, + 675, + 1976 + ], + "score": 0.93, + "latex": "\\bar { d } _ { j } \\in \\mathbb { Z } _ { + } ^ { V _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 722, + 1259, + 972, + 1259, + 972, + 1292, + 722, + 1292 + ], + "score": 0.92, + "latex": "\\mathcal { D } = ( S _ { 1 } , S _ { 2 } , \\ldots , S _ { J } )" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1259, + 1304, + 1259, + 1304, + 1295, + 1058, + 1295 + ], + "score": 0.92, + "latex": "S _ { j } = ( y _ { j , 1 } , \\ldots , y _ { j , T _ { j } } )" + }, + { + "category_id": 13, + "poly": [ + 370, + 1509, + 418, + 1509, + 418, + 1543, + 370, + 1543 + ], + "score": 0.91, + "latex": "f ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 473, + 1426, + 532, + 1426, + 532, + 1456, + 473, + 1456 + ], + "score": 0.9, + "latex": "y _ { j , < t }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1423, + 1363, + 1423, + 1363, + 1456, + 1316, + 1456 + ], + "score": 0.9, + "latex": "h _ { j , t }" + }, + { + "category_id": 13, + "poly": [ + 654, + 1350, + 1327, + 1350, + 1327, + 1396, + 654, + 1396 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { P ( \\mathcal { D } ) \\approx \\prod _ { j = 1 } ^ { J } \\bar { P } \\left( S _ { j } \\right) = \\prod _ { j = 1 } ^ { J } \\prod _ { t = 2 } ^ { T _ { j } } p \\left( y _ { j , t } \\vert y _ { j , < t } \\right) p \\left( y _ { j , 1 } \\right) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 519, + 1462, + 1177, + 1462, + 1177, + 1502, + 519, + 1502 + ], + "score": 0.9, + "latex": "p \\left( y _ { j , t } \\mid y _ { j , < t } \\right) = p \\left( y _ { j , t } \\mid h _ { j , t } \\right) , \\quad h _ { j , t } = f \\left( h _ { j , < t } , y _ { j , t - 1 } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 1205, + 1397, + 1248, + 1397, + 1248, + 1426, + 1205, + 1426 + ], + "score": 0.89, + "latex": "y _ { j , t }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1423, + 787, + 1423, + 787, + 1456, + 756, + 1456 + ], + "score": 0.89, + "latex": "S _ { j }" + }, + { + "category_id": 13, + "poly": [ + 328, + 1291, + 358, + 1291, + 358, + 1325, + 328, + 1325 + ], + "score": 0.88, + "latex": "T _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1943, + 1256, + 1943, + 1256, + 1976, + 1225, + 1976 + ], + "score": 0.88, + "latex": "S _ { j }" + }, + { + "category_id": 13, + "poly": [ + 945, + 1974, + 975, + 1974, + 975, + 2003, + 945, + 2003 + ], + "score": 0.87, + "latex": "V _ { c }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1976, + 599, + 1976, + 599, + 2006, + 296, + 2006 + ], + "score": 0.86, + "latex": "( S _ { 1 } , . . . , S _ { j - 1 } , S _ { j + 1 } , . . . , S _ { J } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1941, + 580, + 1941, + 580, + 1975, + 296, + 1975 + ], + "score": 0.85, + "latex": "( \\{ S _ { 1 } , d _ { 1 } \\} , \\dots , \\{ S _ { J } , d _ { J } \\} )" + }, + { + "category_id": 13, + "poly": [ + 553, + 1261, + 574, + 1261, + 574, + 1288, + 553, + 1288 + ], + "score": 0.81, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 723, + 1292, + 748, + 1292, + 748, + 1318, + 723, + 1318 + ], + "score": 0.76, + "latex": "V" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 1254.0, + 1190.0, + 1254.0, + 1233.0, + 293.0, + 1233.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, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 696.0, + 294.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 689.0, + 1406.0, + 689.0, + 1406.0, + 724.0, + 290.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 721.0, + 1405.0, + 721.0, + 1405.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 782.0, + 1405.0, + 782.0, + 1405.0, + 816.0, + 295.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 1405.0, + 811.0, + 1405.0, + 848.0, + 294.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 910.0, + 292.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 1406.0, + 900.0, + 1406.0, + 942.0, + 292.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 932.0, + 1408.0, + 932.0, + 1408.0, + 969.0, + 291.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 964.0, + 1406.0, + 964.0, + 1406.0, + 998.0, + 295.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1031.0, + 292.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1025.0, + 1405.0, + 1025.0, + 1405.0, + 1059.0, + 295.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1056.0, + 1405.0, + 1056.0, + 1405.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1085.0, + 1408.0, + 1085.0, + 1408.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1117.0, + 1091.0, + 1117.0, + 1091.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 396.0, + 1405.0, + 396.0, + 1405.0, + 435.0, + 292.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1404.0, + 460.0, + 1404.0, + 496.0, + 293.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": [ + 292.0, + 520.0, + 1405.0, + 520.0, + 1405.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1406.0, + 552.0, + 1406.0, + 586.0, + 294.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 621.0, + 292.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 1185.0, + 614.0, + 1185.0, + 647.0, + 296.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1751.0, + 1406.0, + 1751.0, + 1406.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1405.0, + 1785.0, + 1405.0, + 1819.0, + 293.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1815.0, + 1406.0, + 1815.0, + 1406.0, + 1852.0, + 295.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1846.0, + 1405.0, + 1846.0, + 1405.0, + 1879.0, + 296.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1874.0, + 1409.0, + 1874.0, + 1409.0, + 1912.0, + 292.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1906.0, + 1406.0, + 1906.0, + 1406.0, + 1943.0, + 294.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1934.0, + 295.0, + 1934.0, + 295.0, + 1984.0, + 290.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1934.0, + 674.0, + 1934.0, + 674.0, + 1984.0, + 581.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1934.0, + 1224.0, + 1934.0, + 1224.0, + 1984.0, + 792.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1934.0, + 1407.0, + 1934.0, + 1407.0, + 1984.0, + 1257.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1968.0, + 295.0, + 1968.0, + 295.0, + 2013.0, + 291.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1968.0, + 944.0, + 1968.0, + 944.0, + 2013.0, + 600.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2013.0, + 976.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 552.0, + 1253.0, + 552.0, + 1298.0, + 292.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1253.0, + 721.0, + 1253.0, + 721.0, + 1298.0, + 575.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1253.0, + 1057.0, + 1253.0, + 1057.0, + 1298.0, + 973.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1253.0, + 1408.0, + 1253.0, + 1408.0, + 1298.0, + 1305.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1289.0, + 327.0, + 1289.0, + 327.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1289.0, + 722.0, + 1289.0, + 722.0, + 1326.0, + 359.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1289.0, + 1405.0, + 1289.0, + 1405.0, + 1326.0, + 749.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1319.0, + 1406.0, + 1319.0, + 1406.0, + 1355.0, + 294.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1347.0, + 653.0, + 1347.0, + 653.0, + 1402.0, + 290.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1347.0, + 1410.0, + 1347.0, + 1410.0, + 1402.0, + 1328.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1388.0, + 1204.0, + 1388.0, + 1204.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1428.0, + 1249.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1418.0, + 472.0, + 1418.0, + 472.0, + 1460.0, + 292.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1418.0, + 755.0, + 1418.0, + 755.0, + 1460.0, + 533.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1418.0, + 1315.0, + 1418.0, + 1315.0, + 1460.0, + 788.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1418.0, + 1407.0, + 1418.0, + 1407.0, + 1460.0, + 1364.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 1407.0, + 1583.0, + 1407.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1652.0, + 293.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1645.0, + 1404.0, + 1645.0, + 1404.0, + 1682.0, + 293.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1676.0, + 1405.0, + 1676.0, + 1405.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1706.0, + 1315.0, + 1706.0, + 1315.0, + 1745.0, + 293.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1408.0, + 291.0, + 1408.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 835.0, + 353.0, + 835.0, + 390.0, + 294.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 369.0, + 1507.0, + 369.0, + 1546.0, + 294.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1507.0, + 1404.0, + 1507.0, + 1404.0, + 1546.0, + 419.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1541.0, + 1352.0, + 1541.0, + 1352.0, + 1572.0, + 296.0, + 1572.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1496, + 1407, + 1496, + 1407, + 2036, + 295, + 2036 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 946, + 1407, + 946, + 1407, + 1133, + 297, + 1133 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 340, + 239, + 1355, + 239, + 1355, + 658, + 340, + 658 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 295, + 693, + 1406, + 693, + 1406, + 893, + 295, + 893 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 410, + 1361, + 1285, + 1361, + 1285, + 1458, + 410, + 1458 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 299, + 1262, + 1406, + 1262, + 1406, + 1328, + 299, + 1328 + ], + "score": 0.949 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1419, + 1400, + 1419, + 1400, + 1448, + 1366, + 1448 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 297, + 1196, + 874, + 1196, + 874, + 1228, + 297, + 1228 + ], + "score": 0.79 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.624 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 297, + 1196, + 874, + 1196, + 874, + 1228, + 297, + 1228 + ], + "score": 0.152 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 856, + 76, + 856, + 104, + 300, + 104 + ], + "score": 0.096 + }, + { + "category_id": 13, + "poly": [ + 694, + 1746, + 804, + 1746, + 804, + 1789, + 694, + 1789 + ], + "score": 0.93, + "latex": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1748, + 1284, + 1748, + 1284, + 1790, + 1170, + 1790 + ], + "score": 0.93, + "latex": "\\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 1614, + 1397, + 1614, + 1397, + 1648, + 1194, + 1648 + ], + "score": 0.93, + "latex": "\\pmb { \\theta } _ { 1 } ^ { L } \\sim \\mathbf { G a m } ( \\nu , \\tau _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 375, + 1494, + 501, + 1494, + 501, + 1535, + 375, + 1535 + ], + "score": 0.93, + "latex": "\\pmb { \\theta } _ { j } ^ { l } \\in \\mathbb { R } _ { + } ^ { K _ { l } }" + }, + { + "category_id": 13, + "poly": [ + 745, + 1788, + 836, + 1788, + 836, + 1827, + 745, + 1827 + ], + "score": 0.92, + "latex": "\\Pi ^ { l } \\theta _ { j - 1 } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 950, + 1615, + 1140, + 1615, + 1140, + 1647, + 950, + 1647 + ], + "score": 0.92, + "latex": "l = 1 , \\ldots , L - 1" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1070, + 1396, + 1070, + 1396, + 1105, + 1320, + 1105 + ], + "score": 0.92, + "latex": "S _ { 1 : j - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1579, + 1293, + 1579, + 1293, + 1611, + 1193, + 1611 + ], + "score": 0.91, + "latex": "\\tau _ { 0 } \\in \\mathbb { R } _ { + }" + }, + { + "category_id": 14, + "poly": [ + 411, + 1360, + 1286, + 1360, + 1286, + 1460, + 411, + 1460 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\pmb { \\theta } _ { j } ^ { L } \\sim \\mathrm { G a m } \\left( \\mathbf { \\Pi } \\mathbf { \\ } \\mathbf { \\Pi } ^ { L } \\pmb { \\theta } _ { j - 1 } ^ { L } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , \\pmb { \\theta } _ { j } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } _ { j } ^ { l + 1 } + \\mathbf { \\Pi } \\mathbf { \\Pi } ^ { l } \\pmb { \\theta } _ { j - 1 } ^ { l } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\cdots , } \\\\ & { \\pmb { \\theta } _ { j } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } _ { j } ^ { 2 } + \\mathbf { \\Pi } \\mathbf { \\ } ^ { 1 } \\pmb { \\theta } _ { j - 1 } ^ { 1 } , \\mathbf { \\Delta } \\tau _ { 0 } \\right) , \\pmb { d } _ { j } \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } _ { j } ^ { 1 } \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 1652, + 476, + 1652, + 476, + 1685, + 372, + 1685 + ], + "score": 0.91, + "latex": "\\nu = \\mathbf { 1 } _ { K _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1611, + 904, + 1611, + 904, + 1652, + 605, + 1652 + ], + "score": 0.91, + "latex": "\\pmb { \\theta } _ { 1 } ^ { l } \\sim \\mathrm { G a m } \\left( \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } _ { 1 } ^ { l + 1 } , \\tau _ { 0 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 297, + 1571, + 415, + 1571, + 415, + 1614, + 297, + 1614 + ], + "score": 0.9, + "latex": "\\mathbb { R } _ { + } ^ { K _ { l - 1 } \\times K _ { l } }" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1712, + 1192, + 1712, + 1192, + 1749, + 1160, + 1749 + ], + "score": 0.89, + "latex": "\\theta _ { j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1350, + 778, + 1377, + 778, + 1377, + 813, + 1350, + 813 + ], + "score": 0.89, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1650, + 1396, + 1650, + 1396, + 1686, + 1361, + 1686 + ], + "score": 0.89, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1152, + 1265, + 1183, + 1265, + 1183, + 1297, + 1152, + 1297 + ], + "score": 0.89, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 524, + 1071, + 555, + 1071, + 555, + 1104, + 524, + 1104 + ], + "score": 0.89, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 617, + 1714, + 648, + 1714, + 648, + 1747, + 617, + 1747 + ], + "score": 0.89, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1274, + 1650, + 1309, + 1650, + 1309, + 1686, + 1274, + 1686 + ], + "score": 0.89, + "latex": "\\pi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 1711, + 1108, + 1711, + 1108, + 1740, + 1071, + 1740 + ], + "score": 0.89, + "latex": "\\Phi ^ { \\hat { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1534, + 1406, + 1534, + 1406, + 1569, + 1340, + 1569 + ], + "score": 0.88, + "latex": "\\Phi ^ { l } \\in" + }, + { + "category_id": 13, + "poly": [ + 524, + 1614, + 591, + 1614, + 591, + 1648, + 524, + 1648 + ], + "score": 0.88, + "latex": "j = 1" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1010, + 1261, + 1010, + 1261, + 1043, + 1230, + 1043 + ], + "score": 0.88, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 639, + 1041, + 670, + 1041, + 670, + 1073, + 639, + 1073 + ], + "score": 0.88, + "latex": "S _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 754, + 1169, + 754, + 1169, + 780, + 1127, + 780 + ], + "score": 0.88, + "latex": "x _ { j , t }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1650, + 1211, + 1650, + 1211, + 1680, + 1177, + 1680 + ], + "score": 0.87, + "latex": "\\Phi ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 582, + 778, + 774, + 778, + 774, + 812, + 582, + 812 + ], + "score": 0.87, + "latex": "x _ { j , t } = y _ { j , t - 1 } , h _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 886, + 451, + 919, + 451, + 919, + 479, + 886, + 479 + ], + "score": 0.87, + "latex": "\\boldsymbol a _ { j , t } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 886, + 367, + 918, + 367, + 918, + 394, + 886, + 394 + ], + "score": 0.86, + "latex": "a _ { j , t } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1649, + 1125, + 1649, + 1125, + 1680, + 1089, + 1680 + ], + "score": 0.86, + "latex": "\\Pi ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1534, + 458, + 1534, + 458, + 1571, + 298, + 1571 + ], + "score": 0.85, + "latex": "\\mathbf { I I } ^ { l } \\in \\mathbb { R } _ { + } ^ { \\bar { K } _ { l } \\times K _ { l } }" + }, + { + "category_id": 13, + "poly": [ + 627, + 1945, + 699, + 1945, + 699, + 1971, + 627, + 1971 + ], + "score": 0.85, + "latex": "L = 1" + }, + { + "category_id": 13, + "poly": [ + 714, + 380, + 737, + 380, + 737, + 410, + 714, + 410 + ], + "score": 0.84, + "latex": "\\theta _ { j } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1263, + 1502, + 1281, + 1502, + 1281, + 1532, + 1263, + 1532 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1329, + 1265, + 1353, + 1265, + 1353, + 1291, + 1329, + 1291 + ], + "score": 0.83, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 645, + 812, + 661, + 812, + 661, + 838, + 645, + 838 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 715, + 465, + 737, + 465, + 737, + 495, + 715, + 495 + ], + "score": 0.81, + "latex": "\\theta _ { _ j } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 749, + 1579, + 784, + 1579, + 784, + 1609, + 749, + 1609 + ], + "score": 0.8, + "latex": "K _ { l }" + }, + { + "category_id": 13, + "poly": [ + 884, + 284, + 914, + 284, + 914, + 310, + 884, + 310 + ], + "score": 0.74, + "latex": "\\boldsymbol { a } _ { j , t } ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 1285, + 783, + 1298, + 783, + 1298, + 806, + 1285, + 806 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 813, + 399, + 845, + 399, + 845, + 425, + 813, + 425 + ], + "score": 0.63, + "latex": "\\mathrm { ~ \\textit ~ { ~ h ~ } ~ } _ { j , t } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 726, + 1580, + 738, + 1580, + 738, + 1606, + 726, + 1606 + ], + "score": 0.59, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 784, + 1540, + 797, + 1540, + 797, + 1566, + 784, + 1566 + ], + "score": 0.57, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 297, + 782, + 312, + 782, + 312, + 810, + 297, + 810 + ], + "score": 0.56, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1385, + 1501, + 1396, + 1501, + 1396, + 1527, + 1385, + 1527 + ], + "score": 0.54, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1580, + 1134, + 1580, + 1134, + 1607, + 1123, + 1607 + ], + "score": 0.53, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 716, + 285, + 738, + 285, + 738, + 316, + 716, + 316 + ], + "score": 0.48, + "latex": "\\theta _ { _ j } ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 728, + 778, + 773, + 778, + 773, + 812, + 728, + 812 + ], + "score": 0.46, + "latex": "h _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 742, + 813, + 754, + 813, + 754, + 834, + 742, + 834 + ], + "score": 0.43, + "latex": "l" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 278.0, + 507.0, + 278.0, + 507.0, + 309.0, + 368.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 278.0, + 657.0, + 278.0, + 657.0, + 310.0, + 517.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 268.0, + 715.0, + 268.0, + 715.0, + 326.0, + 712.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 268.0, + 752.0, + 268.0, + 752.0, + 326.0, + 739.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 276.0, + 1183.0, + 276.0, + 1183.0, + 309.0, + 1055.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 279.0, + 1352.0, + 279.0, + 1352.0, + 309.0, + 1226.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 349.0, + 429.0, + 349.0, + 429.0, + 399.0, + 371.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 350.0, + 564.0, + 350.0, + 564.0, + 398.0, + 513.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 367.0, + 613.0, + 367.0, + 613.0, + 382.0, + 583.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 366.0, + 713.0, + 366.0, + 713.0, + 418.0, + 705.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 366.0, + 750.0, + 366.0, + 750.0, + 418.0, + 738.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 311.0, + 862.0, + 311.0, + 862.0, + 366.0, + 755.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 333.0, + 902.0, + 333.0, + 902.0, + 347.0, + 886.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 341.0, + 1113.0, + 341.0, + 1113.0, + 388.0, + 1062.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 338.0, + 1284.0, + 338.0, + 1284.0, + 386.0, + 1234.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 414.0, + 431.0, + 414.0, + 431.0, + 464.0, + 372.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 415.0, + 566.0, + 415.0, + 566.0, + 462.0, + 513.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 378.0, + 812.0, + 378.0, + 812.0, + 461.0, + 755.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 378.0, + 859.0, + 378.0, + 859.0, + 461.0, + 846.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 429.0, + 897.0, + 429.0, + 897.0, + 442.0, + 881.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 374.0, + 1057.0, + 374.0, + 1057.0, + 431.0, + 971.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 378.0, + 1229.0, + 378.0, + 1229.0, + 430.0, + 1143.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 404.0, + 1281.0, + 404.0, + 1281.0, + 450.0, + 1238.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 477.0, + 427.0, + 477.0, + 427.0, + 528.0, + 372.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 480.0, + 616.0, + 480.0, + 616.0, + 527.0, + 512.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 455.0, + 714.0, + 455.0, + 714.0, + 501.0, + 708.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 455.0, + 745.0, + 455.0, + 745.0, + 501.0, + 738.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 467.0, + 813.0, + 467.0, + 813.0, + 550.0, + 785.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 436.0, + 1057.0, + 436.0, + 1057.0, + 547.0, + 971.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 471.0, + 1113.0, + 471.0, + 1113.0, + 518.0, + 1065.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 438.0, + 1228.0, + 438.0, + 1228.0, + 489.0, + 1141.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 469.0, + 1311.0, + 469.0, + 1311.0, + 549.0, + 1241.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 548.0, + 877.0, + 548.0, + 877.0, + 583.0, + 738.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 556.0, + 1010.0, + 556.0, + 1010.0, + 581.0, + 992.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 563.0, + 1088.0, + 563.0, + 1088.0, + 578.0, + 1072.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 560.0, + 1267.0, + 560.0, + 1267.0, + 584.0, + 1241.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 586.0, + 917.0, + 586.0, + 917.0, + 618.0, + 854.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 622.0, + 518.0, + 622.0, + 518.0, + 663.0, + 471.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 620.0, + 829.0, + 620.0, + 829.0, + 665.0, + 777.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 622.0, + 1174.0, + 622.0, + 1174.0, + 664.0, + 1126.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 244.5, + 884.0, + 244.5, + 884.0, + 276.0, + 855.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 274.5, + 827.0, + 274.5, + 827.0, + 307.0, + 776.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.25, + 272.0, + 931.25, + 272.0, + 931.25, + 322.0, + 866.25, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.75, + 291.0, + 857.75, + 291.0, + 857.75, + 339.0, + 790.75, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 353.5, + 936.0, + 353.5, + 936.0, + 406.5, + 866.0, + 406.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 402.5, + 1113.0, + 402.5, + 1113.0, + 457.5, + 1067.0, + 457.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 441.0, + 936.0, + 441.0, + 936.0, + 488.5, + 867.0, + 488.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 503.0, + 858.0, + 503.0, + 858.0, + 545.5, + 756.0, + 545.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 478.5, + 863.0, + 478.5, + 863.0, + 519.5, + 803.0, + 519.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.25, + 502.5, + 1224.25, + 502.5, + 1224.25, + 546.5, + 1145.25, + 546.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 541.0, + 430.0, + 541.0, + 430.0, + 588.0, + 373.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 543.0, + 558.0, + 543.0, + 558.0, + 583.5, + 520.0, + 583.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 555.0, + 1200.0, + 555.0, + 1200.0, + 590.5, + 1174.0, + 590.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.25, + 587.0, + 818.25, + 587.0, + 818.25, + 616.0, + 787.25, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 1407.0, + 693.0, + 1407.0, + 730.0, + 294.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 1404.0, + 721.0, + 1404.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 747.0, + 1126.0, + 747.0, + 1126.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 747.0, + 1404.0, + 747.0, + 1404.0, + 781.0, + 1170.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 776.0, + 296.0, + 776.0, + 296.0, + 817.0, + 292.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 776.0, + 581.0, + 776.0, + 581.0, + 817.0, + 313.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 776.0, + 1284.0, + 776.0, + 1284.0, + 817.0, + 775.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 776.0, + 1349.0, + 776.0, + 1349.0, + 817.0, + 1299.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 776.0, + 1408.0, + 776.0, + 1408.0, + 817.0, + 1378.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 644.0, + 808.0, + 644.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 808.0, + 741.0, + 808.0, + 741.0, + 841.0, + 662.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 808.0, + 1404.0, + 808.0, + 1404.0, + 841.0, + 755.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 836.0, + 1402.0, + 836.0, + 1402.0, + 865.0, + 297.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1050.0, + 861.0, + 1050.0, + 898.0, + 294.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 878.0, + 1194.0, + 878.0, + 1232.0, + 293.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1481.0, + 374.0, + 1481.0, + 374.0, + 1545.0, + 283.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1481.0, + 1262.0, + 1481.0, + 1262.0, + 1545.0, + 502.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1481.0, + 1384.0, + 1481.0, + 1384.0, + 1545.0, + 1282.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1481.0, + 1419.0, + 1481.0, + 1419.0, + 1545.0, + 1397.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1518.0, + 297.0, + 1518.0, + 297.0, + 1588.0, + 282.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1518.0, + 783.0, + 1518.0, + 783.0, + 1588.0, + 459.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1518.0, + 1339.0, + 1518.0, + 1339.0, + 1588.0, + 798.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1407.0, + 1518.0, + 1417.0, + 1518.0, + 1417.0, + 1588.0, + 1407.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1607.0, + 523.0, + 1607.0, + 523.0, + 1655.0, + 289.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1607.0, + 604.0, + 1607.0, + 604.0, + 1655.0, + 592.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1607.0, + 949.0, + 1607.0, + 949.0, + 1655.0, + 905.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1607.0, + 1193.0, + 1607.0, + 1193.0, + 1655.0, + 1141.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1607.0, + 1410.0, + 1607.0, + 1410.0, + 1655.0, + 1398.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1647.0, + 371.0, + 1647.0, + 371.0, + 1690.0, + 292.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1647.0, + 1088.0, + 1647.0, + 1088.0, + 1690.0, + 477.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1647.0, + 1176.0, + 1647.0, + 1176.0, + 1690.0, + 1126.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1647.0, + 1273.0, + 1647.0, + 1273.0, + 1690.0, + 1212.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1647.0, + 1360.0, + 1647.0, + 1360.0, + 1690.0, + 1310.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1647.0, + 1408.0, + 1647.0, + 1408.0, + 1690.0, + 1397.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1707.0, + 616.0, + 1707.0, + 616.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1707.0, + 1070.0, + 1707.0, + 1070.0, + 1750.0, + 649.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1707.0, + 1159.0, + 1707.0, + 1159.0, + 1750.0, + 1109.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1707.0, + 1407.0, + 1707.0, + 1407.0, + 1750.0, + 1193.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1740.0, + 693.0, + 1740.0, + 693.0, + 1795.0, + 289.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1740.0, + 1169.0, + 1740.0, + 1169.0, + 1795.0, + 805.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1740.0, + 1410.0, + 1740.0, + 1410.0, + 1795.0, + 1285.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1783.0, + 744.0, + 1783.0, + 744.0, + 1829.0, + 292.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1783.0, + 1408.0, + 1783.0, + 1408.0, + 1829.0, + 837.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1407.0, + 1850.0, + 1407.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1906.0, + 1407.0, + 1906.0, + 1407.0, + 1951.0, + 292.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 626.0, + 1942.0, + 626.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 700.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1222.0, + 2002.0, + 1222.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.75, + 1577.5, + 336.75, + 1577.5, + 336.75, + 1615.5, + 299.75, + 1615.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1564.0, + 1412.0, + 1564.0, + 1412.0, + 1623.0, + 304.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 1408.0, + 946.0, + 1408.0, + 984.0, + 292.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1014.0, + 292.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1007.0, + 1229.0, + 1007.0, + 1229.0, + 1045.0, + 292.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1007.0, + 1405.0, + 1007.0, + 1405.0, + 1045.0, + 1262.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1034.0, + 638.0, + 1034.0, + 638.0, + 1078.0, + 291.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1034.0, + 1407.0, + 1034.0, + 1407.0, + 1078.0, + 671.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1062.0, + 523.0, + 1062.0, + 523.0, + 1113.0, + 290.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1062.0, + 1319.0, + 1062.0, + 1319.0, + 1113.0, + 556.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1062.0, + 1412.0, + 1062.0, + 1412.0, + 1113.0, + 1397.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1059.0, + 1098.0, + 1059.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1263.0, + 1151.0, + 1263.0, + 1151.0, + 1299.0, + 297.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1263.0, + 1328.0, + 1263.0, + 1328.0, + 1299.0, + 1184.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1263.0, + 1404.0, + 1263.0, + 1404.0, + 1299.0, + 1354.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1383.0, + 1292.0, + 1383.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 878.0, + 1194.0, + 878.0, + 1232.0, + 293.0, + 1232.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1191, + 1406, + 1191, + 1406, + 1532, + 297, + 1532 + ], + "score": 0.987 + }, + { + "category_id": 1, + "poly": [ + 296, + 288, + 1406, + 288, + 1406, + 510, + 296, + 510 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1783, + 1404, + 1783, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 757, + 1404, + 757, + 1404, + 906, + 297, + 906 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 295, + 993, + 1405, + 993, + 1405, + 1180, + 295, + 1180 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 635, + 1403, + 635, + 1403, + 742, + 298, + 742 + ], + "score": 0.977 + }, + { + "category_id": 8, + "poly": [ + 510, + 531, + 1170, + 531, + 1170, + 615, + 510, + 615 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 1628, + 1403, + 1628, + 1403, + 1694, + 292, + 1694 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 613, + 928, + 1083, + 928, + 1083, + 973, + 613, + 973 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 312, + 1712, + 1343, + 1712, + 1343, + 1767, + 312, + 1767 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 858, + 74, + 858, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 301, + 1572, + 814, + 1572, + 814, + 1603, + 301, + 1603 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1366, + 557, + 1400, + 557, + 1400, + 587, + 1366, + 587 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 936, + 1400, + 936, + 1400, + 965, + 1366, + 965 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 230, + 594, + 230, + 594, + 261, + 300, + 261 + ], + "score": 0.823 + }, + { + "category_id": 9, + "poly": [ + 1367, + 1723, + 1400, + 1723, + 1400, + 1754, + 1367, + 1754 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 13, + "poly": [ + 983, + 704, + 1058, + 704, + 1058, + 744, + 983, + 744 + ], + "score": 0.93, + "latex": "h _ { j , t - 1 } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1784, + 686, + 1784, + 686, + 1828, + 373, + 1828 + ], + "score": 0.93, + "latex": "\\mathbf { \\boldsymbol { e } } _ { j } ^ { l } : = \\Phi ^ { l + 1 } \\mathbf { \\boldsymbol { \\theta } } _ { j } ^ { l + 1 } + \\Pi ^ { l } \\mathbf { \\boldsymbol { \\theta } } _ { j - 1 } ^ { l }" + }, + { + "category_id": 14, + "poly": [ + 612, + 926, + 1086, + 926, + 1086, + 972, + 612, + 972 + ], + "score": 0.93, + "latex": "p \\left( y _ { j , t } \\mid y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { l } \\right) = \\mathrm { s o f t m a x } \\left( \\mathbf { W } _ { o } \\pmb { a } _ { j , t } ^ { 1 : L } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 511, + 530, + 1171, + 530, + 1171, + 615, + 511, + 615 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { h _ { j , t } ^ { l } = \\left\\{ \\begin{array} { l l } { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , W _ { e } \\left[ x _ { j , t } \\right] \\right) , } & { \\mathrm { i f } l = 1 , } \\\\ { \\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l } \\left( h _ { j , t - 1 } ^ { l } , a _ { j , t } ^ { l - 1 } \\right) , } & { \\mathrm { i f } L \\geq l > 1 , } \\end{array} \\right. } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 567, + 1628, + 709, + 1628, + 709, + 1666, + 567, + 1666 + ], + "score": 0.92, + "latex": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 656, + 668, + 703, + 668, + 703, + 707, + 656, + 707 + ], + "score": 0.92, + "latex": "\\pmb { a } _ { j , t } ^ { l }" + }, + { + "category_id": 14, + "poly": [ + 314, + 1713, + 1353, + 1713, + 1353, + 1766, + 314, + 1766 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { P \\left( \\mathcal { D } \\mid \\{ \\Phi ^ { l } , \\mathbf { T } ^ { l } \\} _ { l = 1 } ^ { L } \\right) = \\int \\prod _ { j = 1 } ^ { J } \\left\\{ p \\left( d _ { j } \\mid \\Phi ^ { 1 } \\theta _ { j } ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T _ { j } } p \\left( y _ { j t } \\mid y _ { j , < t } , \\theta _ { j } ^ { 1 ; L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\theta _ { j } ^ { l } \\mid e _ { j } ^ { l } , \\tau _ { 0 } \\right) \\right] \\right\\} d \\theta _ { 1 : J } ^ { 1 : L } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 486, + 869, + 531, + 869, + 531, + 910, + 486, + 910 + ], + "score": 0.92, + "latex": "\\boldsymbol { a } _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 835, + 1328, + 835, + 1328, + 872, + 1276, + 872 + ], + "score": 0.92, + "latex": "\\pmb { a } _ { j , t } ^ { 1 : L }" + }, + { + "category_id": 13, + "poly": [ + 448, + 473, + 495, + 473, + 495, + 514, + 448, + 514 + ], + "score": 0.92, + "latex": "h _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 538, + 795, + 586, + 795, + 586, + 835, + 538, + 835 + ], + "score": 0.91, + "latex": "h _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 966, + 635, + 1087, + 635, + 1087, + 670, + 966, + 670 + ], + "score": 0.91, + "latex": "{ \\bf W } _ { e } \\in \\mathbb { R } ^ { V }" + }, + { + "category_id": 13, + "poly": [ + 1089, + 995, + 1142, + 995, + 1142, + 1032, + 1089, + 1032 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 437, + 674, + 585, + 674, + 585, + 704, + 437, + 704 + ], + "score": 0.9, + "latex": "x _ { j , t } = y _ { j , t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 361, + 1661, + 641, + 1661, + 641, + 1696, + 361, + 1696 + ], + "score": 0.9, + "latex": "( \\{ s _ { 1 } , d _ { 1 } \\} , \\dots , \\{ s _ { J } , d _ { J } \\} )" + }, + { + "category_id": 13, + "poly": [ + 945, + 1193, + 973, + 1193, + 973, + 1231, + 945, + 1231 + ], + "score": 0.9, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 815, + 834, + 863, + 834, + 863, + 866, + 815, + 866 + ], + "score": 0.89, + "latex": "\\mathbf { W } _ { o }" + }, + { + "category_id": 13, + "poly": [ + 465, + 706, + 495, + 706, + 495, + 744, + 465, + 744 + ], + "score": 0.89, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 692, + 445, + 734, + 445, + 734, + 476, + 692, + 476 + ], + "score": 0.88, + "latex": "y _ { j , t }" + }, + { + "category_id": 13, + "poly": [ + 373, + 634, + 502, + 634, + 502, + 672, + 373, + 672 + ], + "score": 0.88, + "latex": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 560, + 1225, + 592, + 1225, + 592, + 1259, + 560, + 1259 + ], + "score": 0.88, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 758, + 1252, + 758, + 1252, + 796, + 1223, + 796 + ], + "score": 0.88, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 298, + 348, + 327, + 348, + 327, + 387, + 298, + 387 + ], + "score": 0.88, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 795, + 1348, + 795, + 1348, + 835, + 1115, + 835 + ], + "score": 0.88, + "latex": "\\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf \\mathbf { } \\mathbf \\mathbf " + }, + { + "category_id": 13, + "poly": [ + 518, + 833, + 544, + 833, + 544, + 867, + 518, + 867 + ], + "score": 0.87, + "latex": "g ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 787, + 440, + 817, + 440, + 817, + 470, + 787, + 470 + ], + "score": 0.86, + "latex": "t ^ { \\mathrm { { t h } } }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 876, + 1297, + 876, + 1297, + 907, + 1257, + 907 + ], + "score": 0.86, + "latex": "y _ { j , t }" + }, + { + "category_id": 13, + "poly": [ + 793, + 1664, + 818, + 1664, + 818, + 1689, + 793, + 1689 + ], + "score": 0.83, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1196, + 1122, + 1196, + 1122, + 1226, + 1106, + 1226 + ], + "score": 0.81, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1022, + 444, + 1039, + 444, + 1039, + 474, + 1022, + 474 + ], + "score": 0.81, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 787, + 1257, + 803, + 1257, + 803, + 1287, + 787, + 1287 + ], + "score": 0.8, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1137, + 837, + 1163, + 837, + 1163, + 862, + 1137, + 862 + ], + "score": 0.79, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1385, + 764, + 1401, + 764, + 1401, + 793, + 1385, + 793 + ], + "score": 0.78, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1061, + 800, + 1077, + 800, + 1077, + 826, + 1061, + 826 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 991, + 353, + 1007, + 353, + 1007, + 382, + 991, + 382 + ], + "score": 0.74, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1255, + 710, + 1267, + 710, + 1267, + 734, + 1255, + 734 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 934, + 798, + 948, + 798, + 948, + 825, + 934, + 825 + ], + "score": 0.64, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 943, + 640, + 954, + 640, + 954, + 666, + 943, + 666 + ], + "score": 0.62, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 684, + 1226, + 695, + 1226, + 695, + 1252, + 684, + 1252 + ], + "score": 0.36, + "latex": "l" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1571.0, + 818.0, + 1571.0, + 818.0, + 1607.0, + 295.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 600.0, + 229.0, + 600.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1190.0, + 944.0, + 1190.0, + 944.0, + 1231.0, + 291.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1190.0, + 1105.0, + 1190.0, + 1105.0, + 1231.0, + 974.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1190.0, + 1406.0, + 1190.0, + 1406.0, + 1231.0, + 1123.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1226.0, + 559.0, + 1226.0, + 559.0, + 1258.0, + 295.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1226.0, + 683.0, + 1226.0, + 683.0, + 1258.0, + 593.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1226.0, + 1404.0, + 1226.0, + 1404.0, + 1258.0, + 696.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1253.0, + 786.0, + 1253.0, + 786.0, + 1290.0, + 291.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1290.0, + 804.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1314.0, + 1406.0, + 1314.0, + 1406.0, + 1353.0, + 294.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 1409.0, + 1346.0, + 1409.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1405.0, + 1409.0, + 1405.0, + 1409.0, + 1443.0, + 291.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1503.0, + 292.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 741.0, + 1499.0, + 741.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 284.0, + 1406.0, + 284.0, + 1406.0, + 327.0, + 291.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 346.0, + 297.0, + 346.0, + 297.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 346.0, + 990.0, + 346.0, + 990.0, + 389.0, + 328.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 346.0, + 1406.0, + 346.0, + 1406.0, + 389.0, + 1008.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1404.0, + 380.0, + 1404.0, + 415.0, + 294.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 408.0, + 1409.0, + 408.0, + 1409.0, + 449.0, + 291.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 439.0, + 691.0, + 439.0, + 691.0, + 478.0, + 293.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 439.0, + 786.0, + 439.0, + 786.0, + 478.0, + 735.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 439.0, + 1021.0, + 439.0, + 1021.0, + 478.0, + 818.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 439.0, + 1406.0, + 439.0, + 1406.0, + 478.0, + 1040.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 472.0, + 447.0, + 472.0, + 447.0, + 515.0, + 293.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 472.0, + 1130.0, + 472.0, + 1130.0, + 515.0, + 496.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1781.0, + 372.0, + 1781.0, + 372.0, + 1831.0, + 291.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1781.0, + 1408.0, + 1781.0, + 1408.0, + 1831.0, + 687.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1404.0, + 1821.0, + 1404.0, + 1856.0, + 295.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 1301.0, + 2000.0, + 1301.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 756.0, + 1222.0, + 756.0, + 1222.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 756.0, + 1384.0, + 756.0, + 1384.0, + 796.0, + 1253.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 793.0, + 537.0, + 793.0, + 537.0, + 837.0, + 291.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 793.0, + 933.0, + 793.0, + 933.0, + 837.0, + 587.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 793.0, + 1060.0, + 793.0, + 1060.0, + 837.0, + 949.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 793.0, + 1114.0, + 793.0, + 1114.0, + 837.0, + 1078.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 793.0, + 1406.0, + 793.0, + 1406.0, + 837.0, + 1349.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 825.0, + 517.0, + 825.0, + 517.0, + 878.0, + 291.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 825.0, + 814.0, + 825.0, + 814.0, + 878.0, + 545.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 825.0, + 1136.0, + 825.0, + 1136.0, + 878.0, + 864.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 825.0, + 1275.0, + 825.0, + 1275.0, + 878.0, + 1164.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 825.0, + 1409.0, + 825.0, + 1409.0, + 878.0, + 1329.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 869.0, + 485.0, + 869.0, + 485.0, + 909.0, + 296.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 869.0, + 1256.0, + 869.0, + 1256.0, + 909.0, + 532.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 909.0, + 1298.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 983.0, + 1088.0, + 983.0, + 1088.0, + 1039.0, + 288.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 983.0, + 1413.0, + 983.0, + 1413.0, + 1039.0, + 1143.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1403.0, + 1052.0, + 1403.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1084.0, + 1402.0, + 1084.0, + 1402.0, + 1119.0, + 293.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1149.0, + 294.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1147.0, + 1043.0, + 1147.0, + 1043.0, + 1179.0, + 298.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 629.0, + 372.0, + 629.0, + 372.0, + 682.0, + 291.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 629.0, + 942.0, + 629.0, + 942.0, + 682.0, + 503.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 629.0, + 965.0, + 629.0, + 965.0, + 682.0, + 955.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 629.0, + 1409.0, + 629.0, + 1409.0, + 682.0, + 1088.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 664.0, + 436.0, + 664.0, + 436.0, + 709.0, + 292.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 664.0, + 655.0, + 664.0, + 655.0, + 709.0, + 586.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 709.0, + 704.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 703.0, + 464.0, + 703.0, + 464.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 703.0, + 982.0, + 703.0, + 982.0, + 747.0, + 496.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 703.0, + 1254.0, + 703.0, + 1254.0, + 747.0, + 1059.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 703.0, + 1281.0, + 703.0, + 1281.0, + 747.0, + 1268.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1625.0, + 566.0, + 1625.0, + 566.0, + 1668.0, + 293.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1625.0, + 1406.0, + 1625.0, + 1406.0, + 1668.0, + 710.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 360.0, + 1660.0, + 360.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1660.0, + 792.0, + 1660.0, + 792.0, + 1696.0, + 642.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1660.0, + 967.0, + 1660.0, + 967.0, + 1696.0, + 819.0, + 1696.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1381, + 1405, + 1381, + 1405, + 1630, + 297, + 1630 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1155, + 1405, + 1155, + 1405, + 1372, + 296, + 1372 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1643, + 1405, + 1643, + 1405, + 1799, + 298, + 1799 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 797, + 1404, + 797, + 1404, + 931, + 297, + 931 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1405, + 1910, + 1405, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 603, + 1406, + 603, + 1406, + 705, + 298, + 705 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1017, + 1402, + 1017, + 1402, + 1081, + 297, + 1081 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 684, + 950, + 1014, + 950, + 1014, + 1003, + 684, + 1003 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 476, + 1093, + 1218, + 1093, + 1218, + 1143, + 476, + 1143 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 303, + 722, + 1342, + 722, + 1342, + 783, + 303, + 783 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 303, + 1843, + 708, + 1843, + 708, + 1878, + 303, + 1878 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 964, + 1400, + 964, + 1400, + 995, + 1366, + 995 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1103, + 1400, + 1103, + 1400, + 1134, + 1366, + 1134 + ], + "score": 0.87 + }, + { + "category_id": 5, + "poly": [ + 311, + 265, + 1405, + 265, + 1405, + 546, + 311, + 546 + ], + "score": 0.755, + "html": "
Set mini-batch size m and the number of layer L Initialize encoder and neural languagemodel parameter parameter Ω,and topic model parameter {Φl,l}=1·
foriter=1,2,. do
Randomly select a mini-batch of m documents consisting of J sentences to form a subset X =
{di,1:J,Si,1:J}m1; m,J,L
Draw random noise {e',j }i=1.j=1,l=1 from uniform distribution;
Calculate VΩL (S2, Φl,II'; X,e,j) according to (6),and update Ω; Sample 0’,j from (7) and (8) via Ω
to update {II′}=1 and {Φ′}𝑖=1, will be described in Appendix C; end for
" + }, + { + "category_id": 9, + "poly": [ + 1369, + 737, + 1399, + 737, + 1399, + 766, + 1369, + 766 + ], + "score": 0.752 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.728 + }, + { + "category_id": 6, + "poly": [ + 298, + 228, + 1306, + 228, + 1306, + 262, + 298, + 262 + ], + "score": 0.239 + }, + { + "category_id": 1, + "poly": [ + 311, + 265, + 1405, + 265, + 1405, + 546, + 311, + 546 + ], + "score": 0.147 + }, + { + "category_id": 13, + "poly": [ + 824, + 633, + 1152, + 633, + 1152, + 677, + 824, + 677 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { Q = \\prod _ { j = 1 } ^ { J } \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\leq j } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 683, + 947, + 1018, + 947, + 1018, + 1003, + 683, + 1003 + ], + "score": 0.93, + "latex": "\\pmb { \\theta } _ { j } ^ { l } = \\lambda _ { j } ^ { l } \\big ( - \\ln ( 1 - \\epsilon _ { j } ^ { l } ) \\big ) ^ { 1 / { k _ { j } ^ { l } } } ." + }, + { + "category_id": 13, + "poly": [ + 978, + 1381, + 1120, + 1381, + 1120, + 1419, + 978, + 1419 + ], + "score": 0.93, + "latex": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 1266, + 289, + 1398, + 289, + 1398, + 326, + 1266, + 326 + ], + "score": 0.93, + "latex": "\\{ \\Phi ^ { l } , \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1564, + 1344, + 1564, + 1344, + 1602, + 1203, + 1602 + ], + "score": 0.92, + "latex": "\\{ \\Phi ^ { l } , \\pmb { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 424, + 1474, + 566, + 1474, + 566, + 1511, + 424, + 1511 + ], + "score": 0.92, + "latex": "\\{ \\bar { \\boldsymbol { \\Phi } } ^ { l } , \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { \\bar { L } }" + }, + { + "category_id": 13, + "poly": [ + 449, + 482, + 541, + 482, + 541, + 515, + 449, + 515 + ], + "score": 0.92, + "latex": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1703, + 1052, + 1703, + 1052, + 1742, + 1000, + 1742 + ], + "score": 0.92, + "latex": "\\theta _ { j } ^ { 1 : L }" + }, + { + "category_id": 13, + "poly": [ + 798, + 1223, + 903, + 1223, + 903, + 1261, + 798, + 1261 + ], + "score": 0.92, + "latex": "\\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 744, + 1296, + 793, + 1296, + 793, + 1340, + 744, + 1340 + ], + "score": 0.91, + "latex": "h _ { j } ^ { s , l }" + }, + { + "category_id": 13, + "poly": [ + 350, + 377, + 541, + 377, + 541, + 408, + 350, + 408 + ], + "score": 0.91, + "latex": "\\{ d _ { i , 1 : J } , s _ { i , 1 : J } \\} _ { i = 1 } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 448, + 1169, + 448, + 1169, + 483, + 1127, + 483 + ], + "score": 0.91, + "latex": "\\theta _ { i , j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 643, + 636, + 696, + 636, + 696, + 674, + 643, + 674 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 441, + 1221, + 489, + 1221, + 489, + 1265, + 441, + 1265 + ], + "score": 0.91, + "latex": "h _ { j } ^ { s , l }" + }, + { + "category_id": 14, + "poly": [ + 311, + 717, + 1359, + 717, + 1359, + 787, + 311, + 787 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { L = \\sum _ { j = 1 } ^ { J } \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d _ { j } | \\Phi | ^ { \\mathbf { i } } \\pmb { \\Phi } _ { j } ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T _ { j } } \\ln p \\left( y _ { j , t } | y _ { j , < t } , \\pmb { \\theta } _ { j } ^ { 1 ; L } \\right) \\right] - \\sum _ { j = 1 } ^ { J } \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln \\frac { q \\left( \\pmb { \\theta } _ { j } ^ { l } | \\pmb { d } _ { \\pmb { \\theta } _ { j } ^ { l } } \\right) } { p \\left( \\pmb { \\theta } _ { j } ^ { l } | \\mathbf { e } _ { j } ^ { l } , \\tau _ { 0 } \\right) } \\right] , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1225, + 1187, + 1225, + 1187, + 1265, + 1141, + 1265 + ], + "score": 0.91, + "latex": "h _ { j } ^ { s , l }" + }, + { + "category_id": 13, + "poly": [ + 637, + 858, + 985, + 858, + 985, + 897, + 637, + 897 + ], + "score": 0.91, + "latex": "q ( \\pmb { \\theta } _ { j } ^ { l } \\ \\vert \\ \\pmb { d } _ { \\leq j } ) = \\bar { \\mathrm { W e i b u l l } } ( \\pmb { k } _ { j } ^ { l } , \\pmb { \\lambda } _ { j } ^ { l } )" + }, + { + "category_id": 14, + "poly": [ + 481, + 1092, + 1215, + 1092, + 1215, + 1141, + 481, + 1141 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { h } _ { j } ^ { s , l } = \\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l } \\big ( \\pmb { h } _ { j - 1 } ^ { s , l } , \\pmb { h } _ { j } ^ { s , l - 1 } \\big ) , \\pmb { k } _ { j } ^ { l } = f _ { k } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , \\pmb { \\lambda } _ { j } ^ { l } = f _ { \\lambda } ^ { l } \\big ( \\pmb { h } _ { j } ^ { s , l } \\big ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 588, + 482, + 678, + 482, + 678, + 515, + 588, + 515 + ], + "score": 0.9, + "latex": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 554, + 405, + 736, + 405, + 736, + 449, + 554, + 449 + ], + "score": 0.9, + "latex": "\\left\\{ \\epsilon _ { i , j } ^ { l } \\right\\} _ { i = 1 , j = 1 , l = 1 } ^ { m , J , L }" + }, + { + "category_id": 13, + "poly": [ + 1307, + 1302, + 1403, + 1302, + 1403, + 1337, + 1307, + 1337 + ], + "score": 0.9, + "latex": "f ( { \\pmb x } ) =" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1265, + 1313, + 1265, + 1313, + 1299, + 1283, + 1299 + ], + "score": 0.89, + "latex": "f _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1971, + 1056, + 1971, + 1056, + 2009, + 1027, + 2009 + ], + "score": 0.89, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1300, + 1073, + 1300, + 1073, + 1340, + 1043, + 1340 + ], + "score": 0.89, + "latex": "\\theta _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1017, + 1204, + 1017, + 1204, + 1056, + 1174, + 1056 + ], + "score": 0.88, + "latex": "k _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1017, + 1289, + 1017, + 1289, + 1056, + 1257, + 1056 + ], + "score": 0.88, + "latex": "\\lambda _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 887, + 896, + 915, + 896, + 915, + 936, + 887, + 936 + ], + "score": 0.87, + "latex": "\\epsilon _ { j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 450, + 449, + 723, + 449, + 723, + 482, + 450, + 482 + ], + "score": 0.87, + "latex": "\\nabla _ { \\Omega } L \\left( \\Omega , \\Phi ^ { l } , \\Pi ^ { l } ; \\mathbf { X } , \\epsilon _ { i , j } ^ { l } \\right)" + }, + { + "category_id": 13, + "poly": [ + 297, + 1336, + 550, + 1336, + 550, + 1372, + 297, + 1372 + ], + "score": 0.87, + "latex": "\\ln ( 1 + \\exp ( \\mathbf { W } x + b ) )" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1262, + 1401, + 1262, + 1401, + 1300, + 1368, + 1300 + ], + "score": 0.86, + "latex": "f _ { \\lambda } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 359, + 323, + 519, + 323, + 519, + 351, + 359, + 351 + ], + "score": 0.86, + "latex": "i t e r = 1 , 2 , \\cdots" + }, + { + "category_id": 13, + "poly": [ + 1339, + 349, + 1403, + 349, + 1403, + 379, + 1339, + 379 + ], + "score": 0.86, + "latex": "\\textrm { \\textbf { X } } =" + }, + { + "category_id": 13, + "poly": [ + 1014, + 351, + 1035, + 351, + 1035, + 375, + 1014, + 375 + ], + "score": 0.8, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1710, + 1397, + 1710, + 1397, + 1738, + 1383, + 1738 + ], + "score": 0.8, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1390, + 1168, + 1400, + 1168, + 1400, + 1189, + 1390, + 1189 + ], + "score": 0.79, + "latex": "\\it l" + }, + { + "category_id": 13, + "poly": [ + 1012, + 452, + 1036, + 452, + 1036, + 477, + 1012, + 477 + ], + "score": 0.78, + "latex": "\\pmb { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 1377, + 452, + 1401, + 452, + 1401, + 477, + 1377, + 477 + ], + "score": 0.78, + "latex": "\\pmb { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 969, + 296, + 992, + 296, + 992, + 320, + 969, + 320 + ], + "score": 0.76, + "latex": "\\pmb { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1507, + 1049, + 1507, + 1049, + 1533, + 1023, + 1533 + ], + "score": 0.74, + "latex": "\\pmb { \\Omega }" + }, + { + "category_id": 13, + "poly": [ + 376, + 1155, + 506, + 1155, + 506, + 1198, + 376, + 1198 + ], + "score": 0.73, + "latex": "h _ { j } ^ { s , 0 } \\ = \\ d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 793, + 268, + 814, + 268, + 814, + 292, + 793, + 292 + ], + "score": 0.73, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 712, + 355, + 739, + 355, + 739, + 375, + 712, + 375 + ], + "score": 0.73, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1158, + 1677, + 1174, + 1677, + 1174, + 1707, + 1158, + 1707 + ], + "score": 0.73, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1240, + 1107, + 1240, + 1107, + 1255, + 1093, + 1255 + ], + "score": 0.71, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 519, + 272, + 546, + 272, + 546, + 292, + 519, + 292 + ], + "score": 0.7, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 522, + 1154, + 635, + 1154, + 635, + 1195, + 522, + 1195 + ], + "score": 0.7, + "latex": "h _ { 0 } ^ { s , l } \\ = \\ 0" + }, + { + "category_id": 13, + "poly": [ + 650, + 1156, + 757, + 1156, + 757, + 1195, + 650, + 1195 + ], + "score": 0.63, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1769, + 1057, + 1769, + 1057, + 1799, + 1041, + 1799 + ], + "score": 0.62, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 376, + 1154, + 757, + 1154, + 757, + 1197, + 376, + 1197 + ], + "score": 0.48, + "latex": "h _ { j } ^ { s , 0 } = d _ { j } , h _ { 0 } ^ { s , l } = 0 , " + }, + { + "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, + 1838.0, + 714.0, + 1838.0, + 714.0, + 1884.0, + 292.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1309.0, + 227.0, + 1309.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1377.0, + 977.0, + 1377.0, + 977.0, + 1427.0, + 290.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1377.0, + 1412.0, + 1377.0, + 1412.0, + 1427.0, + 1121.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 1407.0, + 1410.0, + 1407.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1480.0, + 295.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1469.0, + 423.0, + 1469.0, + 423.0, + 1516.0, + 289.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1469.0, + 1408.0, + 1469.0, + 1408.0, + 1516.0, + 567.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1505.0, + 1022.0, + 1505.0, + 1022.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1505.0, + 1403.0, + 1505.0, + 1403.0, + 1539.0, + 1050.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1556.0, + 1202.0, + 1556.0, + 1202.0, + 1610.0, + 289.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1556.0, + 1411.0, + 1556.0, + 1411.0, + 1610.0, + 1345.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1594.0, + 1325.0, + 1594.0, + 1325.0, + 1633.0, + 292.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1151.0, + 375.0, + 1151.0, + 375.0, + 1205.0, + 282.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1144.0, + 1389.0, + 1144.0, + 1389.0, + 1213.0, + 758.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1144.0, + 1416.0, + 1144.0, + 1416.0, + 1213.0, + 1401.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1190.0, + 1405.0, + 1190.0, + 1405.0, + 1225.0, + 294.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1219.0, + 440.0, + 1219.0, + 440.0, + 1266.0, + 290.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1219.0, + 797.0, + 1219.0, + 797.0, + 1266.0, + 490.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1219.0, + 1092.0, + 1219.0, + 1092.0, + 1266.0, + 904.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1219.0, + 1140.0, + 1219.0, + 1140.0, + 1266.0, + 1108.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1219.0, + 1412.0, + 1219.0, + 1412.0, + 1266.0, + 1188.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1257.0, + 1282.0, + 1257.0, + 1282.0, + 1304.0, + 291.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 1257.0, + 1367.0, + 1257.0, + 1367.0, + 1304.0, + 1314.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1304.0, + 1402.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 278.0, + 1289.0, + 743.0, + 1289.0, + 743.0, + 1356.0, + 278.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1289.0, + 1042.0, + 1289.0, + 1042.0, + 1356.0, + 794.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1289.0, + 1306.0, + 1289.0, + 1306.0, + 1356.0, + 1074.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1331.0, + 296.0, + 1331.0, + 296.0, + 1374.0, + 293.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1331.0, + 564.0, + 1331.0, + 564.0, + 1374.0, + 551.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1156.0, + 526.0, + 1156.0, + 526.0, + 1196.0, + 468.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1644.0, + 1402.0, + 1644.0, + 1402.0, + 1677.0, + 297.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1674.0, + 1157.0, + 1674.0, + 1157.0, + 1708.0, + 296.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1674.0, + 1406.0, + 1674.0, + 1406.0, + 1708.0, + 1175.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1700.0, + 999.0, + 1700.0, + 999.0, + 1744.0, + 292.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1700.0, + 1382.0, + 1700.0, + 1382.0, + 1744.0, + 1053.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1700.0, + 1410.0, + 1700.0, + 1410.0, + 1744.0, + 1398.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1733.0, + 1406.0, + 1733.0, + 1406.0, + 1772.0, + 295.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1765.0, + 1040.0, + 1765.0, + 1040.0, + 1802.0, + 295.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1765.0, + 1190.0, + 1765.0, + 1190.0, + 1802.0, + 1058.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 832.0, + 295.0, + 832.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": [ + 294.0, + 857.0, + 636.0, + 857.0, + 636.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 857.0, + 1405.0, + 857.0, + 1405.0, + 897.0, + 986.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 893.0, + 886.0, + 893.0, + 886.0, + 935.0, + 292.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 893.0, + 951.0, + 893.0, + 951.0, + 935.0, + 916.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1408.0, + 1911.0, + 1408.0, + 1944.0, + 294.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1971.0, + 1026.0, + 1971.0, + 1026.0, + 2008.0, + 290.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 1057.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 1409.0, + 1999.0, + 1409.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 629.0, + 642.0, + 629.0, + 642.0, + 684.0, + 288.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 629.0, + 823.0, + 629.0, + 823.0, + 684.0, + 697.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 629.0, + 1411.0, + 629.0, + 1411.0, + 684.0, + 1153.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 672.0, + 914.0, + 672.0, + 914.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1016.0, + 1173.0, + 1016.0, + 1173.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1016.0, + 1256.0, + 1016.0, + 1256.0, + 1055.0, + 1205.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1016.0, + 1404.0, + 1016.0, + 1404.0, + 1055.0, + 1290.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1046.0, + 758.0, + 1046.0, + 758.0, + 1082.0, + 295.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 263.0, + 518.0, + 263.0, + 518.0, + 297.0, + 317.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 263.0, + 792.0, + 263.0, + 792.0, + 297.0, + 547.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 263.0, + 818.0, + 263.0, + 818.0, + 297.0, + 815.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 285.0, + 968.0, + 285.0, + 968.0, + 330.0, + 314.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 285.0, + 1265.0, + 285.0, + 1265.0, + 330.0, + 993.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 285.0, + 1408.0, + 285.0, + 1408.0, + 330.0, + 1399.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 321.0, + 358.0, + 321.0, + 358.0, + 351.0, + 319.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 321.0, + 567.0, + 321.0, + 567.0, + 351.0, + 520.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 347.0, + 711.0, + 347.0, + 711.0, + 380.0, + 346.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 347.0, + 1013.0, + 347.0, + 1013.0, + 380.0, + 740.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 347.0, + 1338.0, + 347.0, + 1338.0, + 380.0, + 1036.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 366.0, + 349.0, + 366.0, + 349.0, + 416.0, + 344.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 366.0, + 561.0, + 366.0, + 561.0, + 416.0, + 542.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 412.0, + 1010.0, + 412.0, + 1010.0, + 442.0, + 737.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 446.0, + 449.0, + 446.0, + 449.0, + 486.0, + 346.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 446.0, + 1011.0, + 446.0, + 1011.0, + 486.0, + 724.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 446.0, + 1126.0, + 446.0, + 1126.0, + 486.0, + 1037.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 446.0, + 1376.0, + 446.0, + 1376.0, + 486.0, + 1170.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 446.0, + 1406.0, + 446.0, + 1406.0, + 486.0, + 1402.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 479.0, + 448.0, + 479.0, + 448.0, + 520.0, + 343.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 479.0, + 587.0, + 479.0, + 587.0, + 520.0, + 542.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 479.0, + 1027.0, + 479.0, + 1027.0, + 520.0, + 679.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 508.0, + 409.0, + 508.0, + 409.0, + 544.0, + 317.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.75, + 400.5, + 750.75, + 400.5, + 750.75, + 456.5, + 339.75, + 456.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 514, + 1405, + 514, + 1405, + 912, + 298, + 912 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 927, + 1405, + 927, + 1405, + 1263, + 298, + 1263 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1278, + 1405, + 1278, + 1405, + 1645, + 297, + 1645 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1660, + 1405, + 1660, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1405, + 229, + 1405, + 415, + 299, + 415 + ], + "score": 0.977 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 302, + 456, + 709, + 456, + 709, + 487, + 302, + 487 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.777 + }, + { + "category_id": 13, + "poly": [ + 888, + 1816, + 940, + 1816, + 940, + 1858, + 888, + 1858 + ], + "score": 0.92, + "latex": "\\theta _ { j } ^ { < L }" + }, + { + "category_id": 13, + "poly": [ + 827, + 290, + 873, + 290, + 873, + 329, + 827, + 329 + ], + "score": 0.91, + "latex": "\\dot { a } _ { j , t } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1780, + 1051, + 1780, + 1051, + 1820, + 1014, + 1820 + ], + "score": 0.9, + "latex": "\\theta _ { j } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 709, + 989, + 758, + 989, + 758, + 1022, + 709, + 1022 + ], + "score": 0.9, + "latex": "S _ { < j }" + }, + { + "category_id": 13, + "poly": [ + 447, + 351, + 506, + 351, + 506, + 382, + 447, + 382 + ], + "score": 0.89, + "latex": "1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 959, + 1278, + 959, + 1278, + 991, + 1247, + 991 + ], + "score": 0.88, + "latex": "d _ { j }" + }, + { + "category_id": 13, + "poly": [ + 955, + 387, + 983, + 387, + 983, + 413, + 955, + 413 + ], + "score": 0.85, + "latex": "\\tau _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 907, + 292, + 1015, + 292, + 1015, + 325, + 907, + 325 + ], + "score": 0.79, + "latex": "W _ { e } \\left[ \\boldsymbol { x } _ { j , t } \\right]" + }, + { + "category_id": 13, + "poly": [ + 1024, + 930, + 1039, + 930, + 1039, + 959, + 1024, + 959 + ], + "score": 0.56, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 804, + 547, + 835, + 547, + 835, + 577, + 804, + 577 + ], + "score": 0.32, + "latex": "( i )" + }, + { + "category_id": 13, + "poly": [ + 520, + 1523, + 583, + 1523, + 583, + 1552, + 520, + 1552 + ], + "score": 0.29, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1072, + 700, + 1107, + 700, + 1107, + 729, + 1072, + 729 + ], + "score": 0.25, + "latex": "( \\nu )" + }, + { + "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, + 455.0, + 713.0, + 455.0, + 713.0, + 491.0, + 295.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 512.0, + 1408.0, + 512.0, + 1408.0, + 550.0, + 293.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 547.0, + 803.0, + 547.0, + 803.0, + 579.0, + 296.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 547.0, + 1406.0, + 547.0, + 1406.0, + 579.0, + 836.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 574.0, + 1408.0, + 574.0, + 1408.0, + 612.0, + 293.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 608.0, + 1405.0, + 608.0, + 1405.0, + 640.0, + 295.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 635.0, + 1408.0, + 635.0, + 1408.0, + 675.0, + 291.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 666.0, + 1403.0, + 666.0, + 1403.0, + 703.0, + 295.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 696.0, + 1071.0, + 696.0, + 1071.0, + 735.0, + 291.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 696.0, + 1407.0, + 696.0, + 1407.0, + 735.0, + 1108.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 726.0, + 1407.0, + 726.0, + 1407.0, + 764.0, + 291.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 758.0, + 1407.0, + 758.0, + 1407.0, + 795.0, + 295.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 790.0, + 1403.0, + 790.0, + 1403.0, + 822.0, + 296.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 817.0, + 1406.0, + 817.0, + 1406.0, + 856.0, + 292.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 849.0, + 1405.0, + 849.0, + 1405.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 880.0, + 1112.0, + 880.0, + 1112.0, + 917.0, + 295.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 927.0, + 1023.0, + 927.0, + 1023.0, + 961.0, + 295.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 961.0, + 1040.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 958.0, + 1246.0, + 958.0, + 1246.0, + 992.0, + 295.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 958.0, + 1405.0, + 958.0, + 1405.0, + 992.0, + 1279.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 986.0, + 708.0, + 986.0, + 708.0, + 1023.0, + 292.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 986.0, + 1406.0, + 986.0, + 1406.0, + 1023.0, + 759.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1018.0, + 1407.0, + 1018.0, + 1407.0, + 1053.0, + 295.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1049.0, + 1403.0, + 1049.0, + 1403.0, + 1080.0, + 296.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1115.0, + 293.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1109.0, + 1403.0, + 1109.0, + 1403.0, + 1143.0, + 295.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1140.0, + 1405.0, + 1140.0, + 1405.0, + 1174.0, + 295.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1169.0, + 1405.0, + 1169.0, + 1405.0, + 1204.0, + 293.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1200.0, + 1407.0, + 1200.0, + 1407.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1232.0, + 990.0, + 1232.0, + 990.0, + 1263.0, + 296.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1313.0, + 294.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1340.0, + 296.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1406.0, + 1337.0, + 1406.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1369.0, + 1405.0, + 1369.0, + 1405.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1399.0, + 1405.0, + 1399.0, + 1405.0, + 1435.0, + 295.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1430.0, + 1405.0, + 1430.0, + 1405.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1496.0, + 295.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1525.0, + 295.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1522.0, + 519.0, + 1522.0, + 519.0, + 1556.0, + 296.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1522.0, + 1405.0, + 1522.0, + 1405.0, + 1556.0, + 584.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1554.0, + 1403.0, + 1554.0, + 1403.0, + 1584.0, + 295.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1406.0, + 1584.0, + 1406.0, + 1616.0, + 294.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1612.0, + 1096.0, + 1612.0, + 1096.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1661.0, + 1406.0, + 1661.0, + 1406.0, + 1695.0, + 295.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1691.0, + 1402.0, + 1691.0, + 1402.0, + 1722.0, + 296.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1719.0, + 1405.0, + 1719.0, + 1405.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1751.0, + 1405.0, + 1751.0, + 1405.0, + 1789.0, + 294.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1780.0, + 1013.0, + 1780.0, + 1013.0, + 1820.0, + 291.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1780.0, + 1407.0, + 1780.0, + 1407.0, + 1820.0, + 1052.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1815.0, + 887.0, + 1815.0, + 887.0, + 1859.0, + 290.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1815.0, + 1407.0, + 1815.0, + 1407.0, + 1859.0, + 941.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 1405.0, + 1852.0, + 1405.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1937.0, + 1406.0, + 1937.0, + 1406.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1407.0, + 2003.0, + 1407.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 826.0, + 288.0, + 826.0, + 331.0, + 292.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 288.0, + 906.0, + 288.0, + 906.0, + 331.0, + 874.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 288.0, + 1410.0, + 288.0, + 1410.0, + 331.0, + 1016.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 349.0, + 446.0, + 349.0, + 446.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 349.0, + 1410.0, + 349.0, + 1410.0, + 388.0, + 507.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 954.0, + 382.0, + 954.0, + 416.0, + 293.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 382.0, + 1408.0, + 382.0, + 1408.0, + 416.0, + 984.0, + 416.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1697, + 1406, + 1697, + 1406, + 2036, + 296, + 2036 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 385, + 281, + 1321, + 281, + 1321, + 782, + 385, + 782 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic SizePerplexity
APNEWSIMDBBNC
LCLM(Tian & Cho,2016)60054.1867.7896.50
900-90050.6367.8687.77
LDA+LSTM (Lau et al., 2017)60010055.5269.6496.50
900-90010050.7563.0487.77
TopicRNN (Dieng et al.,2017)60010054.5467.8393.57
900-90010050.2461.5984.62
TDLM (Lau et al., 2017)60010052.7563.4585.99
900-90010048.9759.0481.83
TCNLM (Wang et al.,2018)60010052.6362.6486.44
TGVAE (Wang et al.,2019)900-90010047.8156.3880.14
6005048.7357.1187.86
basic-LSTM(Hochreiter & Schmidhuber,1997)60064.1372.14102.89
900-90058.8966.4794.23
GBN-RNN900-900-90060.1365.1695.73
600 600-51210047.4257.0186.39
100-8044.6455.4282.95
600-512-256100-80-5044.3554.5380.25
60010046.3555.7681.94
rGBN-RNN600-512100-8043.2653.8280.25
600-512-256100-80-5042.7151.3679.13
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1510, + 1404, + 1510, + 1404, + 1604, + 298, + 1604 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 312, + 1213, + 1380, + 1213, + 1380, + 1436, + 312, + 1436 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 298, + 1439, + 1400, + 1439, + 1400, + 1495, + 298, + 1495 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 529, + 251, + 1157, + 251, + 1157, + 280, + 529, + 280 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 1641, + 654, + 1641, + 654, + 1672, + 299, + 1672 + ], + "score": 0.899 + }, + { + "category_id": 4, + "poly": [ + 291, + 1146, + 1402, + 1146, + 1402, + 1204, + 291, + 1204 + ], + "score": 0.894 + }, + { + "category_id": 3, + "poly": [ + 396, + 831, + 796, + 831, + 796, + 1139, + 396, + 1139 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.756 + }, + { + "category_id": 3, + "poly": [ + 856, + 832, + 1255, + 832, + 1255, + 1139, + 856, + 1139 + ], + "score": 0.599 + }, + { + "category_id": 3, + "poly": [ + 855, + 833, + 1255, + 833, + 1255, + 1139, + 855, + 1139 + ], + "score": 0.169 + }, + { + "category_id": 13, + "poly": [ + 983, + 1918, + 1015, + 1918, + 1015, + 1943, + 983, + 1943 + ], + "score": 0.91, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 601, + 1439, + 633, + 1439, + 633, + 1466, + 601, + 1466 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1825, + 1332, + 1825, + 1332, + 1852, + 1298, + 1852 + ], + "score": 0.86, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 298, + 1761, + 331, + 1761, + 331, + 1791, + 298, + 1791 + ], + "score": 0.86, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 871, + 1151, + 887, + 1151, + 887, + 1172, + 871, + 1172 + ], + "score": 0.37, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1215.0, + 1376.0, + 1215.0, + 1376.0, + 1226.0, + 1364.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1221.0, + 336.0, + 1221.0, + 336.0, + 1240.0, + 314.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1231.0, + 1372.0, + 1231.0, + 1372.0, + 1244.0, + 1362.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1248.0, + 336.0, + 1248.0, + 336.0, + 1268.0, + 314.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1249.0, + 1372.0, + 1249.0, + 1372.0, + 1261.0, + 1362.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1274.0, + 335.0, + 1274.0, + 335.0, + 1294.0, + 314.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1283.0, + 698.0, + 1283.0, + 698.0, + 1293.0, + 689.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1269.0, + 1372.0, + 1269.0, + 1372.0, + 1282.0, + 1362.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1297.0, + 374.0, + 1297.0, + 374.0, + 1316.0, + 346.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1297.0, + 620.0, + 1297.0, + 620.0, + 1317.0, + 380.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1293.0, + 661.0, + 1293.0, + 661.0, + 1320.0, + 629.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1297.0, + 710.0, + 1297.0, + 710.0, + 1318.0, + 676.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1297.0, + 762.0, + 1297.0, + 762.0, + 1322.0, + 716.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1295.0, + 808.0, + 1295.0, + 808.0, + 1317.0, + 764.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1295.0, + 850.0, + 1295.0, + 850.0, + 1318.0, + 820.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1295.0, + 903.0, + 1295.0, + 903.0, + 1318.0, + 864.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1292.0, + 951.0, + 1292.0, + 951.0, + 1319.0, + 911.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1295.0, + 988.0, + 1295.0, + 988.0, + 1318.0, + 970.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1295.0, + 1036.0, + 1295.0, + 1036.0, + 1317.0, + 1018.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1290.0, + 1199.0, + 1290.0, + 1199.0, + 1321.0, + 1047.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1297.0, + 1228.0, + 1297.0, + 1228.0, + 1317.0, + 1206.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1295.0, + 1289.0, + 1295.0, + 1289.0, + 1321.0, + 1239.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1298.0, + 1319.0, + 1298.0, + 1319.0, + 1316.0, + 1305.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1308.0, + 851.0, + 1308.0, + 851.0, + 1332.0, + 819.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1335.0, + 337.0, + 1335.0, + 337.0, + 1355.0, + 317.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1333.0, + 746.0, + 1333.0, + 746.0, + 1345.0, + 736.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1360.0, + 337.0, + 1360.0, + 337.0, + 1380.0, + 316.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1381.0, + 1370.0, + 1381.0, + 1370.0, + 1393.0, + 1362.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1386.0, + 337.0, + 1386.0, + 337.0, + 1405.0, + 317.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1394.0, + 699.0, + 1394.0, + 699.0, + 1408.0, + 690.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1398.0, + 745.0, + 1398.0, + 745.0, + 1404.0, + 739.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1395.0, + 794.0, + 1395.0, + 794.0, + 1408.0, + 785.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 1394.0, + 890.0, + 1394.0, + 890.0, + 1408.0, + 880.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1394.0, + 937.0, + 1394.0, + 937.0, + 1408.0, + 928.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1395.0, + 985.0, + 1395.0, + 985.0, + 1405.0, + 975.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1395.0, + 1032.0, + 1395.0, + 1032.0, + 1408.0, + 1024.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1410.0, + 375.0, + 1410.0, + 375.0, + 1429.0, + 347.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1410.0, + 621.0, + 1410.0, + 621.0, + 1430.0, + 382.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 1410.0, + 662.0, + 1410.0, + 662.0, + 1432.0, + 628.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1410.0, + 711.0, + 1410.0, + 711.0, + 1432.0, + 677.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1409.0, + 764.0, + 1409.0, + 764.0, + 1434.0, + 718.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1409.0, + 811.0, + 1409.0, + 811.0, + 1430.0, + 766.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1405.0, + 858.0, + 1405.0, + 858.0, + 1447.0, + 817.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1408.0, + 903.0, + 1408.0, + 903.0, + 1430.0, + 864.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1409.0, + 952.0, + 1409.0, + 952.0, + 1430.0, + 910.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1409.0, + 990.0, + 1409.0, + 990.0, + 1429.0, + 970.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1412.0, + 1036.0, + 1412.0, + 1036.0, + 1428.0, + 1019.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1409.0, + 1200.0, + 1409.0, + 1200.0, + 1433.0, + 1049.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1410.0, + 1228.0, + 1410.0, + 1228.0, + 1429.0, + 1206.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1410.0, + 1288.0, + 1410.0, + 1288.0, + 1432.0, + 1239.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1410.0, + 1320.0, + 1410.0, + 1320.0, + 1428.0, + 1306.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1281.5, + 839.0, + 1281.5, + 839.0, + 1291.5, + 834.0, + 1291.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1356.5, + 1368.0, + 1356.5, + 1368.0, + 1366.5, + 1363.0, + 1366.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1393.5, + 362.0, + 1393.5, + 362.0, + 1406.5, + 358.0, + 1406.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1437.0, + 600.0, + 1437.0, + 600.0, + 1469.0, + 294.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1437.0, + 1404.0, + 1437.0, + 1404.0, + 1469.0, + 634.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 887.0, + 1465.0, + 887.0, + 1499.0, + 293.0, + 1499.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": [ + 528.0, + 246.0, + 1163.0, + 246.0, + 1163.0, + 286.0, + 528.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1640.0, + 656.0, + 1640.0, + 656.0, + 1676.0, + 294.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1144.0, + 870.0, + 1144.0, + 870.0, + 1179.0, + 294.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1144.0, + 1405.0, + 1144.0, + 1405.0, + 1179.0, + 888.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1171.0, + 897.0, + 1171.0, + 897.0, + 1208.0, + 293.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 835.0, + 453.0, + 835.0, + 453.0, + 859.0, + 410.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 838.0, + 578.0, + 838.0, + 578.0, + 857.0, + 516.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 886.0, + 454.0, + 886.0, + 454.0, + 910.0, + 410.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 916.0, + 418.0, + 916.0, + 418.0, + 994.0, + 396.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 937.0, + 453.0, + 937.0, + 453.0, + 960.0, + 411.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 968.0, + 733.0, + 968.0, + 733.0, + 986.0, + 637.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 987.0, + 454.0, + 987.0, + 454.0, + 1011.0, + 410.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 981.0, + 629.0, + 981.0, + 629.0, + 1000.0, + 538.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 978.0, + 768.0, + 978.0, + 768.0, + 1001.0, + 668.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1007.0, + 791.0, + 1007.0, + 791.0, + 1028.0, + 693.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1022.0, + 760.0, + 1022.0, + 760.0, + 1040.0, + 657.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1037.0, + 452.0, + 1037.0, + 452.0, + 1060.0, + 409.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1053.0, + 552.0, + 1053.0, + 552.0, + 1072.0, + 494.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1069.0, + 785.0, + 1069.0, + 785.0, + 1094.0, + 431.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1087.0, + 658.0, + 1087.0, + 658.0, + 1107.0, + 584.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1115.0, + 683.0, + 1115.0, + 683.0, + 1142.0, + 549.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.75, + 1012.5, + 627.75, + 1012.5, + 627.75, + 1046.5, + 450.75, + 1046.5 + ], + "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": [ + 964.0, + 837.0, + 1028.0, + 837.0, + 1028.0, + 856.0, + 964.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 854.0, + 915.0, + 854.0, + 915.0, + 878.0, + 871.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 888.0, + 915.0, + 888.0, + 915.0, + 912.0, + 872.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 916.0, + 880.0, + 916.0, + 880.0, + 994.0, + 855.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 921.0, + 914.0, + 921.0, + 914.0, + 945.0, + 871.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 955.0, + 914.0, + 955.0, + 914.0, + 980.0, + 872.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 956.0, + 1190.0, + 956.0, + 1190.0, + 974.0, + 1092.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 971.0, + 1055.0, + 971.0, + 1055.0, + 989.0, + 963.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 965.0, + 1237.0, + 965.0, + 1237.0, + 985.0, + 1136.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 989.0, + 915.0, + 989.0, + 915.0, + 1013.0, + 872.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 988.0, + 1095.0, + 988.0, + 1095.0, + 1007.0, + 1005.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 985.0, + 1251.0, + 985.0, + 1251.0, + 1006.0, + 1152.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1024.0, + 914.0, + 1024.0, + 914.0, + 1047.0, + 872.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1023.0, + 1225.0, + 1023.0, + 1225.0, + 1052.0, + 1068.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1056.0, + 915.0, + 1056.0, + 915.0, + 1080.0, + 871.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1051.0, + 1041.0, + 1051.0, + 1041.0, + 1071.0, + 980.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1071.0, + 934.0, + 1071.0, + 934.0, + 1094.0, + 890.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1071.0, + 991.0, + 1071.0, + 991.0, + 1094.0, + 949.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1070.0, + 1051.0, + 1070.0, + 1051.0, + 1094.0, + 1009.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1070.0, + 1110.0, + 1070.0, + 1110.0, + 1093.0, + 1067.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1070.0, + 1169.0, + 1070.0, + 1169.0, + 1094.0, + 1126.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1071.0, + 1226.0, + 1071.0, + 1226.0, + 1094.0, + 1184.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1086.0, + 1121.0, + 1086.0, + 1121.0, + 1109.0, + 1044.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1114.0, + 1144.0, + 1114.0, + 1144.0, + 1143.0, + 1009.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 837.0, + 1028.0, + 837.0, + 1028.0, + 856.0, + 964.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 854.0, + 915.0, + 854.0, + 915.0, + 879.0, + 871.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 887.0, + 915.0, + 887.0, + 915.0, + 912.0, + 871.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 916.0, + 880.0, + 916.0, + 880.0, + 994.0, + 855.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 921.0, + 914.0, + 921.0, + 914.0, + 945.0, + 871.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 954.0, + 915.0, + 954.0, + 915.0, + 981.0, + 870.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 957.0, + 1189.0, + 957.0, + 1189.0, + 973.0, + 1092.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 968.0, + 1055.0, + 968.0, + 1055.0, + 990.0, + 962.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 965.0, + 1237.0, + 965.0, + 1237.0, + 985.0, + 1136.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 989.0, + 915.0, + 989.0, + 915.0, + 1013.0, + 872.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 987.0, + 1097.0, + 987.0, + 1097.0, + 1008.0, + 1003.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 985.0, + 1251.0, + 985.0, + 1251.0, + 1006.0, + 1152.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1023.0, + 915.0, + 1023.0, + 915.0, + 1047.0, + 871.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1021.0, + 1226.0, + 1021.0, + 1226.0, + 1052.0, + 1068.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1056.0, + 918.0, + 1056.0, + 918.0, + 1081.0, + 871.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1049.0, + 1042.0, + 1049.0, + 1042.0, + 1072.0, + 980.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1071.0, + 934.0, + 1071.0, + 934.0, + 1094.0, + 891.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1071.0, + 992.0, + 1071.0, + 992.0, + 1094.0, + 949.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1070.0, + 1051.0, + 1070.0, + 1051.0, + 1094.0, + 1008.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1070.0, + 1111.0, + 1070.0, + 1111.0, + 1093.0, + 1068.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1070.0, + 1168.0, + 1070.0, + 1168.0, + 1094.0, + 1126.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1070.0, + 1227.0, + 1070.0, + 1227.0, + 1094.0, + 1184.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1087.0, + 1120.0, + 1087.0, + 1120.0, + 1109.0, + 1043.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1114.0, + 1144.0, + 1114.0, + 1144.0, + 1143.0, + 1008.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1404.0, + 1697.0, + 1404.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1762.0, + 294.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1758.0, + 1406.0, + 1758.0, + 1406.0, + 1793.0, + 332.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1404.0, + 1785.0, + 1404.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1818.0, + 1297.0, + 1818.0, + 1297.0, + 1855.0, + 291.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1855.0, + 1333.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1884.0, + 293.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1913.0, + 982.0, + 1913.0, + 982.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1944.0, + 1016.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2001.0, + 1404.0, + 2001.0, + 1404.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 1401.0, + 1512.0, + 1401.0, + 1542.0, + 296.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1404.0, + 1541.0, + 1404.0, + 1575.0, + 294.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1151.0, + 1572.0, + 1151.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1008, + 1403, + 1008, + 1403, + 1254, + 298, + 1254 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1268, + 1406, + 1268, + 1406, + 1605, + 297, + 1605 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1620, + 1404, + 1620, + 1404, + 1836, + 298, + 1836 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1851, + 1404, + 1851, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 356, + 225, + 1335, + 225, + 1335, + 815, + 356, + 815 + ], + "score": 0.978 + }, + { + "category_id": 4, + "poly": [ + 296, + 827, + 1405, + 827, + 1405, + 967, + 296, + 967 + ], + "score": 0.965 + }, + { + "category_id": 2, + "poly": [ + 301, + 77, + 856, + 77, + 856, + 103, + 301, + 103 + ], + "score": 0.798 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.107 + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 234.0, + 1265.0, + 234.0, + 1265.0, + 256.0, + 1113.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 245.0, + 517.0, + 245.0, + 517.0, + 267.0, + 366.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 244.0, + 837.0, + 244.0, + 837.0, + 265.0, + 810.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 245.0, + 1028.0, + 245.0, + 1028.0, + 267.0, + 999.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 248.0, + 1269.0, + 248.0, + 1269.0, + 269.0, + 1113.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 264.0, + 613.0, + 264.0, + 613.0, + 282.0, + 369.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 257.0, + 885.0, + 257.0, + 885.0, + 282.0, + 763.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 261.0, + 1071.0, + 261.0, + 1071.0, + 283.0, + 957.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 265.0, + 1287.0, + 265.0, + 1287.0, + 286.0, + 1113.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 277.0, + 616.0, + 277.0, + 616.0, + 298.0, + 364.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 276.0, + 867.0, + 276.0, + 867.0, + 298.0, + 778.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 279.0, + 1048.0, + 279.0, + 1048.0, + 297.0, + 978.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 281.0, + 1328.0, + 281.0, + 1328.0, + 302.0, + 1113.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 293.0, + 614.0, + 293.0, + 614.0, + 315.0, + 366.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 290.0, + 870.0, + 290.0, + 870.0, + 312.0, + 775.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 291.0, + 1058.0, + 291.0, + 1058.0, + 316.0, + 972.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 298.0, + 1328.0, + 298.0, + 1328.0, + 316.0, + 1115.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 308.0, + 597.0, + 308.0, + 597.0, + 329.0, + 364.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 307.0, + 863.0, + 307.0, + 863.0, + 328.0, + 783.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 307.0, + 1084.0, + 307.0, + 1084.0, + 332.0, + 949.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 312.0, + 1261.0, + 312.0, + 1261.0, + 330.0, + 1114.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 320.0, + 860.0, + 320.0, + 860.0, + 343.0, + 786.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 320.0, + 895.0, + 320.0, + 895.0, + 329.0, + 886.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 324.0, + 1064.0, + 324.0, + 1064.0, + 345.0, + 964.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 321.0, + 1332.0, + 321.0, + 1332.0, + 352.0, + 1112.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 342.0, + 1304.0, + 342.0, + 1304.0, + 363.0, + 1113.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 357.0, + 1277.0, + 357.0, + 1277.0, + 378.0, + 1113.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 385.0, + 676.0, + 385.0, + 676.0, + 407.0, + 649.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 385.0, + 823.0, + 385.0, + 823.0, + 407.0, + 795.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 382.0, + 983.0, + 382.0, + 983.0, + 404.0, + 956.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 395.0, + 521.0, + 395.0, + 521.0, + 417.0, + 369.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 398.0, + 718.0, + 398.0, + 718.0, + 424.0, + 612.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 400.0, + 844.0, + 400.0, + 844.0, + 421.0, + 775.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 399.0, + 1013.0, + 399.0, + 1013.0, + 421.0, + 928.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 409.0, + 559.0, + 409.0, + 559.0, + 433.0, + 370.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 417.0, + 725.0, + 417.0, + 725.0, + 438.0, + 600.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 416.0, + 857.0, + 416.0, + 857.0, + 437.0, + 765.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 414.0, + 1015.0, + 414.0, + 1015.0, + 436.0, + 922.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 409.0, + 1238.0, + 409.0, + 1238.0, + 430.0, + 1086.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 426.0, + 551.0, + 426.0, + 551.0, + 479.0, + 369.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 434.0, + 721.0, + 434.0, + 721.0, + 471.0, + 603.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 430.0, + 854.0, + 430.0, + 854.0, + 485.0, + 762.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 427.0, + 1012.0, + 427.0, + 1012.0, + 483.0, + 925.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 426.0, + 1329.0, + 426.0, + 1329.0, + 490.0, + 1085.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 542.0, + 951.0, + 542.0, + 951.0, + 553.0, + 941.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 559.0, + 498.0, + 559.0, + 498.0, + 581.0, + 471.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 560.0, + 730.0, + 560.0, + 730.0, + 581.0, + 703.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 553.0, + 957.0, + 553.0, + 957.0, + 576.0, + 930.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 553.0, + 1202.0, + 553.0, + 1202.0, + 576.0, + 1174.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 576.0, + 575.0, + 576.0, + 575.0, + 614.0, + 393.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 577.0, + 797.0, + 577.0, + 797.0, + 613.0, + 635.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 570.0, + 1026.0, + 570.0, + 1026.0, + 607.0, + 860.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 570.0, + 1287.0, + 570.0, + 1287.0, + 608.0, + 1093.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 628.0, + 569.0, + 628.0, + 569.0, + 696.0, + 367.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 625.0, + 804.0, + 625.0, + 804.0, + 698.0, + 631.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 616.0, + 1065.0, + 616.0, + 1065.0, + 700.0, + 840.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 620.0, + 1332.0, + 620.0, + 1332.0, + 705.0, + 1080.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 726.0, + 557.0, + 726.0, + 557.0, + 750.0, + 367.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 725.0, + 811.0, + 725.0, + 811.0, + 747.0, + 621.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 728.0, + 1040.0, + 728.0, + 1040.0, + 749.0, + 850.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 729.0, + 1264.0, + 729.0, + 1264.0, + 750.0, + 1076.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 744.0, + 600.0, + 744.0, + 600.0, + 765.0, + 368.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 741.0, + 823.0, + 741.0, + 823.0, + 763.0, + 620.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 744.0, + 1050.0, + 744.0, + 1050.0, + 765.0, + 849.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 745.0, + 1334.0, + 745.0, + 1334.0, + 766.0, + 1075.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 759.0, + 599.0, + 759.0, + 599.0, + 781.0, + 368.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 757.0, + 822.0, + 757.0, + 822.0, + 779.0, + 621.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 757.0, + 1051.0, + 757.0, + 1051.0, + 780.0, + 848.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 762.0, + 1332.0, + 762.0, + 1332.0, + 780.0, + 1076.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 774.0, + 600.0, + 774.0, + 600.0, + 796.0, + 368.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 773.0, + 822.0, + 773.0, + 822.0, + 795.0, + 621.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 775.0, + 1051.0, + 775.0, + 1051.0, + 797.0, + 849.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 775.0, + 1332.0, + 775.0, + 1332.0, + 797.0, + 1075.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 790.0, + 554.0, + 790.0, + 554.0, + 812.0, + 367.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 790.0, + 807.0, + 790.0, + 807.0, + 808.0, + 621.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 790.0, + 1035.0, + 790.0, + 1035.0, + 812.0, + 849.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 791.0, + 1322.0, + 791.0, + 1322.0, + 813.0, + 1075.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 827.0, + 1405.0, + 827.0, + 1405.0, + 858.0, + 295.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 1406.0, + 853.0, + 1406.0, + 888.0, + 294.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 907.0, + 1406.0, + 907.0, + 1406.0, + 945.0, + 293.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 764.0, + 934.0, + 764.0, + 972.0, + 293.0, + 972.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, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1006.0, + 1404.0, + 1006.0, + 1404.0, + 1047.0, + 292.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1041.0, + 1405.0, + 1041.0, + 1405.0, + 1073.0, + 293.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1105.0, + 296.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1100.0, + 1408.0, + 1100.0, + 1408.0, + 1136.0, + 292.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1130.0, + 1407.0, + 1130.0, + 1407.0, + 1166.0, + 292.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1161.0, + 1408.0, + 1161.0, + 1408.0, + 1198.0, + 293.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1407.0, + 1190.0, + 1407.0, + 1230.0, + 292.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 1405.0, + 1224.0, + 1405.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1268.0, + 1406.0, + 1268.0, + 1406.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1300.0, + 1404.0, + 1300.0, + 1404.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1331.0, + 1406.0, + 1331.0, + 1406.0, + 1364.0, + 292.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1396.0, + 295.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1388.0, + 1408.0, + 1388.0, + 1408.0, + 1429.0, + 292.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1409.0, + 1420.0, + 1409.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1406.0, + 1481.0, + 1406.0, + 1520.0, + 292.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1548.0, + 292.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1404.0, + 1545.0, + 1404.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 1189.0, + 1573.0, + 1189.0, + 1612.0, + 294.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1653.0, + 1404.0, + 1653.0, + 1404.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1717.0, + 294.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1712.0, + 1405.0, + 1712.0, + 1405.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1409.0, + 1849.0, + 1409.0, + 1883.0, + 294.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1408.0, + 1910.0, + 1408.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1115, + 1406, + 1115, + 1406, + 1452, + 297, + 1452 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 816, + 1405, + 816, + 1405, + 1000, + 298, + 1000 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 300, + 1045, + 543, + 1045, + 543, + 1080, + 300, + 1080 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 104, + 298, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 299, + 1499, + 488, + 1499, + 488, + 1532, + 299, + 1532 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 329, + 467, + 1228, + 467, + 1228, + 514, + 329, + 514 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 334, + 381, + 1006, + 381, + 1006, + 426, + 334, + 426 + ], + "score": 0.848 + }, + { + "category_id": 0, + "poly": [ + 332, + 527, + 799, + 527, + 799, + 548, + 332, + 548 + ], + "score": 0.787 + }, + { + "category_id": 0, + "poly": [ + 331, + 443, + 625, + 443, + 625, + 464, + 331, + 464 + ], + "score": 0.777 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.774 + }, + { + "category_id": 0, + "poly": [ + 330, + 359, + 617, + 359, + 617, + 379, + 330, + 379 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 335, + 258, + 1356, + 258, + 1356, + 342, + 335, + 342 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 335, + 549, + 1356, + 549, + 1356, + 692, + 335, + 692 + ], + "score": 0.707 + }, + { + "category_id": 0, + "poly": [ + 332, + 242, + 416, + 242, + 416, + 260, + 332, + 260 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 300, + 1550, + 1403, + 1550, + 1403, + 1614, + 300, + 1614 + ], + "score": 0.623 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1397, + 1972, + 1397, + 2034, + 299, + 2034 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 299, + 1634, + 1078, + 1634, + 1078, + 1668, + 299, + 1668 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 298, + 1688, + 1402, + 1688, + 1402, + 1751, + 298, + 1751 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 296, + 1887, + 1399, + 1887, + 1399, + 1949, + 296, + 1949 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 299, + 711, + 1401, + 711, + 1401, + 769, + 299, + 769 + ], + "score": 0.467 + }, + { + "category_id": 1, + "poly": [ + 300, + 1772, + 1402, + 1772, + 1402, + 1866, + 300, + 1866 + ], + "score": 0.465 + }, + { + "category_id": 4, + "poly": [ + 299, + 711, + 1401, + 711, + 1401, + 769, + 299, + 769 + ], + "score": 0.404 + }, + { + "category_id": 13, + "poly": [ + 333, + 382, + 351, + 382, + 351, + 400, + 333, + 400 + ], + "score": 0.34, + "latex": "^ { \\circ }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1041.0, + 548.0, + 1041.0, + 548.0, + 1089.0, + 292.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1499.0, + 490.0, + 1499.0, + 490.0, + 1536.0, + 297.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 520.0, + 803.0, + 520.0, + 803.0, + 556.0, + 328.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 440.0, + 628.0, + 440.0, + 628.0, + 466.0, + 329.0, + 466.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": [ + 330.0, + 356.0, + 621.0, + 356.0, + 621.0, + 382.0, + 330.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 238.0, + 419.0, + 238.0, + 419.0, + 265.0, + 329.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 740.0, + 1099.0, + 740.0, + 1099.0, + 771.0, + 295.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 1406.0, + 1115.0, + 1406.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 1404.0, + 1146.0, + 1404.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1214.0, + 292.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1207.0, + 1406.0, + 1207.0, + 1406.0, + 1241.0, + 296.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 1404.0, + 1239.0, + 1404.0, + 1270.0, + 296.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1266.0, + 1406.0, + 1266.0, + 1406.0, + 1303.0, + 294.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1297.0, + 1404.0, + 1297.0, + 1404.0, + 1332.0, + 295.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1406.0, + 1326.0, + 1406.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 1408.0, + 1359.0, + 1408.0, + 1394.0, + 295.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1389.0, + 1408.0, + 1389.0, + 1408.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1420.0, + 1301.0, + 1420.0, + 1301.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 815.0, + 1405.0, + 815.0, + 1405.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 883.0, + 295.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1407.0, + 878.0, + 1407.0, + 913.0, + 295.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 908.0, + 1403.0, + 908.0, + 1403.0, + 940.0, + 293.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 937.0, + 1405.0, + 937.0, + 1405.0, + 973.0, + 295.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 969.0, + 1177.0, + 969.0, + 1177.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 464.0, + 1227.0, + 464.0, + 1227.0, + 491.0, + 332.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 491.0, + 1198.0, + 491.0, + 1198.0, + 516.0, + 333.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 377.0, + 1011.0, + 377.0, + 1011.0, + 404.0, + 352.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 410.0, + 350.0, + 410.0, + 350.0, + 422.0, + 337.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 404.0, + 1005.0, + 404.0, + 1005.0, + 427.0, + 351.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 263.0, + 352.0, + 263.0, + 352.0, + 277.0, + 335.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 257.0, + 1355.0, + 257.0, + 1355.0, + 283.0, + 353.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 279.0, + 1352.0, + 279.0, + 1352.0, + 303.0, + 354.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 300.0, + 1353.0, + 300.0, + 1353.0, + 322.0, + 355.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 320.0, + 1352.0, + 320.0, + 1352.0, + 341.0, + 356.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 550.0, + 1352.0, + 550.0, + 1352.0, + 570.0, + 338.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 570.0, + 1352.0, + 570.0, + 1352.0, + 590.0, + 356.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 588.0, + 1352.0, + 588.0, + 1352.0, + 612.0, + 355.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 609.0, + 1353.0, + 609.0, + 1353.0, + 633.0, + 356.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 632.0, + 1351.0, + 632.0, + 1351.0, + 652.0, + 357.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 648.0, + 1353.0, + 648.0, + 1353.0, + 674.0, + 355.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 671.0, + 1153.0, + 671.0, + 1153.0, + 694.0, + 354.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1579.0, + 884.0, + 1579.0, + 884.0, + 1617.0, + 321.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2007.0, + 298.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 1201.0, + 2003.0, + 1201.0, + 2035.0, + 323.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 1077.0, + 1633.0, + 1077.0, + 1670.0, + 295.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1404.0, + 1686.0, + 1404.0, + 1725.0, + 293.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1718.0, + 763.0, + 1718.0, + 763.0, + 1753.0, + 322.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1403.0, + 1885.0, + 1403.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1917.0, + 498.0, + 1917.0, + 498.0, + 1950.0, + 321.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 708.0, + 1405.0, + 708.0, + 1405.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 740.0, + 1099.0, + 740.0, + 1099.0, + 771.0, + 295.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1769.0, + 1408.0, + 1769.0, + 1408.0, + 1811.0, + 295.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1836.0, + 320.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1834.0, + 611.0, + 1834.0, + 611.0, + 1869.0, + 324.0, + 1869.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 106, + 298, + 106 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 297, + 1261, + 1404, + 1261, + 1404, + 1326, + 297, + 1326 + ], + "score": 0.6 + }, + { + "category_id": 1, + "poly": [ + 293, + 1517, + 1405, + 1517, + 1405, + 1583, + 293, + 1583 + ], + "score": 0.599 + }, + { + "category_id": 1, + "poly": [ + 297, + 1175, + 1402, + 1175, + 1402, + 1242, + 297, + 1242 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 293, + 1690, + 1381, + 1690, + 1381, + 1725, + 293, + 1725 + ], + "score": 0.58 + }, + { + "category_id": 1, + "poly": [ + 298, + 1346, + 1403, + 1346, + 1403, + 1412, + 298, + 1412 + ], + "score": 0.575 + }, + { + "category_id": 1, + "poly": [ + 296, + 1432, + 1405, + 1432, + 1405, + 1497, + 296, + 1497 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 295, + 1090, + 1401, + 1090, + 1401, + 1156, + 295, + 1156 + ], + "score": 0.543 + }, + { + "category_id": 1, + "poly": [ + 298, + 974, + 1403, + 974, + 1403, + 1068, + 298, + 1068 + ], + "score": 0.537 + }, + { + "category_id": 1, + "poly": [ + 293, + 1603, + 1404, + 1603, + 1404, + 1669, + 293, + 1669 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 299, + 1744, + 1278, + 1744, + 1278, + 1780, + 299, + 1780 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 300, + 772, + 1401, + 772, + 1401, + 867, + 300, + 867 + ], + "score": 0.506 + }, + { + "category_id": 1, + "poly": [ + 293, + 888, + 1403, + 888, + 1403, + 953, + 293, + 953 + ], + "score": 0.502 + }, + { + "category_id": 1, + "poly": [ + 297, + 686, + 1400, + 686, + 1400, + 754, + 297, + 754 + ], + "score": 0.475 + }, + { + "category_id": 1, + "poly": [ + 296, + 601, + 1400, + 601, + 1400, + 667, + 296, + 667 + ], + "score": 0.463 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 294, + 294, + 294 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1399, + 1971, + 1399, + 2035, + 299, + 2035 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 296, + 486, + 1402, + 486, + 1402, + 582, + 296, + 582 + ], + "score": 0.435 + }, + { + "category_id": 1, + "poly": [ + 295, + 1800, + 1400, + 1800, + 1400, + 1864, + 295, + 1864 + ], + "score": 0.425 + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1399, + 1884, + 1399, + 1951, + 299, + 1951 + ], + "score": 0.423 + }, + { + "category_id": 1, + "poly": [ + 300, + 399, + 1402, + 399, + 1402, + 466, + 300, + 466 + ], + "score": 0.415 + }, + { + "category_id": 1, + "poly": [ + 297, + 313, + 1405, + 313, + 1405, + 379, + 297, + 379 + ], + "score": 0.39 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1257.0, + 1408.0, + 1257.0, + 1408.0, + 1301.0, + 292.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1291.0, + 691.0, + 1291.0, + 691.0, + 1327.0, + 320.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1515.0, + 1408.0, + 1515.0, + 1408.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1547.0, + 531.0, + 1547.0, + 531.0, + 1584.0, + 320.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1169.0, + 1407.0, + 1169.0, + 1407.0, + 1218.0, + 292.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1206.0, + 532.0, + 1206.0, + 532.0, + 1242.0, + 322.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1688.0, + 1381.0, + 1688.0, + 1381.0, + 1727.0, + 296.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1343.0, + 1405.0, + 1343.0, + 1405.0, + 1386.0, + 293.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1380.0, + 774.0, + 1380.0, + 774.0, + 1411.0, + 322.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1430.0, + 1407.0, + 1430.0, + 1407.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1464.0, + 712.0, + 1464.0, + 712.0, + 1497.0, + 323.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 1406.0, + 1089.0, + 1406.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1122.0, + 678.0, + 1122.0, + 678.0, + 1154.0, + 323.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1010.0, + 294.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1006.0, + 1408.0, + 1006.0, + 1408.0, + 1040.0, + 322.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1033.0, + 397.0, + 1033.0, + 397.0, + 1070.0, + 318.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 1409.0, + 1602.0, + 1409.0, + 1641.0, + 294.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1633.0, + 1097.0, + 1633.0, + 1097.0, + 1670.0, + 322.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1744.0, + 1280.0, + 1744.0, + 1280.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 1407.0, + 770.0, + 1407.0, + 811.0, + 293.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 805.0, + 1406.0, + 805.0, + 1406.0, + 839.0, + 321.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 829.0, + 401.0, + 829.0, + 401.0, + 870.0, + 320.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 887.0, + 1405.0, + 887.0, + 1405.0, + 924.0, + 295.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 919.0, + 679.0, + 919.0, + 679.0, + 955.0, + 324.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 685.0, + 1405.0, + 685.0, + 1405.0, + 727.0, + 293.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 717.0, + 1168.0, + 717.0, + 1168.0, + 754.0, + 322.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 602.0, + 1405.0, + 602.0, + 1405.0, + 638.0, + 296.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 633.0, + 933.0, + 633.0, + 933.0, + 669.0, + 323.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1035.0, + 262.0, + 1035.0, + 294.0, + 323.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1967.0, + 1404.0, + 1967.0, + 1404.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2003.0, + 721.0, + 2003.0, + 721.0, + 2034.0, + 324.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 484.0, + 1406.0, + 484.0, + 1406.0, + 524.0, + 293.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 518.0, + 1406.0, + 518.0, + 1406.0, + 552.0, + 323.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 547.0, + 909.0, + 547.0, + 909.0, + 585.0, + 319.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1800.0, + 1404.0, + 1800.0, + 1404.0, + 1836.0, + 294.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1831.0, + 742.0, + 1831.0, + 742.0, + 1865.0, + 318.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1885.0, + 1404.0, + 1885.0, + 1404.0, + 1921.0, + 295.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1918.0, + 1176.0, + 1918.0, + 1176.0, + 1951.0, + 320.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 400.0, + 1409.0, + 400.0, + 1409.0, + 436.0, + 295.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 431.0, + 1319.0, + 431.0, + 1319.0, + 468.0, + 323.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 311.0, + 1414.0, + 311.0, + 1414.0, + 354.0, + 292.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 349.0, + 673.0, + 349.0, + 673.0, + 378.0, + 322.0, + 378.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 292, + 146, + 1409, + 146, + 1409, + 2060, + 292, + 2060 + ], + "score": 0.662 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 222.0, + 1413.0, + 222.0, + 1413.0, + 274.0, + 289.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 255.0, + 536.0, + 255.0, + 536.0, + 300.0, + 319.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 312.0, + 1410.0, + 312.0, + 1410.0, + 352.0, + 295.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 337.0, + 1410.0, + 337.0, + 1410.0, + 386.0, + 314.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 377.0, + 897.0, + 377.0, + 897.0, + 411.0, + 322.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 419.0, + 1410.0, + 419.0, + 1410.0, + 469.0, + 289.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 457.0, + 1100.0, + 457.0, + 1100.0, + 490.0, + 322.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 1406.0, + 507.0, + 1406.0, + 547.0, + 295.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 539.0, + 931.0, + 539.0, + 931.0, + 579.0, + 318.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 591.0, + 1408.0, + 591.0, + 1408.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 620.0, + 635.0, + 620.0, + 635.0, + 660.0, + 318.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 673.0, + 1408.0, + 673.0, + 1408.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 704.0, + 1007.0, + 704.0, + 1007.0, + 744.0, + 318.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 755.0, + 1406.0, + 755.0, + 1406.0, + 795.0, + 295.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 786.0, + 1210.0, + 786.0, + 1210.0, + 826.0, + 318.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 874.0, + 295.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 868.0, + 658.0, + 868.0, + 658.0, + 906.0, + 316.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 920.0, + 1408.0, + 920.0, + 1408.0, + 960.0, + 293.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 952.0, + 912.0, + 952.0, + 912.0, + 990.0, + 316.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1000.0, + 1408.0, + 1000.0, + 1408.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1034.0, + 800.0, + 1034.0, + 800.0, + 1071.0, + 316.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1084.0, + 1408.0, + 1084.0, + 1408.0, + 1126.0, + 291.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1116.0, + 893.0, + 1116.0, + 893.0, + 1153.0, + 316.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1204.0, + 295.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1197.0, + 1408.0, + 1197.0, + 1408.0, + 1239.0, + 316.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1229.0, + 933.0, + 1229.0, + 933.0, + 1269.0, + 320.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1281.0, + 1406.0, + 1281.0, + 1406.0, + 1321.0, + 293.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1311.0, + 1246.0, + 1311.0, + 1246.0, + 1351.0, + 318.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1365.0, + 1406.0, + 1365.0, + 1406.0, + 1399.0, + 297.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1397.0, + 965.0, + 1397.0, + 965.0, + 1430.0, + 320.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1408.0, + 1443.0, + 1408.0, + 1485.0, + 293.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1476.0, + 766.0, + 1476.0, + 766.0, + 1516.0, + 318.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1529.0, + 1408.0, + 1529.0, + 1408.0, + 1569.0, + 293.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1560.0, + 398.0, + 1560.0, + 398.0, + 1596.0, + 320.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1604.0, + 1408.0, + 1604.0, + 1408.0, + 1655.0, + 289.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1644.0, + 1089.0, + 1644.0, + 1089.0, + 1678.0, + 322.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1697.0, + 1408.0, + 1697.0, + 1408.0, + 1730.0, + 295.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1724.0, + 1186.0, + 1724.0, + 1186.0, + 1762.0, + 316.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1779.0, + 1408.0, + 1779.0, + 1408.0, + 1812.0, + 297.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1810.0, + 1229.0, + 1810.0, + 1229.0, + 1844.0, + 320.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1858.0, + 1410.0, + 1858.0, + 1410.0, + 1898.0, + 295.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1892.0, + 1074.0, + 1892.0, + 1074.0, + 1925.0, + 320.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1938.0, + 1406.0, + 1938.0, + 1406.0, + 1980.0, + 291.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1969.0, + 1410.0, + 1969.0, + 1410.0, + 2011.0, + 318.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 2003.0, + 575.0, + 2003.0, + 575.0, + 2036.0, + 318.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 106, + 298, + 106 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 292, + 218, + 1409, + 218, + 1409, + 1127, + 292, + 1127 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.831 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 264.0, + 716.0, + 264.0, + 716.0, + 298.0, + 322.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 312.0, + 1289.0, + 312.0, + 1289.0, + 351.0, + 293.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 366.0, + 1406.0, + 366.0, + 1406.0, + 405.0, + 294.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 396.0, + 1387.0, + 396.0, + 1387.0, + 435.0, + 321.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 1407.0, + 449.0, + 1407.0, + 488.0, + 294.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 480.0, + 1408.0, + 480.0, + 1408.0, + 517.0, + 321.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 531.0, + 1406.0, + 531.0, + 1406.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 563.0, + 625.0, + 563.0, + 625.0, + 598.0, + 321.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 614.0, + 1407.0, + 614.0, + 1407.0, + 654.0, + 293.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 646.0, + 1406.0, + 646.0, + 1406.0, + 685.0, + 322.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 678.0, + 798.0, + 678.0, + 798.0, + 713.0, + 322.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 725.0, + 1405.0, + 725.0, + 1405.0, + 768.0, + 293.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 760.0, + 890.0, + 760.0, + 890.0, + 795.0, + 322.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 844.0, + 1164.0, + 844.0, + 1164.0, + 879.0, + 322.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 891.0, + 1407.0, + 891.0, + 1407.0, + 935.0, + 293.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 925.0, + 1238.0, + 925.0, + 1238.0, + 963.0, + 321.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 975.0, + 1408.0, + 975.0, + 1408.0, + 1017.0, + 293.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1009.0, + 619.0, + 1009.0, + 619.0, + 1045.0, + 322.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1058.0, + 1407.0, + 1058.0, + 1407.0, + 1100.0, + 293.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1091.0, + 1080.0, + 1091.0, + 1080.0, + 1129.0, + 319.0, + 1129.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 593, + 1407, + 593, + 1407, + 964, + 296, + 964 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 291, + 1404, + 291, + 1404, + 419, + 298, + 419 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1270, + 1406, + 1270, + 1406, + 1432, + 297, + 1432 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1910, + 1404, + 1910, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 584, + 1618, + 1117, + 1618, + 1117, + 1810, + 584, + 1810 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 495, + 431, + 1200, + 431, + 1200, + 521, + 495, + 521 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 301, + 1086, + 1402, + 1086, + 1402, + 1154, + 301, + 1154 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 298, + 1540, + 1403, + 1540, + 1403, + 1607, + 298, + 1607 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 308, + 977, + 1336, + 977, + 1336, + 1072, + 308, + 1072 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 300, + 546, + 1237, + 546, + 1237, + 581, + 300, + 581 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 296, + 1169, + 1396, + 1169, + 1396, + 1248, + 296, + 1248 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 300, + 1840, + 768, + 1840, + 768, + 1878, + 300, + 1878 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 301, + 1475, + 698, + 1475, + 698, + 1511, + 301, + 1511 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1698, + 1400, + 1698, + 1400, + 1729, + 1352, + 1729 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1365, + 484, + 1400, + 484, + 1400, + 514, + 1365, + 514 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 301, + 224, + 591, + 224, + 591, + 262, + 301, + 262 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1244, + 1399, + 1244, + 1399, + 1271, + 1352, + 1271 + ], + "score": 0.846 + }, + { + "category_id": 9, + "poly": [ + 1354, + 1009, + 1400, + 1009, + 1400, + 1039, + 1354, + 1039 + ], + "score": 0.836 + }, + { + "category_id": 14, + "poly": [ + 585, + 1615, + 1119, + 1615, + 1119, + 1816, + 585, + 1816 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { z _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { z } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { z } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { z } ^ { l } \\right) } \\\\ & { r _ { j , t } ^ { l } = \\sigma \\left( \\mathbf { W } _ { r } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { r } ^ { l } \\pmb { h } _ { j , t } ^ { l } + \\mathbf { b } _ { r } ^ { l } \\right) } \\\\ & { \\hat { h } _ { j , t } ^ { l } = \\operatorname { t a n h } \\left( \\mathbf { W } _ { h } ^ { l } \\pmb { \\theta } _ { j } ^ { l } + \\mathbf { U } _ { h } ^ { l } \\left( r _ { j , t } ^ { l } \\odot { h } _ { j , t } ^ { l } \\right) + \\mathbf { b } _ { h } ^ { l } \\right) } \\\\ & { a _ { j , t } ^ { l } = \\left( 1 - z _ { j , t } ^ { l } \\right) \\odot { h } _ { j , t } ^ { l } + z _ { j , t } ^ { l } \\odot \\hat { h } _ { j , t } ^ { l } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 975, + 291, + 1070, + 291, + 1070, + 331, + 975, + 331 + ], + "score": 0.94, + "latex": "d \\in \\mathbb { Z } _ { + } ^ { V _ { c } }" + }, + { + "category_id": 13, + "poly": [ + 552, + 931, + 659, + 931, + 659, + 964, + 552, + 964 + ], + "score": 0.93, + "latex": "\\{ y _ { 1 : T } , d \\}" + }, + { + "category_id": 13, + "poly": [ + 443, + 296, + 550, + 296, + 550, + 330, + 443, + 330 + ], + "score": 0.93, + "latex": "\\{ y _ { 1 : T } , d \\}" + }, + { + "category_id": 13, + "poly": [ + 831, + 1084, + 1177, + 1084, + 1177, + 1127, + 831, + 1127 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { Q = \\prod _ { l = 1 } ^ { L } q ( \\pmb { \\theta } ^ { l } | \\pmb { d } , \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 309, + 975, + 1344, + 975, + 1344, + 1072, + 309, + 1072 + ], + "score": 0.93, + "latex": "p \\left( \\boldsymbol { y } _ { 1 : T } , d \\mid \\{ \\Phi ^ { l } \\} _ { l } \\right) = \\int p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) \\left[ \\prod _ { t = 1 } ^ { T } p \\left( \\boldsymbol { y } _ { t } \\mid \\boldsymbol { y } _ { 1 : t - 1 } , \\boldsymbol { \\theta } ^ { 1 : L } \\right) \\right] \\left[ \\prod _ { l = 1 } ^ { L } p \\left( \\boldsymbol { \\theta } ^ { l } \\mid \\Phi ^ { l + 1 } \\boldsymbol { \\theta } ^ { l + 1 } \\right) \\right] d \\boldsymbol { \\theta } ^ { 1 : L } ." + }, + { + "category_id": 13, + "poly": [ + 650, + 1542, + 868, + 1542, + 868, + 1583, + 650, + 1583 + ], + "score": 0.93, + "latex": "\\mathbf { \\Delta } _ { \\cdot \\cdot } ^ { a _ { j , t } ^ { l } } = g ^ { l } \\left( h _ { j , t } ^ { l } , \\theta _ { j } ^ { l } \\right)" + }, + { + "category_id": 13, + "poly": [ + 788, + 1272, + 1058, + 1272, + 1058, + 1307, + 788, + 1307 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { p _ { \\mathrm { d a t a } } ( y _ { 1 : T } , d ) } [ L ( y _ { 1 : T } , d ) ]" + }, + { + "category_id": 14, + "poly": [ + 497, + 430, + 1198, + 430, + 1198, + 525, + 497, + 525 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\pmb { \\theta } ^ { L } \\sim \\mathrm { G a m } \\left( r , c ^ { L + 1 } \\right) , \\ldots , \\pmb { \\theta } ^ { l } \\sim \\mathrm { G a m } \\left( \\Phi ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , c ^ { l + 1 } \\right) , \\ldots , } \\\\ & { \\pmb { \\theta } ^ { 1 } \\sim \\mathrm { G a m } \\left( \\Phi ^ { 2 } \\pmb { \\theta } ^ { 2 } , c ^ { 2 } \\right) , \\ d \\sim \\mathrm { P o i s } \\left( \\Phi ^ { 1 } \\pmb { \\theta } ^ { 1 } \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1258, + 900, + 1293, + 900, + 1293, + 934, + 1258, + 934 + ], + "score": 0.9, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 584, + 655, + 620, + 655, + 620, + 691, + 584, + 691 + ], + "score": 0.9, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 996, + 837, + 1032, + 837, + 1032, + 874, + 996, + 874 + ], + "score": 0.9, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 409, + 1305, + 998, + 1305, + 998, + 1342, + 409, + 1342 + ], + "score": 0.88, + "latex": "q ( \\pmb { \\theta } ^ { l } \\mid d , \\pmb { \\Phi } ^ { l + 1 } , \\pmb { \\theta } ^ { l + 1 } ) = \\mathrm { W e i b u l l } ( \\pmb { k } ^ { l } + \\pmb { \\Phi } ^ { l + 1 } \\pmb { \\theta } ^ { l + 1 } , \\pmb { \\lambda } ^ { l } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1167, + 1404, + 1167, + 1404, + 1248, + 310, + 1248 + ], + "score": 0.88, + "latex": "{ \\overset { , } { \\left( } { y _ { 1 : T } , d \\right) } } = \\mathbb { E } _ { Q } \\left[ \\ln p \\left( d \\mid \\Phi ^ { 1 } \\theta ^ { 1 } \\right) + \\sum _ { t = 1 } ^ { T } \\ln p \\left( y _ { t } \\mid y _ { 1 : t - 1 } , \\theta ^ { 1 : L } \\right) \\right] - \\sum _ { l = 1 } ^ { L } \\mathbb { E } _ { Q } \\left[ \\ln { \\frac { q \\left( \\theta ^ { l } \\mid d , \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } { p \\left( \\theta ^ { l } \\mid \\Phi ^ { l + 1 } \\theta ^ { l + 1 } \\right) } } \\right]" + }, + { + "category_id": 13, + "poly": [ + 808, + 844, + 859, + 844, + 859, + 871, + 808, + 871 + ], + "score": 0.88, + "latex": "y _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 776, + 1125, + 776, + 1125, + 806, + 1098, + 806 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 360, + 1133, + 360, + 1133, + 389, + 1081, + 389 + ], + "score": 0.87, + "latex": "y _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1305, + 1170, + 1305, + 1170, + 1336, + 1141, + 1336 + ], + "score": 0.87, + "latex": "k ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1306, + 1250, + 1306, + 1250, + 1337, + 1220, + 1337 + ], + "score": 0.86, + "latex": "\\lambda ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 347, + 389, + 368, + 389, + 368, + 415, + 347, + 415 + ], + "score": 0.84, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 654, + 780, + 675, + 780, + 675, + 806, + 654, + 806 + ], + "score": 0.8, + "latex": "^ d" + }, + { + "category_id": 13, + "poly": [ + 842, + 810, + 863, + 810, + 863, + 836, + 842, + 836 + ], + "score": 0.76, + "latex": "\\textbf { \\em d }" + }, + { + "category_id": 13, + "poly": [ + 597, + 1342, + 618, + 1342, + 618, + 1367, + 597, + 1367 + ], + "score": 0.74, + "latex": "^ d" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 773.0, + 1839.0, + 773.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 702.0, + 1471.0, + 702.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 595.0, + 222.0, + 595.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 593.0, + 1405.0, + 593.0, + 1405.0, + 630.0, + 293.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 624.0, + 1409.0, + 624.0, + 1409.0, + 663.0, + 293.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 652.0, + 583.0, + 652.0, + 583.0, + 695.0, + 291.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 652.0, + 1409.0, + 652.0, + 1409.0, + 695.0, + 621.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 1409.0, + 688.0, + 1409.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 713.0, + 1407.0, + 713.0, + 1407.0, + 755.0, + 291.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 782.0, + 294.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 776.0, + 653.0, + 776.0, + 653.0, + 815.0, + 291.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 776.0, + 1097.0, + 776.0, + 1097.0, + 815.0, + 676.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 776.0, + 1408.0, + 776.0, + 1408.0, + 815.0, + 1126.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 807.0, + 841.0, + 807.0, + 841.0, + 844.0, + 293.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 844.0, + 864.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 839.0, + 807.0, + 839.0, + 807.0, + 877.0, + 293.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 839.0, + 995.0, + 839.0, + 995.0, + 877.0, + 860.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 839.0, + 1408.0, + 839.0, + 1408.0, + 877.0, + 1033.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 866.0, + 1407.0, + 866.0, + 1407.0, + 909.0, + 290.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 900.0, + 1257.0, + 900.0, + 1257.0, + 938.0, + 293.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 900.0, + 1405.0, + 900.0, + 1405.0, + 938.0, + 1294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 551.0, + 929.0, + 551.0, + 967.0, + 294.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 929.0, + 809.0, + 929.0, + 809.0, + 967.0, + 660.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 288.0, + 442.0, + 288.0, + 442.0, + 334.0, + 292.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 288.0, + 974.0, + 288.0, + 974.0, + 334.0, + 551.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 288.0, + 1409.0, + 288.0, + 1409.0, + 334.0, + 1071.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1404.0, + 327.0, + 1404.0, + 360.0, + 294.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 355.0, + 1080.0, + 355.0, + 1080.0, + 391.0, + 293.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 355.0, + 1406.0, + 355.0, + 1406.0, + 391.0, + 1134.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 388.0, + 346.0, + 388.0, + 346.0, + 422.0, + 294.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 388.0, + 989.0, + 388.0, + 989.0, + 422.0, + 369.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1266.0, + 787.0, + 1266.0, + 787.0, + 1317.0, + 291.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1266.0, + 1412.0, + 1266.0, + 1412.0, + 1317.0, + 1059.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1302.0, + 408.0, + 1302.0, + 408.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1302.0, + 1140.0, + 1302.0, + 1140.0, + 1344.0, + 999.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1302.0, + 1219.0, + 1302.0, + 1219.0, + 1344.0, + 1171.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1302.0, + 1409.0, + 1302.0, + 1409.0, + 1344.0, + 1251.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1339.0, + 596.0, + 1339.0, + 596.0, + 1373.0, + 295.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1373.0, + 619.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1369.0, + 1408.0, + 1369.0, + 1408.0, + 1403.0, + 295.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1400.0, + 1045.0, + 1400.0, + 1045.0, + 1434.0, + 296.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1908.0, + 1404.0, + 1908.0, + 1404.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1402.0, + 1942.0, + 1402.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1081.0, + 830.0, + 1081.0, + 830.0, + 1133.0, + 291.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1081.0, + 1408.0, + 1081.0, + 1408.0, + 1133.0, + 1178.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1123.0, + 800.0, + 1123.0, + 800.0, + 1155.0, + 297.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1538.0, + 649.0, + 1538.0, + 649.0, + 1585.0, + 291.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1538.0, + 1407.0, + 1538.0, + 1407.0, + 1585.0, + 869.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1572.0, + 720.0, + 1572.0, + 720.0, + 1610.0, + 292.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 546.0, + 1242.0, + 546.0, + 1242.0, + 585.0, + 294.0, + 585.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 301, + 627, + 1402, + 627, + 1402, + 752, + 301, + 752 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 301, + 1294, + 1398, + 1294, + 1398, + 1414, + 301, + 1414 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1663, + 1407, + 1663, + 1407, + 1814, + 296, + 1814 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 469, + 1133, + 1231, + 1133, + 1231, + 1288, + 469, + 1288 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 337, + 1404, + 337, + 1404, + 444, + 299, + 444 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 489, + 1502, + 1211, + 1502, + 1211, + 1657, + 489, + 1657 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1404, + 228, + 1404, + 325, + 296, + 325 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 387, + 858, + 1308, + 858, + 1308, + 953, + 387, + 953 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 292, + 1058, + 1398, + 1058, + 1398, + 1125, + 292, + 1125 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 980, + 1404, + 980, + 1404, + 1049, + 295, + 1049 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1427, + 1401, + 1427, + 1401, + 1494, + 298, + 1494 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 298, + 1920, + 1404, + 1920, + 1404, + 1986, + 298, + 1986 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 296, + 825, + 459, + 825, + 459, + 855, + 296, + 855 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 485, + 764, + 1211, + 764, + 1211, + 818, + 485, + 818 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 341, + 451, + 1184, + 451, + 1184, + 542, + 341, + 542 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 858, + 74, + 858, + 105, + 298, + 105 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 332, + 2004, + 982, + 2004, + 982, + 2035, + 332, + 2035 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 344, + 548, + 1310, + 548, + 1310, + 618, + 344, + 618 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 297, + 1854, + 507, + 1854, + 507, + 1891, + 297, + 1891 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1231, + 1401, + 1231, + 1401, + 1263, + 1350, + 1263 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1351, + 479, + 1400, + 479, + 1400, + 510, + 1351, + 510 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1350, + 1600, + 1401, + 1600, + 1401, + 1632, + 1350, + 1632 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1351, + 774, + 1400, + 774, + 1400, + 804, + 1351, + 804 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1351, + 888, + 1400, + 888, + 1400, + 917, + 1351, + 917 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1352, + 567, + 1401, + 567, + 1401, + 596, + 1352, + 596 + ], + "score": 0.858 + }, + { + "category_id": 14, + "poly": [ + 488, + 1499, + 1212, + 1499, + 1212, + 1660, + 488, + 1660 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\left( \\pi _ { k } ^ { l } \\right) _ { n + 1 } = \\biggr [ \\left( \\pi _ { k } ^ { l } \\right) _ { n } + \\frac { \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { : k } ^ { l } \\right) - \\left( \\rho \\tilde { Z } _ { : k \\cdot } ^ { l } + \\eta _ { . k } ^ { l } \\right) \\left( \\pi _ { k } ^ { l } \\right) _ { n } \\right] } \\\\ & { \\qquad + \\mathcal { N } \\left( 0 , \\frac { 2 \\varepsilon _ { n } } { M _ { k } ^ { l } } \\left[ \\mathrm { d i a g } ( \\pi _ { k } ^ { l } ) _ { n } - ( \\pi _ { k } ^ { l } ) _ { n } ( \\pi _ { k } ^ { l } ) _ { n } ^ { T } \\right] \\right) \\biggr ] _ { \\angle } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 891, + 631, + 945, + 631, + 945, + 670, + 891, + 670 + ], + "score": 0.93, + "latex": "x _ { k j } ^ { l + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 260, + 1369, + 260, + 1369, + 296, + 1227, + 296 + ], + "score": 0.93, + "latex": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 761, + 373, + 901, + 373, + 901, + 416, + 761, + 416 + ], + "score": 0.93, + "latex": "x _ { k j } ^ { ( 1 , 1 ) } = d _ { v j }" + }, + { + "category_id": 14, + "poly": [ + 469, + 1130, + 1231, + 1130, + 1231, + 1291, + 469, + 1291 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { ( \\phi _ { k } ^ { l } ) _ { n + 1 } = [ ( \\phi _ { k } ^ { l } ) _ { n } + \\frac { \\varepsilon _ { n } } { P _ { k } ^ { l } } [ ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + \\eta _ { 0 } ^ { l } ) - ( \\rho \\tilde { A } _ { : k \\cdot } ^ { l } + K _ { l - 1 } \\eta _ { 0 } ^ { l } ) ( \\phi _ { k } ^ { l } ) _ { n } ] } } \\\\ & { } & { + \\ N ( 0 , \\frac { 2 \\varepsilon _ { n } } { P _ { k } ^ { l } } [ \\mathrm { d i a g } ( \\phi _ { k } ^ { l } ) _ { n } - ( \\phi _ { k } ^ { l } ) _ { n } ( \\phi _ { k } ^ { l } ) _ { n } ^ { T } ] ) ] _ { \\angle } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 712, + 549, + 712, + 549, + 756, + 298, + 756 + ], + "score": 0.93, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 941, + 417, + 1067, + 417, + 1067, + 443, + 941, + 443 + ], + "score": 0.93, + "latex": "\\cdot" + }, + { + "category_id": 14, + "poly": [ + 390, + 855, + 1310, + 855, + 1310, + 953, + 390, + 953 + ], + "score": 0.93, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 632, + 418, + 759, + 418, + 759, + 443, + 632, + 443 + ], + "score": 0.92, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 984, + 671, + 1272, + 671, + 1272, + 712, + 984, + 712 + ], + "score": 0.92, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 744, + 982, + 840, + 982, + 840, + 1019, + 744, + 1019 + ], + "score": 0.92, + "latex": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 982, + 1164, + 982, + 1164, + 1019, + 1065, + 1019 + ], + "score": 0.92, + "latex": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 993, + 381, + 1293, + 381, + 1293, + 411, + 993, + 411 + ], + "score": 0.92, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 371, + 1667, + 414, + 1667, + 414, + 1704, + 371, + 1704 + ], + "score": 0.92, + "latex": "M _ { k } ^ { l }" + }, + { + "category_id": 14, + "poly": [ + 342, + 450, + 1311, + 450, + 1311, + 624, + 342, + 624 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { ( A _ { k 1 j } ^ { l } , . . . , . , A _ { k K _ { l } j } ^ { l } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { ( l , l ) } ; \\frac { \\phi _ { k 1 } ^ { l } \\theta _ { 1 j } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k k _ { l } } ^ { l } \\theta _ { k l } ^ { l } } , . . . , \\frac { \\phi _ { k K _ { l } } ^ { l } \\theta _ { K l } ^ { l } } { \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\phi _ { k l } ^ { l } \\theta _ { k l } ^ { l } } \\right) , } \\\\ & { x _ { k j } ^ { l + 1 } \\sim \\mathrm { C R T } \\left[ A _ { \\cdot k j } ^ { l } + Z _ { \\cdot k , j + 1 } ^ { l } , \\tau _ { 0 } \\left( \\sum _ { k _ { l + 1 } = 1 } ^ { K _ { l + 1 } } \\phi _ { k k _ { l + 1 } } ^ { l + 1 } \\theta _ { k _ { l + 1 } j } ^ { l + 1 } + \\sum _ { k _ { l } = 1 } ^ { K _ { l } } \\pi _ { k k _ { 1 } } ^ { l } \\theta _ { k _ { 1 } , j - 1 } ^ { l } \\right) \\right] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 488, + 761, + 1210, + 761, + 1210, + 820, + 488, + 820 + ], + "score": 0.91, + "latex": "( x _ { k j } ^ { l + 1 , l } , x _ { k j } ^ { l + 1 , l + 1 } ) \\sim \\mathrm { M u l t i } \\left( x _ { k j } ^ { l + 1 } , p _ { 1 } / ( p _ { 1 } + p _ { 2 } ) , p _ { 2 } / ( p _ { 1 } + p _ { 2 } ) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 835, + 679, + 897, + 679, + 897, + 703, + 835, + 703 + ], + "score": 0.91, + "latex": "{ \\it l } + 1" + }, + { + "category_id": 13, + "poly": [ + 851, + 1747, + 885, + 1747, + 885, + 1784, + 851, + 1784 + ], + "score": 0.91, + "latex": "\\pi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 722, + 1128, + 722, + 1128, + 745, + 1071, + 745 + ], + "score": 0.9, + "latex": "{ \\it l } + 1" + }, + { + "category_id": 13, + "poly": [ + 587, + 1338, + 655, + 1338, + 655, + 1381, + 587, + 1381 + ], + "score": 0.9, + "latex": "A _ { k _ { l } k j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1298, + 404, + 1298, + 404, + 1335, + 371, + 1335 + ], + "score": 0.9, + "latex": "P _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 583, + 1749, + 622, + 1749, + 622, + 1784, + 583, + 1784 + ], + "score": 0.9, + "latex": "\\eta _ { ; k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 843, + 1429, + 877, + 1429, + 877, + 1466, + 843, + 1466 + ], + "score": 0.9, + "latex": "\\pi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 845, + 1664, + 1402, + 1664, + 1402, + 1709, + 845, + 1709 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\tilde { Z } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } Z _ { k _ { l } k _ { j } } ^ { l } , \\tilde { Z } _ { : k \\cdot } ^ { l } = \\{ \\tilde { Z } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { Z } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 836, + 1295, + 1401, + 1295, + 1401, + 1339, + 836, + 1339 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\tilde { A } _ { k _ { l } j . } ^ { l } = \\sum _ { j = 1 } ^ { J } A _ { k _ { l } k { j } } ^ { l } , \\tilde { A } _ { : k \\cdot } ^ { l } = \\{ \\tilde { A } _ { 1 j \\cdot } ^ { l } , \\cdot \\cdot \\cdot , \\tilde { A } _ { K _ { l } j \\cdot } ^ { l } \\} ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 389, + 1379, + 424, + 1379, + 424, + 1415, + 389, + 1415 + ], + "score": 0.89, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 682, + 1428, + 783, + 1428, + 783, + 1467, + 682, + 1467 + ], + "score": 0.88, + "latex": "\\{ \\boldsymbol { \\Pi } ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 896, + 1061, + 930, + 1061, + 930, + 1097, + 896, + 1097 + ], + "score": 0.88, + "latex": "\\phi _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1712, + 1311, + 1712, + 1311, + 1747, + 1268, + 1747 + ], + "score": 0.88, + "latex": "[ . ] _ { \\angle }" + }, + { + "category_id": 13, + "poly": [ + 736, + 1059, + 835, + 1059, + 835, + 1098, + 736, + 1098 + ], + "score": 0.88, + "latex": "\\{ \\Phi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1340, + 1276, + 1340, + 1276, + 1376, + 1247, + 1376 + ], + "score": 0.88, + "latex": "\\eta _ { 0 } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1336, + 572, + 1336, + 572, + 1381, + 346, + 1381 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\tilde { A } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { A } _ { k _ { l } j } ^ { l } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1341, + 1155, + 1341, + 1155, + 1370, + 1123, + 1370 + ], + "score": 0.88, + "latex": "A ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1430, + 1369, + 1430, + 1369, + 1459, + 1334, + 1459 + ], + "score": 0.88, + "latex": "\\Pi ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1710, + 1130, + 1710, + 1130, + 1741, + 1098, + 1741 + ], + "score": 0.87, + "latex": "Z ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1382, + 526, + 1382, + 526, + 1414, + 483, + 1414 + ], + "score": 0.87, + "latex": "[ \\cdot ] _ { \\angle }" + }, + { + "category_id": 13, + "poly": [ + 717, + 680, + 731, + 680, + 731, + 706, + 717, + 706 + ], + "score": 0.87, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 419, + 680, + 485, + 680, + 485, + 705, + 419, + 705 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1368, + 1064, + 1400, + 1064, + 1400, + 1090, + 1368, + 1090 + ], + "score": 0.86, + "latex": "\\Phi ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1705, + 563, + 1705, + 563, + 1750, + 345, + 1750 + ], + "score": 0.82, + "latex": "\\begin{array} { r } { \\tilde { Z } _ { \\cdot k \\cdot } ^ { l } = \\sum _ { k _ { l } = 1 } ^ { k _ { l } } \\tilde { Z } _ { k _ { l } j } ^ { l } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 588, + 679, + 599, + 679, + 599, + 700, + 588, + 700 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1009, + 722, + 1018, + 722, + 1018, + 743, + 1009, + 743 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1330, + 675, + 1404, + 675, + 1404, + 709, + 1330, + 709 + ], + "score": 0.8, + "latex": "p _ { 2 } : =" + }, + { + "category_id": 13, + "poly": [ + 581, + 1707, + 647, + 1707, + 647, + 1749, + 581, + 1749 + ], + "score": 0.79, + "latex": "Z _ { k _ { l } k j } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 390, + 1096, + 401, + 1096, + 401, + 1120, + 390, + 1120 + ], + "score": 0.78, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 299, + 375, + 534, + 375, + 534, + 415, + 299, + 415 + ], + "score": 0.72, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 555, + 379, + 698, + 379, + 698, + 415, + 555, + 415 + ], + "score": 0.64, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 984, + 1063, + 1002, + 1063, + 1002, + 1090, + 984, + 1090 + ], + "score": 0.58, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 360, + 1464, + 371, + 1464, + 371, + 1489, + 360, + 1489 + ], + "score": 0.56, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 930, + 1432, + 948, + 1432, + 948, + 1459, + 930, + 1459 + ], + "score": 0.45, + "latex": "k" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 2002.0, + 981.0, + 2002.0, + 981.0, + 2038.0, + 334.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 511.0, + 1850.0, + 511.0, + 1900.0, + 294.0, + 1900.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": [ + 946.0, + 624.0, + 1406.0, + 624.0, + 1406.0, + 665.0, + 946.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 663.0, + 418.0, + 663.0, + 418.0, + 722.0, + 285.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 663.0, + 587.0, + 663.0, + 587.0, + 722.0, + 486.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 663.0, + 716.0, + 663.0, + 716.0, + 722.0, + 600.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 663.0, + 834.0, + 663.0, + 834.0, + 722.0, + 732.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 663.0, + 983.0, + 663.0, + 983.0, + 722.0, + 898.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 663.0, + 1329.0, + 663.0, + 1329.0, + 722.0, + 1273.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 663.0, + 1412.0, + 663.0, + 1412.0, + 722.0, + 1405.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 714.0, + 1008.0, + 714.0, + 1008.0, + 756.0, + 550.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 714.0, + 1070.0, + 714.0, + 1070.0, + 756.0, + 1019.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 714.0, + 1168.0, + 714.0, + 1168.0, + 756.0, + 1129.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 618.0, + 946.0, + 618.0, + 946.0, + 673.0, + 289.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.25, + 722.5, + 484.25, + 722.5, + 484.25, + 758.5, + 400.25, + 758.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 705.5, + 538.0, + 705.5, + 538.0, + 738.0, + 470.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1281.0, + 370.0, + 1281.0, + 370.0, + 1349.0, + 285.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1281.0, + 835.0, + 1281.0, + 835.0, + 1349.0, + 405.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1281.0, + 1411.0, + 1281.0, + 1411.0, + 1349.0, + 1402.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1316.0, + 345.0, + 1316.0, + 345.0, + 1401.0, + 280.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1316.0, + 586.0, + 1316.0, + 586.0, + 1401.0, + 573.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1316.0, + 1122.0, + 1316.0, + 1122.0, + 1401.0, + 656.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1316.0, + 1246.0, + 1316.0, + 1246.0, + 1401.0, + 1156.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1316.0, + 1402.0, + 1316.0, + 1402.0, + 1401.0, + 1277.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1379.0, + 388.0, + 1379.0, + 388.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1379.0, + 482.0, + 1379.0, + 482.0, + 1415.0, + 425.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1379.0, + 857.0, + 1379.0, + 857.0, + 1415.0, + 527.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1657.0, + 370.0, + 1657.0, + 370.0, + 1715.0, + 290.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1657.0, + 844.0, + 1657.0, + 844.0, + 1715.0, + 415.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1657.0, + 1407.0, + 1657.0, + 1407.0, + 1715.0, + 1403.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1693.0, + 344.0, + 1693.0, + 344.0, + 1758.0, + 282.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1693.0, + 580.0, + 1693.0, + 580.0, + 1758.0, + 564.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1693.0, + 1097.0, + 1693.0, + 1097.0, + 1758.0, + 648.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1693.0, + 1267.0, + 1693.0, + 1267.0, + 1758.0, + 1131.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1693.0, + 1415.0, + 1693.0, + 1415.0, + 1758.0, + 1312.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1746.0, + 582.0, + 1746.0, + 582.0, + 1787.0, + 293.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1746.0, + 850.0, + 1746.0, + 850.0, + 1787.0, + 623.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1746.0, + 1407.0, + 1746.0, + 1407.0, + 1787.0, + 886.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1778.0, + 890.0, + 1778.0, + 890.0, + 1817.0, + 291.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 332.0, + 1406.0, + 332.0, + 1406.0, + 374.0, + 292.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 364.0, + 452.0, + 364.0, + 452.0, + 396.0, + 409.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 359.0, + 554.0, + 359.0, + 554.0, + 431.0, + 535.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 359.0, + 760.0, + 359.0, + 760.0, + 431.0, + 699.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 359.0, + 992.0, + 359.0, + 992.0, + 431.0, + 902.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 359.0, + 1408.0, + 359.0, + 1408.0, + 431.0, + 1294.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 406.0, + 631.0, + 406.0, + 631.0, + 446.0, + 294.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 406.0, + 940.0, + 406.0, + 940.0, + 446.0, + 760.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 406.0, + 1182.0, + 406.0, + 1182.0, + 446.0, + 1068.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 375.0, + 350.0, + 375.0, + 350.0, + 412.0, + 302.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 378.5, + 474.0, + 378.5, + 474.0, + 417.5, + 349.0, + 417.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 1402.0, + 230.0, + 1402.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 251.0, + 1226.0, + 251.0, + 1226.0, + 305.0, + 289.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 251.0, + 1412.0, + 251.0, + 1412.0, + 305.0, + 1370.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 951.0, + 290.0, + 951.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1055.0, + 735.0, + 1055.0, + 735.0, + 1103.0, + 291.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1055.0, + 895.0, + 1055.0, + 895.0, + 1103.0, + 836.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1055.0, + 983.0, + 1055.0, + 983.0, + 1103.0, + 931.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1055.0, + 1367.0, + 1055.0, + 1367.0, + 1103.0, + 1003.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1055.0, + 1405.0, + 1055.0, + 1405.0, + 1103.0, + 1401.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1093.0, + 389.0, + 1093.0, + 389.0, + 1125.0, + 296.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1093.0, + 875.0, + 1093.0, + 875.0, + 1125.0, + 402.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 976.0, + 743.0, + 976.0, + 743.0, + 1026.0, + 292.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 976.0, + 1064.0, + 976.0, + 1064.0, + 1026.0, + 841.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 976.0, + 1407.0, + 976.0, + 1407.0, + 1026.0, + 1165.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1316.0, + 1012.0, + 1316.0, + 1052.0, + 294.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1424.0, + 681.0, + 1424.0, + 681.0, + 1472.0, + 292.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1424.0, + 842.0, + 1424.0, + 842.0, + 1472.0, + 784.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1424.0, + 929.0, + 1424.0, + 929.0, + 1472.0, + 878.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1424.0, + 1333.0, + 1424.0, + 1333.0, + 1472.0, + 949.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1424.0, + 1410.0, + 1424.0, + 1410.0, + 1472.0, + 1370.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 359.0, + 1461.0, + 359.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1461.0, + 847.0, + 1461.0, + 847.0, + 1496.0, + 372.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1958.0, + 295.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1952.0, + 1405.0, + 1952.0, + 1405.0, + 1988.0, + 296.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 824.0, + 461.0, + 824.0, + 461.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 840, + 1406, + 840, + 1406, + 1155, + 296, + 1155 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1169, + 1405, + 1169, + 1405, + 1385, + 296, + 1385 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 379, + 1655, + 1321, + 1655, + 1321, + 1917, + 379, + 1917 + ], + "score": 0.98, + "html": "
ModelLSTM SizeTopic Size# LM Param#TMParam# All Param
TDLM (Lau et al., 2017)600 900-900100 1003.35M 13.38M0.019M 0.019M3.37M 13.40M
basic-LSTM (Hochreiter & Schmidhuber,1997)600 900-900 900-900-9002.16M 10.80M 17.68M2.16M 10.80M 17.68M
GBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.02M 0.04M 0.05M3.42M 6.54M 7.25M
rGBN-RNN600 600-512 600-512-256100 100-80 100-80-503.40M 6.50M 7.20M0.03M 0.06M 0.07M3.43M 6.56M 7.27M
" + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1405, + 228, + 1405, + 415, + 298, + 415 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 302, + 501, + 1398, + 501, + 1398, + 677, + 302, + 677 + ], + "score": 0.978, + "html": "
DatasetVocubalryTrainingValidationTesting
LMTMDocsSentsTokensDocsSentsTokensDocsSentsTokens
APNEWS342313216950K0.8M15M2K33K0.6M2K32K0.6M
IMDB360093492575K1.1M20M12.5K0.18M0.3M12.5K0.18M0.3M
BNC437034155215K1M18M1K57K1M1K66K1M
" + }, + { + "category_id": 5, + "poly": [ + 305, + 1471, + 1402, + 1471, + 1402, + 1586, + 305, + 1586 + ], + "score": 0.967, + "html": "
Component ParamLanguage ModelTopic Model
LSTMword in (3)glinBΦin (2)II in (2)RNNsent in (8)f in (8)f in (8)
Layer1O(4×(E+H) ×H")O(3×(K1+H)×H1)O(Vc × K1)O(K1 × K1)O(Vc+H𝑖) × HiO(Hi)O(K1 x Hi)
Layer2O(4×(H+H)×H²)O(3 × (K2+H) × H)O(K1 × K2)O(K2 ×K2)O((Hi +H²)×H)O(H)O(K2 ×H)
Layer3O(4×(H+H)×H))1O(3×(K3+H)×H)[O(K2×K3)|O(K3 × K3)|O(H+H) × H)O(H)O(K ×H)
" + }, + { + "category_id": 0, + "poly": [ + 302, + 771, + 782, + 771, + 782, + 806, + 302, + 806 + ], + "score": 0.91 + }, + { + "category_id": 6, + "poly": [ + 623, + 470, + 1075, + 470, + 1075, + 499, + 623, + 499 + ], + "score": 0.908 + }, + { + "category_id": 6, + "poly": [ + 586, + 1440, + 1114, + 1440, + 1114, + 1468, + 586, + 1468 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 6, + "poly": [ + 306, + 1624, + 1381, + 1624, + 1381, + 1651, + 306, + 1651 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 328, + 2003, + 1201, + 2003, + 1201, + 2035, + 328, + 2035 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.66 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.318 + }, + { + "category_id": 13, + "poly": [ + 1083, + 1294, + 1142, + 1294, + 1142, + 1326, + 1083, + 1326 + ], + "score": 0.92, + "latex": "\\{ \\Phi ^ { l } \\}" + }, + { + "category_id": 13, + "poly": [ + 1056, + 321, + 1118, + 321, + 1118, + 352, + 1056, + 352 + ], + "score": 0.92, + "latex": "0 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 504, + 939, + 535, + 939, + 535, + 972, + 504, + 972 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 529, + 1068, + 573, + 1068, + 573, + 1096, + 529, + 1096 + ], + "score": 0.91, + "latex": "H _ { l } ^ { w }" + }, + { + "category_id": 13, + "poly": [ + 501, + 1098, + 539, + 1098, + 539, + 1128, + 501, + 1128 + ], + "score": 0.91, + "latex": "H _ { l } ^ { s }" + }, + { + "category_id": 13, + "poly": [ + 676, + 1129, + 708, + 1129, + 708, + 1154, + 676, + 1154 + ], + "score": 0.91, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 815, + 1038, + 844, + 1038, + 844, + 1063, + 815, + 1063 + ], + "score": 0.9, + "latex": "V _ { c }" + }, + { + "category_id": 13, + "poly": [ + 415, + 939, + 444, + 939, + 444, + 972, + 415, + 972 + ], + "score": 0.9, + "latex": "f _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 582, + 973, + 605, + 973, + 605, + 1003, + 582, + 1003 + ], + "score": 0.89, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1257, + 871, + 1401, + 871, + 1401, + 907, + 1257, + 907 + ], + "score": 0.89, + "latex": "\\{ \\Phi ^ { l } , \\Pi ^ { l } \\} _ { l = 1 } ^ { L }" + }, + { + "category_id": 13, + "poly": [ + 298, + 937, + 402, + 937, + 402, + 971, + 298, + 971 + ], + "score": 0.87, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 802, + 1007, + 825, + 1007, + 825, + 1028, + 802, + 1028 + ], + "score": 0.87, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1519, + 1207, + 1519, + 1207, + 1541, + 1053, + 1541 + ], + "score": 0.84, + "latex": "O ( ( V _ { c } + H _ { 1 } ^ { s } ) \\times H _ { 1 } ^ { s } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1038, + 322, + 1038, + 322, + 1059, + 298, + 1059 + ], + "score": 0.83, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 943, + 1520, + 1040, + 1520, + 1040, + 1540, + 943, + 1540 + ], + "score": 0.82, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1541, + 1393, + 1541, + 1393, + 1561, + 1296, + 1561 + ], + "score": 0.82, + "latex": "O ( K _ { 2 } \\times H _ { 2 } ^ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1542, + 1279, + 1542, + 1279, + 1562, + 1226, + 1562 + ], + "score": 0.81, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1563, + 1280, + 1563, + 1280, + 1583, + 1226, + 1583 + ], + "score": 0.81, + "latex": "O ( H _ { 3 } ^ { s } )" + }, + { + "category_id": 13, + "poly": [ + 837, + 1520, + 930, + 1520, + 930, + 1540, + 837, + 1540 + ], + "score": 0.81, + "latex": "O ( V _ { c } \\times K _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 936, + 1334, + 936, + 1334, + 971, + 1205, + 971 + ], + "score": 0.8, + "latex": "\\mathrm { L S T M } _ { \\mathrm { w o r d } } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1520, + 1279, + 1520, + 1279, + 1541, + 1225, + 1541 + ], + "score": 0.8, + "latex": "O ( H _ { 1 } ^ { s } )" + }, + { + "category_id": 13, + "poly": [ + 454, + 1496, + 533, + 1496, + 533, + 1519, + 454, + 1519 + ], + "score": 0.79, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1562, + 1393, + 1562, + 1393, + 1584, + 1296, + 1584 + ], + "score": 0.77, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1496, + 1238, + 1496, + 1238, + 1519, + 1222, + 1519 + ], + "score": 0.77, + "latex": "f _ { k } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 851, + 1496, + 872, + 1496, + 872, + 1515, + 851, + 1515 + ], + "score": 0.76, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1496, + 1138, + 1496, + 1138, + 1518, + 1076, + 1518 + ], + "score": 0.74, + "latex": "\\mathrm { R N N } _ { \\mathrm { s e n t } } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1520, + 1396, + 1520, + 1396, + 1540, + 1296, + 1540 + ], + "score": 0.74, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 625, + 1519, + 822, + 1519, + 822, + 1540, + 625, + 1540 + ], + "score": 0.73, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 421, + 1519, + 608, + 1519, + 608, + 1540, + 421, + 1540 + ], + "score": 0.68, + "latex": "O ( 4 \\times ( E + H _ { 1 } ^ { w } ) \\times H _ { 1 } ^ { w } )" + }, + { + "category_id": 13, + "poly": [ + 700, + 1496, + 714, + 1496, + 714, + 1517, + 700, + 1517 + ], + "score": 0.67, + "latex": "g ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1496, + 1330, + 1496, + 1330, + 1518, + 1313, + 1518 + ], + "score": 0.62, + "latex": "f _ { \\lambda } ^ { l }" + }, + { + "category_id": 13, + "poly": [ + 834, + 1541, + 933, + 1541, + 933, + 1561, + 834, + 1561 + ], + "score": 0.54, + "latex": "O ( K _ { 1 } \\times K _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1129, + 1049, + 1129, + 1049, + 1150, + 1039, + 1150 + ], + "score": 0.53, + "latex": "\\it l" + }, + { + "category_id": 13, + "poly": [ + 414, + 1541, + 912, + 1541, + 912, + 1560, + 414, + 1560 + ], + "score": 0.51, + "latex": "O ( 4 \\times ( H _ { 1 } ^ { w } + H _ { 2 } ^ { w } ) \\times H _ { 2 } ^ { w } ) \\mid O ( 3 \\times ( K _ { 2 } + H _ { 2 } ^ { w } ) \\times H _ { 2 } ^ { w } ) \\mid O ( K _ { 1 } \\times H _ { 2 } ^ { w } )" + }, + { + "category_id": 13, + "poly": [ + 555, + 1498, + 580, + 1498, + 580, + 1517, + 555, + 1517 + ], + "score": 0.51, + "latex": "( 3 )" + }, + { + "category_id": 13, + "poly": [ + 412, + 1561, + 968, + 1561, + 968, + 1583, + 412, + 1583 + ], + "score": 0.48, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1542, + 1209, + 1542, + 1209, + 1562, + 1055, + 1562 + ], + "score": 0.46, + "latex": "\\_" + }, + { + "category_id": 13, + "poly": [ + 755, + 1542, + 1208, + 1542, + 1208, + 1561, + 755, + 1561 + ], + "score": 0.46, + "latex": "-" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1098, + 1263, + 1098, + 1263, + 1121, + 1253, + 1121 + ], + "score": 0.45, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1498, + 1027, + 1498, + 1027, + 1517, + 1003, + 1517 + ], + "score": 0.39, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 957, + 1497, + 980, + 1497, + 980, + 1515, + 957, + 1515 + ], + "score": 0.38, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 415, + 1521, + 823, + 1521, + 823, + 1544, + 415, + 1544 + ], + "score": 0.31, + "latex": "O ( 4 \\times ( E + H _ { 1 } ^ { w } ) \\times H _ { 1 } ^ { w } ) \\mid O ( 3 \\times ( K _ { 1 } + H _ { 1 } ^ { w } ) \\times H _ { 1 } ^ { w } )" + }, + { + "category_id": 13, + "poly": [ + 1355, + 1498, + 1378, + 1498, + 1378, + 1517, + 1355, + 1517 + ], + "score": 0.29, + "latex": "( 8 )" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1067, + 1237, + 1067, + 1237, + 1089, + 1227, + 1089 + ], + "score": 0.26, + "latex": "\\cdot" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1498, + 1186, + 1498, + 1186, + 1517, + 1162, + 1517 + ], + "score": 0.26, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 775.0, + 330.0, + 775.0, + 330.0, + 803.0, + 298.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 773.0, + 785.0, + 773.0, + 785.0, + 805.0, + 349.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 466.0, + 1079.0, + 466.0, + 1079.0, + 504.0, + 620.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1437.0, + 1116.0, + 1437.0, + 1116.0, + 1474.0, + 581.0, + 1474.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": [ + 311.0, + 1618.0, + 1386.0, + 1618.0, + 1386.0, + 1657.0, + 311.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1998.0, + 1202.0, + 1998.0, + 1202.0, + 2040.0, + 329.0, + 2040.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 839.0, + 1256.0, + 839.0, + 1256.0, + 919.0, + 288.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 839.0, + 1408.0, + 839.0, + 1408.0, + 919.0, + 1402.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 903.0, + 1404.0, + 903.0, + 1404.0, + 935.0, + 296.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 297.0, + 930.0, + 297.0, + 977.0, + 293.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 930.0, + 414.0, + 930.0, + 414.0, + 977.0, + 403.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 930.0, + 503.0, + 930.0, + 503.0, + 977.0, + 445.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 930.0, + 1204.0, + 930.0, + 1204.0, + 977.0, + 536.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 930.0, + 1408.0, + 930.0, + 1408.0, + 977.0, + 1335.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 968.0, + 581.0, + 968.0, + 581.0, + 1004.0, + 298.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 968.0, + 1406.0, + 968.0, + 1406.0, + 1004.0, + 606.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 996.0, + 801.0, + 996.0, + 801.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 996.0, + 1407.0, + 996.0, + 1407.0, + 1034.0, + 826.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1027.0, + 814.0, + 1027.0, + 814.0, + 1065.0, + 323.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1027.0, + 1406.0, + 1027.0, + 1406.0, + 1065.0, + 845.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1061.0, + 528.0, + 1061.0, + 528.0, + 1093.0, + 296.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1061.0, + 1226.0, + 1061.0, + 1226.0, + 1093.0, + 574.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1061.0, + 1403.0, + 1061.0, + 1403.0, + 1093.0, + 1238.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1091.0, + 500.0, + 1091.0, + 500.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1091.0, + 1252.0, + 1091.0, + 1252.0, + 1126.0, + 540.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1091.0, + 1406.0, + 1091.0, + 1406.0, + 1126.0, + 1264.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 675.0, + 1121.0, + 675.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1121.0, + 1038.0, + 1121.0, + 1038.0, + 1157.0, + 709.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1121.0, + 1061.0, + 1121.0, + 1061.0, + 1157.0, + 1050.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1166.0, + 1407.0, + 1166.0, + 1407.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 1405.0, + 1199.0, + 1405.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1403.0, + 1228.0, + 1403.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 1405.0, + 1260.0, + 1405.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1289.0, + 1082.0, + 1289.0, + 1082.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1289.0, + 1405.0, + 1289.0, + 1405.0, + 1326.0, + 1143.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1354.0, + 295.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1354.0, + 766.0, + 1354.0, + 766.0, + 1384.0, + 298.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 224.0, + 1407.0, + 224.0, + 1407.0, + 270.0, + 291.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 1408.0, + 289.0, + 1408.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1055.0, + 320.0, + 1055.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 356.0, + 1119.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 388.0, + 295.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 713.0, + 383.0, + 713.0, + 419.0, + 295.0, + 419.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 373, + 309, + 1318, + 309, + 1318, + 936, + 373, + 936 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 376, + 1181, + 1317, + 1181, + 1317, + 1812, + 376, + 1812 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 295, + 957, + 1405, + 957, + 1405, + 1109, + 295, + 1109 + ], + "score": 0.929 + }, + { + "category_id": 4, + "poly": [ + 296, + 1833, + 1405, + 1833, + 1405, + 1973, + 296, + 1973 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 0, + "poly": [ + 296, + 227, + 1110, + 227, + 1110, + 261, + 296, + 261 + ], + "score": 0.74 + }, + { + "category_id": 2, + "poly": [ + 296, + 227, + 1110, + 227, + 1110, + 261, + 296, + 261 + ], + "score": 0.101 + }, + { + "category_id": 15, + "poly": [ + 790.0, + 326.0, + 817.0, + 326.0, + 817.0, + 348.0, + 790.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 334.0, + 1258.0, + 334.0, + 1258.0, + 354.0, + 1105.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 342.0, + 859.0, + 342.0, + 859.0, + 368.0, + 748.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 348.0, + 1302.0, + 348.0, + 1302.0, + 373.0, + 1102.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 361.0, + 838.0, + 361.0, + 838.0, + 382.0, + 768.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 367.0, + 1301.0, + 367.0, + 1301.0, + 391.0, + 1103.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 379.0, + 842.0, + 379.0, + 842.0, + 401.0, + 765.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 386.0, + 1300.0, + 386.0, + 1300.0, + 406.0, + 1103.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 399.0, + 860.0, + 399.0, + 860.0, + 418.0, + 746.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 404.0, + 1282.0, + 404.0, + 1282.0, + 424.0, + 1103.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 417.0, + 828.0, + 417.0, + 828.0, + 435.0, + 779.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 479.0, + 576.0, + 479.0, + 576.0, + 587.0, + 389.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 473.0, + 713.0, + 473.0, + 713.0, + 583.0, + 621.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 484.0, + 878.0, + 484.0, + 878.0, + 576.0, + 782.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 480.0, + 1023.0, + 480.0, + 1023.0, + 573.0, + 908.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 484.0, + 1301.0, + 484.0, + 1301.0, + 560.0, + 1070.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 608.0, + 973.0, + 608.0, + 973.0, + 616.0, + 964.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 624.0, + 539.0, + 624.0, + 539.0, + 643.0, + 512.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 623.0, + 753.0, + 623.0, + 753.0, + 642.0, + 734.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 616.0, + 983.0, + 616.0, + 983.0, + 642.0, + 954.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 616.0, + 1179.0, + 616.0, + 1179.0, + 637.0, + 1154.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 640.0, + 629.0, + 640.0, + 629.0, + 660.0, + 419.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 640.0, + 839.0, + 640.0, + 839.0, + 660.0, + 651.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 637.0, + 1032.0, + 637.0, + 1032.0, + 657.0, + 905.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 633.0, + 1238.0, + 633.0, + 1238.0, + 654.0, + 1095.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 659.0, + 633.0, + 659.0, + 633.0, + 680.0, + 414.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 657.0, + 818.0, + 657.0, + 818.0, + 678.0, + 670.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 654.0, + 1039.0, + 654.0, + 1039.0, + 694.0, + 898.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 653.0, + 1230.0, + 653.0, + 1230.0, + 691.0, + 1105.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 698.0, + 1059.0, + 698.0, + 1059.0, + 719.0, + 905.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 700.0, + 1258.0, + 700.0, + 1258.0, + 721.0, + 1106.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 716.0, + 546.0, + 716.0, + 546.0, + 736.0, + 393.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 712.0, + 765.0, + 712.0, + 765.0, + 733.0, + 619.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 717.0, + 1074.0, + 717.0, + 1074.0, + 737.0, + 889.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 718.0, + 1301.0, + 718.0, + 1301.0, + 738.0, + 1106.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 733.0, + 577.0, + 733.0, + 577.0, + 753.0, + 393.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 730.0, + 861.0, + 730.0, + 861.0, + 750.0, + 622.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 732.0, + 1076.0, + 732.0, + 1076.0, + 757.0, + 887.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 736.0, + 1301.0, + 736.0, + 1301.0, + 757.0, + 1106.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 751.0, + 577.0, + 751.0, + 577.0, + 772.0, + 393.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 747.0, + 862.0, + 747.0, + 862.0, + 771.0, + 619.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 752.0, + 1075.0, + 752.0, + 1075.0, + 773.0, + 889.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 754.0, + 1261.0, + 754.0, + 1261.0, + 775.0, + 1106.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 769.0, + 579.0, + 769.0, + 579.0, + 789.0, + 393.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 765.0, + 828.0, + 765.0, + 828.0, + 786.0, + 620.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 770.0, + 1021.0, + 770.0, + 1021.0, + 790.0, + 888.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 804.0, + 802.0, + 804.0, + 802.0, + 825.0, + 626.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 819.0, + 867.0, + 819.0, + 867.0, + 844.0, + 622.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 818.0, + 1081.0, + 818.0, + 1081.0, + 841.0, + 887.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 818.0, + 1302.0, + 818.0, + 1302.0, + 841.0, + 1111.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 836.0, + 579.0, + 836.0, + 579.0, + 862.0, + 392.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 840.0, + 865.0, + 840.0, + 865.0, + 861.0, + 626.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 835.0, + 1083.0, + 835.0, + 1083.0, + 858.0, + 884.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 837.0, + 1301.0, + 837.0, + 1301.0, + 857.0, + 1111.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 855.0, + 577.0, + 855.0, + 577.0, + 878.0, + 393.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 857.0, + 865.0, + 857.0, + 865.0, + 878.0, + 625.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 854.0, + 1077.0, + 854.0, + 1077.0, + 875.0, + 885.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 855.0, + 1301.0, + 855.0, + 1301.0, + 876.0, + 1111.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 872.0, + 577.0, + 872.0, + 577.0, + 895.0, + 393.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 875.0, + 865.0, + 875.0, + 865.0, + 895.0, + 626.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 872.0, + 1083.0, + 872.0, + 1083.0, + 893.0, + 885.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 870.0, + 1301.0, + 870.0, + 1301.0, + 893.0, + 1110.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 892.0, + 558.0, + 892.0, + 558.0, + 912.0, + 394.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 891.0, + 828.0, + 891.0, + 828.0, + 911.0, + 625.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 889.0, + 1049.0, + 889.0, + 1049.0, + 909.0, + 885.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 890.0, + 1186.0, + 890.0, + 1186.0, + 910.0, + 1111.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1209.0, + 719.0, + 1209.0, + 719.0, + 1295.0, + 636.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1200.0, + 894.0, + 1200.0, + 894.0, + 1300.0, + 777.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1205.0, + 1297.0, + 1205.0, + 1297.0, + 1291.0, + 1083.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1290.0, + 715.0, + 1290.0, + 715.0, + 1315.0, + 639.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1344.0, + 1222.0, + 1344.0, + 1222.0, + 1365.0, + 1082.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1358.0, + 520.0, + 1358.0, + 520.0, + 1382.0, + 389.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1365.0, + 643.0, + 1365.0, + 643.0, + 1383.0, + 625.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1365.0, + 810.0, + 1365.0, + 810.0, + 1386.0, + 785.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1364.0, + 979.0, + 1364.0, + 979.0, + 1384.0, + 954.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1359.0, + 1303.0, + 1359.0, + 1303.0, + 1380.0, + 1080.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1375.0, + 547.0, + 1375.0, + 547.0, + 1413.0, + 390.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1378.0, + 688.0, + 1378.0, + 688.0, + 1417.0, + 581.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1380.0, + 862.0, + 1380.0, + 862.0, + 1419.0, + 732.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1380.0, + 1036.0, + 1380.0, + 1036.0, + 1417.0, + 878.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1376.0, + 1302.0, + 1376.0, + 1302.0, + 1413.0, + 1081.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1408.0, + 556.0, + 1408.0, + 556.0, + 1429.0, + 390.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1412.0, + 687.0, + 1412.0, + 687.0, + 1436.0, + 582.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1410.0, + 854.0, + 1410.0, + 854.0, + 1437.0, + 739.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1413.0, + 1038.0, + 1413.0, + 1038.0, + 1433.0, + 892.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1408.0, + 1286.0, + 1408.0, + 1286.0, + 1429.0, + 1082.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1424.0, + 548.0, + 1424.0, + 548.0, + 1444.0, + 390.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1428.0, + 672.0, + 1428.0, + 672.0, + 1449.0, + 597.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1426.0, + 850.0, + 1426.0, + 850.0, + 1453.0, + 744.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1425.0, + 1211.0, + 1425.0, + 1211.0, + 1445.0, + 1082.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1495.0, + 472.0, + 1495.0, + 472.0, + 1514.0, + 456.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1492.0, + 732.0, + 1492.0, + 732.0, + 1514.0, + 706.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1491.0, + 973.0, + 1491.0, + 973.0, + 1513.0, + 948.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1493.0, + 1216.0, + 1493.0, + 1216.0, + 1515.0, + 1190.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1511.0, + 530.0, + 1511.0, + 530.0, + 1530.0, + 396.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1511.0, + 796.0, + 1511.0, + 796.0, + 1528.0, + 643.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1508.0, + 1050.0, + 1508.0, + 1050.0, + 1529.0, + 873.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1512.0, + 1284.0, + 1512.0, + 1284.0, + 1529.0, + 1123.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1526.0, + 535.0, + 1526.0, + 535.0, + 1547.0, + 392.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1527.0, + 800.0, + 1527.0, + 800.0, + 1544.0, + 637.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1524.0, + 1033.0, + 1524.0, + 1033.0, + 1544.0, + 890.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1527.0, + 1284.0, + 1527.0, + 1284.0, + 1544.0, + 1123.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1539.0, + 538.0, + 1539.0, + 538.0, + 1565.0, + 389.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1541.0, + 801.0, + 1541.0, + 801.0, + 1562.0, + 637.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1539.0, + 1020.0, + 1539.0, + 1020.0, + 1561.0, + 902.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1584.0, + 752.0, + 1584.0, + 752.0, + 1601.0, + 617.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1580.0, + 1000.0, + 1580.0, + 1000.0, + 1607.0, + 861.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1591.0, + 592.0, + 1591.0, + 592.0, + 1628.0, + 391.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1598.0, + 816.0, + 1598.0, + 816.0, + 1635.0, + 617.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1599.0, + 1058.0, + 1599.0, + 1058.0, + 1635.0, + 863.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1591.0, + 1294.0, + 1591.0, + 1294.0, + 1633.0, + 1095.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1623.0, + 500.0, + 1623.0, + 500.0, + 1643.0, + 392.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1631.0, + 838.0, + 1631.0, + 838.0, + 1649.0, + 618.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1630.0, + 1058.0, + 1630.0, + 1058.0, + 1651.0, + 863.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1626.0, + 1293.0, + 1626.0, + 1293.0, + 1647.0, + 1097.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1646.0, + 816.0, + 1646.0, + 816.0, + 1666.0, + 617.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1647.0, + 1047.0, + 1647.0, + 1047.0, + 1667.0, + 864.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1639.0, + 1295.0, + 1639.0, + 1295.0, + 1664.0, + 1095.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1662.0, + 827.0, + 1662.0, + 827.0, + 1684.0, + 614.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1663.0, + 998.0, + 1663.0, + 998.0, + 1684.0, + 863.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1657.0, + 1267.0, + 1657.0, + 1267.0, + 1679.0, + 1096.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1698.0, + 544.0, + 1698.0, + 544.0, + 1718.0, + 386.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1697.0, + 791.0, + 1697.0, + 791.0, + 1721.0, + 626.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1698.0, + 1023.0, + 1698.0, + 1023.0, + 1724.0, + 852.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1695.0, + 1272.0, + 1695.0, + 1272.0, + 1722.0, + 1100.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1714.0, + 588.0, + 1714.0, + 588.0, + 1735.0, + 385.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1715.0, + 804.0, + 1715.0, + 804.0, + 1736.0, + 627.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1713.0, + 1076.0, + 1713.0, + 1076.0, + 1738.0, + 852.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1715.0, + 1297.0, + 1715.0, + 1297.0, + 1736.0, + 1101.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1729.0, + 589.0, + 1729.0, + 589.0, + 1752.0, + 383.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1731.0, + 794.0, + 1731.0, + 794.0, + 1752.0, + 627.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1733.0, + 1075.0, + 1733.0, + 1075.0, + 1753.0, + 854.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1731.0, + 1297.0, + 1731.0, + 1297.0, + 1752.0, + 1101.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1742.0, + 588.0, + 1742.0, + 588.0, + 1769.0, + 384.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1749.0, + 796.0, + 1749.0, + 796.0, + 1766.0, + 629.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1747.0, + 1075.0, + 1747.0, + 1075.0, + 1767.0, + 854.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1746.0, + 1299.0, + 1746.0, + 1299.0, + 1768.0, + 1099.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1761.0, + 588.0, + 1761.0, + 588.0, + 1782.0, + 386.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1763.0, + 826.0, + 1763.0, + 826.0, + 1784.0, + 627.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1764.0, + 1073.0, + 1764.0, + 1073.0, + 1785.0, + 855.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1762.0, + 1295.0, + 1762.0, + 1295.0, + 1783.0, + 1100.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1777.0, + 581.0, + 1777.0, + 581.0, + 1798.0, + 386.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1779.0, + 806.0, + 1779.0, + 806.0, + 1800.0, + 627.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1780.0, + 1029.0, + 1780.0, + 1029.0, + 1801.0, + 854.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1776.0, + 1214.0, + 1776.0, + 1214.0, + 1802.0, + 1102.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 957.0, + 1403.0, + 957.0, + 1403.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 984.0, + 1405.0, + 984.0, + 1405.0, + 1023.0, + 293.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1017.0, + 1403.0, + 1017.0, + 1403.0, + 1049.0, + 293.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1047.0, + 1406.0, + 1047.0, + 1406.0, + 1083.0, + 293.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1073.0, + 434.0, + 1073.0, + 434.0, + 1115.0, + 292.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1833.0, + 1405.0, + 1833.0, + 1405.0, + 1864.0, + 295.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 1403.0, + 1860.0, + 1403.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1887.0, + 1406.0, + 1887.0, + 1406.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1916.0, + 1406.0, + 1916.0, + 1406.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 434.0, + 1940.0, + 434.0, + 1980.0, + 292.0, + 1980.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": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1111.0, + 225.0, + 1111.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1111.0, + 225.0, + 1111.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 332, + 977, + 1342, + 977, + 1342, + 1297, + 332, + 1297 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 322, + 340, + 1333, + 340, + 1333, + 661, + 322, + 661 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 297, + 670, + 1406, + 670, + 1406, + 784, + 297, + 784 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 296, + 1307, + 1409, + 1307, + 1409, + 1421, + 296, + 1421 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 0, + "poly": [ + 298, + 862, + 791, + 862, + 791, + 898, + 298, + 898 + ], + "score": 0.679 + }, + { + "category_id": 0, + "poly": [ + 298, + 226, + 737, + 226, + 737, + 261, + 298, + 261 + ], + "score": 0.636 + }, + { + "category_id": 2, + "poly": [ + 298, + 226, + 737, + 226, + 737, + 261, + 298, + 261 + ], + "score": 0.161 + }, + { + "category_id": 13, + "poly": [ + 905, + 1312, + 922, + 1312, + 922, + 1333, + 905, + 1333 + ], + "score": 0.53, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 861, + 675, + 877, + 675, + 877, + 696, + 861, + 696 + ], + "score": 0.36, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 985.0, + 561.0, + 985.0, + 561.0, + 1006.0, + 483.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 985.0, + 1076.0, + 985.0, + 1076.0, + 1006.0, + 1000.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1012.0, + 390.0, + 1012.0, + 390.0, + 1038.0, + 353.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1009.0, + 916.0, + 1009.0, + 916.0, + 1034.0, + 869.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1046.0, + 917.0, + 1046.0, + 917.0, + 1075.0, + 868.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1080.0, + 388.0, + 1080.0, + 388.0, + 1101.0, + 351.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1080.0, + 915.0, + 1080.0, + 915.0, + 1169.0, + 850.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1126.0, + 916.0, + 1126.0, + 916.0, + 1151.0, + 869.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1150.0, + 1232.0, + 1150.0, + 1232.0, + 1170.0, + 1117.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1209.0, + 390.0, + 1209.0, + 390.0, + 1235.0, + 353.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1164.0, + 795.0, + 1164.0, + 795.0, + 1255.0, + 455.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1166.0, + 918.0, + 1166.0, + 918.0, + 1268.0, + 869.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1179.0, + 1318.0, + 1179.0, + 1318.0, + 1254.0, + 1025.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1259.0, + 813.0, + 1259.0, + 813.0, + 1281.0, + 368.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1259.0, + 1345.0, + 1259.0, + 1345.0, + 1281.0, + 936.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1277.0, + 632.0, + 1277.0, + 632.0, + 1299.0, + 546.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1277.0, + 1161.0, + 1277.0, + 1161.0, + 1299.0, + 1072.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 358.0, + 390.0, + 358.0, + 390.0, + 387.0, + 340.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 355.0, + 915.0, + 355.0, + 915.0, + 380.0, + 860.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 347.0, + 1007.0, + 347.0, + 1007.0, + 371.0, + 934.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 399.0, + 390.0, + 399.0, + 390.0, + 428.0, + 341.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 389.0, + 918.0, + 389.0, + 918.0, + 417.0, + 859.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 425.0, + 915.0, + 425.0, + 915.0, + 450.0, + 860.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 440.0, + 389.0, + 440.0, + 389.0, + 532.0, + 322.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 442.0, + 918.0, + 442.0, + 918.0, + 530.0, + 840.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 483.0, + 389.0, + 483.0, + 389.0, + 508.0, + 343.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 494.0, + 784.0, + 494.0, + 784.0, + 517.0, + 667.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 495.0, + 917.0, + 495.0, + 917.0, + 523.0, + 858.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 497.0, + 1251.0, + 497.0, + 1251.0, + 518.0, + 1136.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 522.0, + 391.0, + 522.0, + 391.0, + 551.0, + 341.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 519.0, + 773.0, + 519.0, + 773.0, + 565.0, + 541.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 532.0, + 918.0, + 532.0, + 918.0, + 559.0, + 859.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 523.0, + 1176.0, + 523.0, + 1176.0, + 550.0, + 1069.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 553.0, + 1174.0, + 553.0, + 1174.0, + 574.0, + 1066.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 553.0, + 1291.0, + 553.0, + 1291.0, + 574.0, + 1177.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 563.0, + 390.0, + 563.0, + 390.0, + 630.0, + 341.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 587.0, + 500.0, + 587.0, + 500.0, + 608.0, + 428.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 595.0, + 732.0, + 595.0, + 732.0, + 619.0, + 605.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 567.0, + 918.0, + 567.0, + 918.0, + 627.0, + 857.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 581.0, + 1068.0, + 581.0, + 1068.0, + 602.0, + 998.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 576.0, + 1310.0, + 576.0, + 1310.0, + 619.0, + 1095.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 619.0, + 413.0, + 619.0, + 413.0, + 648.0, + 362.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 619.0, + 480.0, + 619.0, + 480.0, + 648.0, + 431.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 619.0, + 546.0, + 619.0, + 546.0, + 648.0, + 498.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 620.0, + 615.0, + 620.0, + 615.0, + 645.0, + 566.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 619.0, + 682.0, + 619.0, + 682.0, + 648.0, + 632.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 616.0, + 749.0, + 616.0, + 749.0, + 648.0, + 699.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 620.0, + 814.0, + 620.0, + 814.0, + 645.0, + 767.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 620.0, + 978.0, + 620.0, + 978.0, + 648.0, + 942.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 620.0, + 1069.0, + 620.0, + 1069.0, + 646.0, + 1031.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 620.0, + 1158.0, + 620.0, + 1158.0, + 646.0, + 1119.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 620.0, + 1248.0, + 620.0, + 1248.0, + 646.0, + 1209.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 620.0, + 1336.0, + 620.0, + 1336.0, + 646.0, + 1299.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 639.0, + 634.0, + 639.0, + 634.0, + 663.0, + 545.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 638.0, + 1161.0, + 638.0, + 1161.0, + 662.0, + 1072.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 345.5, + 522.0, + 345.5, + 522.0, + 369.5, + 445.0, + 369.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 563.0, + 674.0, + 563.0, + 674.0, + 590.0, + 561.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 574.5, + 797.0, + 574.5, + 797.0, + 605.5, + 675.0, + 605.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 669.0, + 860.0, + 669.0, + 860.0, + 703.0, + 296.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 669.0, + 1406.0, + 669.0, + 1406.0, + 703.0, + 878.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 696.0, + 1406.0, + 696.0, + 1406.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 1404.0, + 726.0, + 1404.0, + 759.0, + 295.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 751.0, + 654.0, + 751.0, + 654.0, + 787.0, + 294.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1306.0, + 904.0, + 1306.0, + 904.0, + 1340.0, + 295.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1340.0, + 923.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1331.0, + 1408.0, + 1331.0, + 1408.0, + 1371.0, + 292.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1363.0, + 1406.0, + 1363.0, + 1406.0, + 1396.0, + 295.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1388.0, + 797.0, + 1388.0, + 797.0, + 1424.0, + 293.0, + 1424.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": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 792.0, + 862.0, + 792.0, + 902.0, + 295.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 739.0, + 226.0, + 739.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 739.0, + 226.0, + 739.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/aExAsh1UHZo/aExAsh1UHZo.md b/parse/train/aExAsh1UHZo/aExAsh1UHZo.md new file mode 100644 index 0000000000000000000000000000000000000000..b1ab01b403e2206d65e6bb862b6ba98a51849f1b --- /dev/null +++ b/parse/train/aExAsh1UHZo/aExAsh1UHZo.md @@ -0,0 +1,422 @@ +# Gradient Starvation: A Learning Proclivity in Neural Networks + +Mohammad Pezeshki1,2 Sékou-Oumar Kaba1,3 Yoshua Bengio1,2 Aaron Courville1,2 Doina Precup1,3,4 Guillaume Lajoie1,2 +1Mila 2Université de Montréal 3McGill University 4Google DeepMind +corresponding authors:{pezeshki, guillaume.lajoie}@mila.quebec + +# Abstract + +We identify and formalize a fundamental gradient descent phenomenon leading to a learning proclivity in over-parameterized neural networks. Gradient Starvation arises when cross-entropy loss is minimized by capturing only a subset of features relevant for the task, despite the presence of other predictive features that fail to be discovered. This work provides a theoretical explanation for the emergence of such feature imbalances in neural networks. Using tools from Dynamical Systems theory, we identify simple properties of learning dynamics during gradient descent that lead to this imbalance, and prove that such a situation can be expected given certain statistical structure in training data. Based on our proposed formalism, we develop guarantees for a novel but simple regularization method aimed at decoupling feature learning dynamics, improving accuracy and robustness in cases hindered by gradient starvation. We illustrate our findings with simple and realworld out-of-distribution (OOD) generalization experiments. + +# 1 Introduction + +In 1904, a horse named Hans attracted worldwide attention due to the belief that it was capable of doing arithmetic calculations [81]. Its trainer would ask Hans a question, and Hans would reply by tapping on the ground with its hoof. However, it was later revealed that the horse was only noticing subtle but distinctive signals in its trainer’s unconscious behavior, unbeknown to him, and not actually performing arithmetic. An analogous phenomenon has been noticed when training neural networks [e.g. 85, 109, 54, 39, 17, 14, 37, 51, 107, 76, 48, 19, 61, 77]. In many cases, state-of-the-art neural networks appear to focus on low-level superficial correlations, rather than more abstract and robustly informative features of interest [16, 88, 40, 68, 30]. + +The rationale behind this phenomenon is well known by practitioners: given strongly-correlated and fast-to-learn features in training data, gradient descent is biased towards learning them first. However, the precise conditions leading to such learning dynamics, and how one might intervene to control this feature imbalance are not entirely understood. Recent work aims at identifying the reasons behind this phenomenon [97, 70, 22, 73, 51, 76, 100, 92, 83, 105, 42, 79, 4], while complementary work quantifies resulting shortcomings, including poor generalization to out-of-distribution (OOD) test data, reliance upon spurious correlations, and lack of robustness [30, 68, 77, 41, 63, 64, 9]. However most established work focuses on squared-error loss and its particularities, where results do not readily generalize to other objective forms. This is especially problematic since for several classification applications, cross-entropy is the loss function of choice, yielding very distinct learning dynamics. In this paper, we argue that Gradient Starvation, first coined in [26], is a leading cause for this feature imbalance in neural networks trained with cross-entropy, and propose a simple approach to mitigate it. + +![](images/9f945eaedc28dc850b70ed0f5a00c0d50de39ab2ea581ed85082d9da4e26613b.jpg) +Figure 1: Diagram illustrating the effect of gradient starvation in a simple 2-D classification task. (a) Data is not linearly separable and the learned decision boundary is curved. (b) Data is linearly separable by a small margin $\Delta = \mathrm { 0 . 1 }$ ). This small margin allows the network to discriminate confidently only along the horizontal axis and ignore the vertical axis. (c) Data is linearly separable as in (b). However, with the proposed Spectral decoupling (SD), a curved decision boundary with a large margin is learned. (d) Diagram shows the evolution of two of the features (Eq. 4) of the dynamics in three cases shown as dotted, dashed and solid lines. Analysis: (dotted) vs (dashed): Linear separability of the data results in an increase in $z _ { 1 }$ and a decrease (starvation) of $z _ { 2 }$ . (dashed) vs (solid): SD suppresses $z _ { 1 }$ and hence allows $z _ { 2 }$ to grow. Decision boundaries are averaged over ten runs. More experiments with common regularization methods are provided in App. B. + +Here we summarize our contributions: + +We provide a theoretical framework to study the learning dynamics of linearized neural networks trained with cross-entropy loss in a dual space. Using perturbation analysis, we formalize Gradient Starvation (GS) in view of the coupling between the dynamics of orthogonal directions in the feature space (Thm. 2). We leverage our theory to introduce Spectral Decoupling (SD) (Eq. 17) and prove this simple regularizer helps to decouple learning dynamics, mitigating GS. We support our findings with extensive empirical results on a variety of classification and adversarial attack tasks. All code and experiment details available at GitHub repository. + +In the rest of the paper, we first present a simple example to outline the consequences of GS. We then present our theoretical results before outlining a number of numerical experiments. We close with a review of related work followed by a discussion. + +# 2 Gradient Starvation: A simple example + +Consider a 2-D classification task with a training set consisting of two classes, as shown in Figure 1. A two-layer ReLU network with 500 hidden units is trained with cross-entropy loss for two different arrangements of the training points. The difference between the two arrangements is that, in one setting, the data is not linearly separable, but a slight shift makes it linearly separable in the other setting. This small shift allows the network to achieve a negligible loss by only learning to discriminate along the horizontal axis, ignoring the other. This contrasts with the other case, where both features contribute to the learned classification boundary, which arguably matches the data structure better. We observe that training longer or using different regularizers, including weight decay [58], dropout [95], batch normalization [49], as well as changing the optimization algorithm to Adam [56] or changing the network architecture or the coordinate system, do not encourage the network to learn a curved decision boundary. (See App. B for more details.) + +We argue that this occurs because cross-entropy loss leads to gradients “starved” of information from vertical features. Simply put, when one feature is learned faster than the others, the gradient contribution of examples containing that feature is diminished (i.e., they are correctly processed based on that feature alone). This results in a lack of sufficient gradient signal, and hence prevents any remaining features from being learned. This simple mechanism has potential consequences, which we outline below. + +# 2.1 Consequences of Gradient Starvation + +Lack of robustness. In the example above, even in the right plot, the training loss is nearly zero, and the network is very confident in its predictions. However, the decision boundary is located very close to the data points. This could lead to adversarial vulnerability as well as lack of robustness when generalizing to out-of-distribution data. + +Excessive invariance. GS could also result in neural networks that are invariant to task-relevant changes in the input. In the example above, it is possible to obtain a data point with low probability under the data distribution, but that would still be classified with high confidence. + +Implicit regularization. One might argue that according to Occam’s razor, a simpler decision boundary should generalize better. In fact, if both training and test sets share the same dominant feature (in this example, the feature along the horizontal axis), GS naturally prevents the learning of less dominant features that could otherwise result in overfitting. Therefore, depending on our assumptions on the training and test distributions, GS could also act as an implicit regularizer. We provide further discussion on the implicit regularization aspect of GS in Section 5. + +# 3 Theoretical Results + +In this section, we study the learning dynamics of neural networks trained with cross-entropy loss. Particularly, we seek to decompose the learning dynamics along orthogonal directions in the feature space of neural networks, to provide a formal definition of GS, and to derive a simple regularization method to mitigate it. For analytical tractability, we make three key assumptions: (1) we study deep networks in the Neural Tangent Kernel (NTK) regime, (2) we treat a binary classification task, (3) we decompose the interaction between two features. In Section 4, we demonstrate our results hold beyond these simplifying assumptions, for a wide range of practical settings. All derivation details can be found in $\mathbf { S M C }$ . + +# 3.1 Problem Setup and Gradient Starvation Definition + +Let ${ \mathcal { D } } = \{ { \bf X } , { \bf y } \}$ denote a training set containing $n$ datapoints with $d$ dimensions, where, $\mathbf { X } =$ $[ \mathbf { x } _ { 1 } , . . . , \mathbf { x } _ { n } ] \in \mathbb { R } ^ { n \times d }$ and their corresponding class label $\mathbf { y } \in \{ - 1 , + 1 \} ^ { n }$ . Also let $\hat { \mathbf { y } } ( \mathbf { X } ) : = f ^ { ( L ) } ( \mathbf { X } ) :$ $\mathbb { R } ^ { n \times d } \to \mathbb { R } ^ { n }$ represent the logits of an $\mathrm { L }$ -layer fully-connected neural network where each hidden layer $h ^ { ( l ) } ( x ) \in \mathbf { \bar { \mathbb { R } } } ^ { d _ { l } }$ is defined as follows, + +$$ +\begin{array} { r } { \left\{ \begin{array} { l l } { \boldsymbol { f } ^ { ( l ) } ( \mathbf { x } _ { i } ) = \mathbf { W } ^ { ( l ) } h ^ { ( l - 1 ) } ( \mathbf { x } _ { i } ) } \\ { h ^ { ( l ) } ( \mathbf { x } _ { i } ) = \sqrt { \frac { \gamma } { d _ { l } } } \boldsymbol { \xi } ( \boldsymbol { f } ^ { ( l ) } ( \mathbf { x } _ { i } ) ) } \end{array} \right. , l \in \{ 0 , 1 , . . . , L \} , } \end{array} +$$ + +in which $\mathbf { W } ^ { ( l ) } \in \mathbb { R } ^ { d _ { l } \times d _ { l - 1 } }$ is a weight matrix drawn from $\mathcal { N } ( 0 , \bf { I } )$ and $\gamma$ is a scaling factor to ensure that norm of each $\boldsymbol { h } ^ { ( l - 1 ) }$ is preserved at initialization (See [28] for a formal treatment). The function $\xi ( . )$ is also an element-wise non-linear activation function. + +Let $\pmb \theta = \mathrm { c o n c a t } \big ( \cup _ { l = 1 } ^ { L } \mathrm { v e c } ( \mathbf W ^ { ( l ) } ) \big ) \in \mathbb { R } ^ { m }$ be the concatenation of all vectorized weight matrices with $m$ as the total number of parameters. In the NTK regime [52], in the limit of infinite width, the output of the neural network can be approximated as a linear function of its parameters governed by the neural tangent random feature (NTRF) matrix [23], + +$$ +\Phi \left( \mathbf { X } , \theta \right) = \frac { \partial \hat { \mathbf { y } } \left( \mathbf { X } , \theta \right) } { \partial \theta } \in \mathbb { R } ^ { n \times m } . +$$ + +In the wide-width regime, the NTRF changes very little during training [62], and the output of the neural network can be approximated by a first order Taylor expansion around the initialization parameters $\pmb { \theta } _ { 0 }$ . Setting $\Phi _ { 0 } \equiv \Phi \left( \mathbf { X } , \pmb { \theta } _ { 0 } \right)$ and then, without loss of generality, centering parameters and the output coordinates to their value at the initialization ${ \bf \delta _ { \theta } }$ and $\hat { \mathbf { y } } _ { 0 , }$ ), we get + +$$ +\hat { \mathbf { y } } \left( \mathbf { X } , \pmb { \theta } \right) = \Phi _ { 0 } \pmb { \theta } . +$$ + +Dominant directions in the feature space as well as the parameter space are given by principal components of the NTRF matrix $\Phi _ { 0 }$ , which are the same as those of the NTK Gram matrix [106]. We therefore introduce the following definition. + +Definition 1 (Features and Responses). Consider the singular value decomposition (SVD) of the matrix $\mathbf { Y } \Phi _ { 0 } = \mathbf { U } \mathbf { S } \mathbf { V } ^ { T }$ , where $\mathbf { Y } = d i a g \left( \mathbf { y } \right)$ . The jth feature is given by $( \mathbf { \dot { V } } ^ { T } ) _ { j . }$ .. The strength of jth feature is represented by $s _ { j } = ( \mathbf { S } ) _ { j j }$ . Also, $( \mathbf { U } ) _ { \cdot j }$ contains the weights of this feature in all examples. A neural network’s response to a feature $j$ is given by $z _ { j }$ where, + +$$ +\mathbf { z } : = \mathbf { U } ^ { T } \mathbf { Y } \hat { \mathbf { y } } = \mathbf { S } \mathbf { V } ^ { T } \pmb { \theta } . +$$ + +In Eq. 4, the response to feature $j$ is the sum of the responses to every example in $( \mathbf { Y } \hat { \mathbf { y } } )$ multiplied by the weight of the feature in that example $( \mathbf { U } ^ { T } )$ . For example, if all elements of $( \mathbf { U } ) _ { \cdot j }$ are positive, it indicates a perfect correlation between this feature and class labels. We are now equipped to formally define GS. + +Definition 2 (Gradient Starvation). Recall the the model prescribed by Eq. 3. Let $z _ { j } ^ { \ast }$ denote the model’s response to feature $j$ at training optimum $\pmb { \theta } ^ { * 1 }$ . Feature $i$ starves the gradient for feature $j$ $i f d z _ { j } ^ { * } / d ( s _ { i } ^ { 2 } ) < 0$ . + +This definition of GS implies that an increase in the strength of feature $i$ has a detrimental effect on the learning of feature $j$ . We now derive conditions for which learning dynamics of system 3 suffer from GS. + +# 3.2 Training Dynamics + +We consider the widely used ridge-regularized cross-entropy loss function, + +$$ +\mathcal { L } \left( \pmb { \theta } \right) = \mathbf { 1 } \cdot \log \left[ 1 + \exp \left( - \mathbf { Y } \hat { \mathbf { y } } \right) \right] + \frac { \lambda } { 2 } \| \pmb { \theta } \| ^ { 2 } , +$$ + +where 1 is a vector of size $n$ with all its elements equal to 1. This vector form simply represents a summation over all the elements of the vector it is multiplied to. $\lambda \in [ 0 , \infty )$ denotes the weight decay coefficient. + +Direct minimization of this loss function using the gradient descent obeys coupled dynamics and is difficult to treat directly [26]. To overcome this problem, we call on a variational approach that leverages the Legendre transformation of the loss function. This allows tractable dynamics that can directly incorporate rates of learning in different feature directions. Following [50], we note the following inequality, + +$$ +\begin{array} { r } { \log \left[ 1 + \exp \left( - \mathbf { Y } \hat { \mathbf { y } } \right) \right] \geq H ( \alpha ) - \alpha \odot \mathbf { Y } \hat { \mathbf { y } } , } \end{array} +$$ + +where $H ( \pmb { \alpha } ) = - \left[ \pmb { \alpha } \log \pmb { \alpha } + ( 1 - \pmb { \alpha } ) \log \left( 1 - \pmb { \alpha } \right) \right]$ is Shannon’s binary entropy function, $\alpha \in$ $( 0 , 1 ) ^ { n }$ is a variational parameter defined for each training example, and $\odot$ denotes the element-wise vector product. Crucially, the equality holds when the maximum of r.h.s. w.r.t $_ \alpha$ is achieved at $\begin{array} { r } { \pmb { \alpha } ^ { * } = \frac { \bar { { \partial \mathcal { L } } } } { \partial ( \mathbf { Y } \hat { \mathbf { y } } ) ^ { T } } } \end{array}$ , which leads to the following optimization problem, + +$$ +\operatorname* { m i n } _ { \pmb { \theta } } \mathcal { L } \left( \pmb { \theta } \right) = \operatorname* { m i n } _ { \pmb { \theta } } \operatorname* { m a x } _ { \pmb { \alpha } } \left( \mathbf { 1 } \cdot H ( \pmb { \alpha } ) - \pmb { \alpha } \mathbf { Y } \hat { \mathbf { y } } + \frac { \lambda } { 2 } \| \pmb { \theta } \| ^ { 2 } \right) , +$$ + +where the order of min and max can be swapped (see Lemma 3 of [50]). Since the neural network’s output is approximated by a linear function of $\pmb \theta$ , the minimization can be performed analytically with an critical value $\pmb { \theta } _ { . } ^ { \ast T } = \triangleq \frac { 1 } { \lambda } \pmb { \alpha } \mathbf { Y } \pmb { \Phi } _ { 0 }$ , given by a weighted sum of the training examples. This results in the following maximization problem on the dual variable, i.e., $\operatorname* { m i n } _ { \theta } { \mathcal { L } } \left( \theta \right)$ is equivalent to, + +$$ +\operatorname* { m i n } _ { \pmb { \theta } } \mathcal { L } \left( \pmb { \theta } \right) = \operatorname* { m a x } _ { \pmb { \alpha } } \left( \mathbf { 1 } \cdot H ( \pmb { \alpha } ) - \frac { 1 } { 2 \lambda } \pmb { \alpha } \mathbf { Y } \pmb { \Phi } _ { 0 } \pmb { \Phi } _ { 0 } ^ { T } \mathbf { Y } ^ { T } \pmb { \alpha } ^ { T } \right) . +$$ + +By applying continuous-time gradient ascent on this optimization problem, we derive an autonomous differential equation for the evolution of $_ { \pmb { \alpha } }$ , which can be written in terms of features (see Definition 1), + +$$ +\dot { \pmb { \alpha } } = \eta \left( - \log \pmb { \alpha } + \log \left( \mathbf { 1 } - \pmb { \alpha } \right) - \frac { 1 } { \lambda } \pmb { \alpha } \mathbf { U } \mathbf { S } ^ { 2 } \mathbf { U } ^ { T } \right) , +$$ + +where $\eta$ is the learning rate (see $\mathrm { S M } \mathrm { C } . 1$ for more details). For this dynamical system, we see that the logarithm term acts as barriers that keep $\alpha _ { i } \in ( 0 , 1 )$ . The other term depends on the matrix $\mathbf { U S ^ { 2 } U } ^ { T }$ , which is positive definite, and thus pushes the system towards the origin and therefore drives learning. + +When $\lambda \ll s _ { k } ^ { 2 }$ , where $k$ is an index over the singular values, the linear term dominates Eq. 9, and the fixed point is drawn closer towards the origin. Approximating dynamics with a first order Taylor expansion around the origin of the second term in Eq. 9, we get + +$$ +\dot { \boldsymbol { \alpha } } \approx \eta \left( - \log \boldsymbol { \alpha } - \frac { 1 } { \lambda } \boldsymbol { \alpha } \mathbf { U } \left( \mathbf { S } ^ { 2 } + \lambda \mathbf { I } \right) \mathbf { U } ^ { T } \right) , +$$ + +with stability given by the following theorem with proof in $\mathbf { S M C }$ . + +Theorem 1. Any fixed points of the system in Eq. 10 is attractive in the domain $\alpha _ { i } \in ( 0 , 1 )$ . + +At the fixed point $\ b { \alpha } ^ { * }$ , corresponding to the optimum of Eq. 8, the feature response of the neural network is given by, + +$$ +\mathbf { z } ^ { \ast } = \frac { 1 } { \lambda } \mathbf { S } ^ { 2 } \mathbf { U } ^ { T } \pmb { \alpha } ^ { \ast T } . +$$ + +See App. A for further discussions on the distinction between "feature space" and "parameter space". Below, we study how the strength of one feature could impact the response of the network to another feature which leads to GS. + +# 3.3 Gradient Starvation Regime + +In general, we do not expect to find an analytical solution for the dynamics of the coupled non-linear dynamical system of Eq. 10. However, there are at least two cases where a decoupled form for the dynamics allows to find an exact solution. We first introduce these cases and then study their perturbation to outline general lessons. + +1. If the matrix of singular values $\mathbf { S } ^ { 2 }$ is proportional to the identity: This is the case where all the features have the same strength $s ^ { 2 }$ . The fixed points are then given by, + +$$ +\alpha _ { i } ^ { * } = \frac { \lambda \mathcal { W } ( \lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \lambda } , \qquad z _ { j } ^ { * } = \frac { s ^ { 2 } \mathcal { W } ( \lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \lambda } \sum _ { i } u _ { i j } , +$$ + +where $\mathcal { W }$ is the Lambert W function. + +2. If the matrix $\mathbf { U }$ is a permutation matrix: This is the case in which each feature is associated with a single example only. The fixed points are then given by, + +$$ +\alpha _ { i } ^ { * } = \frac { \lambda \mathcal { W } ( \lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \lambda } , \ ~ \ z _ { j } ^ { * } = \frac { s _ { i } ^ { 2 } \mathcal { W } ( \lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \lambda } . +$$ + +To study a minimal case of starvation, we consider a variation of case 2 with the following assumption which implies that each feature is not associated with a single example anymore. + +Lemma 1. Assume $\mathbf { U }$ is a perturbed identity matrix (a special case of a permutation matrix) in which the off-diagonal elements are proportional to a small parameter $\delta > 0$ . Then, the fixed point of the dynamical system in Eq. 10 can be approximated by, + +$$ +\begin{array} { r } { { \pmb \alpha } ^ { * } = ( 1 - \log \left( { \pmb \alpha } _ { 0 } ^ { * } \right) ) \left[ { \pmb A } + d i a g \left( { \pmb \alpha } _ { 0 } ^ { * } ^ { - 1 } \right) \right] ^ { - 1 } , } \end{array} +$$ + +where $\mathbf { A } = \lambda ^ { - 1 } \mathbf { U } ( \mathbf { S } ^ { 2 } + \lambda \mathbf { I } ) \mathbf { U } ^ { T }$ and $\alpha _ { 0 } ^ { * }$ is the fixed point of the uncoupled system with $\delta = 0$ + +For sake of ease of derivations, we consider the two dimensional case where, + +$$ +\mathbf { U } = \left( \begin{array} { c c } { \sqrt { 1 - \delta ^ { 2 } } } & { - \delta } \\ { \delta } & { \sqrt { 1 - \delta ^ { 2 } } } \end{array} \right) , +$$ + +which is equivalent to a $U$ matrix with two blocks of features with no intra-block coupling and $\delta$ amount of inter-block coupling. + +Theorem 2 (Gradient Starvation Regime). Consider a neural network in the linear regime, trained under cross-entropy loss for a binary classification task. With definition $^ { l }$ , assuming coupling between features 1 and 2 as in Eq. 15 and $s _ { 1 } ^ { 2 } > s _ { 2 } ^ { 2 }$ , we have, + +$$ +\frac { \mathrm { d } z _ { 2 } ^ { * } } { \mathrm { d } s _ { 1 } ^ { 2 } } < 0 , +$$ + +which implies GS. + +While Thm. 2 outlines conditions for GS in two dimensional feature space, we note that the same rationale naturally extends to higher dimensions, where GS is defined pairwise over feature directions. For a classification task, Thm. 2 indicates that gradient starvation occurs when the data admits different feature strengths, and coupled learning dynamics. GS is thus naturally expected with cross-entropy loss. Its detrimental effects however (as outlined in Sect. 2) arise in settings with large discrepancies between feature strengths, along with network connectivity that couples these features’ directions. This phenomenon readily extends to multi-class settings, and we validate this case with experiments in Sect. 4. Next, we introduce a simple regularizer that encourages feature decoupling, thus mitigating GS by insulating strong features from weaker ones. + +# 3.4 Spectral Decoupling + +By tracing back the equations of the previous section, one may realize that the term $U ^ { T } S ^ { 2 } U$ in Eq. 9 is not diagonal in the general case, and consequently introduces coupling between $\alpha _ { i }$ ’s and hence, between the features $z _ { i }$ ’s. We would like to discourage solutions that couple features in this way. To that end, we introduce a simple regularizer: Spectral Decoupling (SD). SD replaces the general L2 weight decay term in Eq. 5 with an L2 penalty exclusively on the network’s logits, yielding + +$$ +\mathcal { L } \left( \pmb { \theta } \right) = \mathbf { 1 } \cdot \log \left[ 1 + \exp \left( - \mathbf { Y } \hat { \mathbf { y } } \right) \right] + \frac { \lambda } { 2 } \| \hat { \mathbf { y } } \| ^ { 2 } . +$$ + +Repeating the same analysis steps taken above, but with SD instead of general L2 penalty, the critical value for $\pmb { \theta } ^ { * }$ becomes $\begin{array} { r } { \pmb { \theta } ^ { \ast } = \frac { 1 } { \lambda } \pmb { \alpha } \pmb { Y } \pmb { \Phi } _ { 0 } V \mathbf { S } ^ { - 2 } V ^ { T } } \end{array}$ . This new expression for $\pmb { \theta } ^ { * }$ results in the following modification of Eq. 9, + +$$ +\dot { \alpha } = \eta \left( \log \frac { \mathbf { 1 } - \alpha } { \alpha } - \frac { 1 } { \lambda } \alpha \mathbf { U } \mathbf { S } ^ { 2 } \mathbf { S } ^ { - 2 } \mathbf { U } ^ { T } \right) = \eta \left( \log \frac { \mathbf { 1 } - \alpha } { \alpha } - \frac { 1 } { \lambda } \alpha \right) , +$$ + +where as earlier, log and division are taken element-wise on the coordinates of $_ { \pmb { \alpha } }$ + +Note that in contrast to Eq. 9 the matrix multiplication involving $U$ and $S$ in Eq. 18 cancels out, leaving $\alpha _ { i }$ independent of other $\alpha _ { j \neq i }$ ’s. We point out this is true for any initial coupling, without simplifying assumptions. Thus, a simple penalty on output weights promotes decoupled dynamics across the dual parameter $\alpha _ { i }$ ’s, which track learning dynamics of feature responses (see Eq. 7). Together with Thm. 2, Eq. 18 suggests SD should mitigate GS and promote balanced learning dynamics across features. We now verify this in numerical experiments. For further intuition, we provide a simple experiment, summarized in Fig. 5, where directly visualizes the primal vs. the dual dynamics as well as the effect of the proposed spectral decoupling method. + +# 4 Experiments + +The experiments presented here are designed to outline the presence of GS and its consequences, as well as the efficacy of our proposed regularization method to alleviate them. Consequently, we highlight that achieving state-of-the-art results is not the objective. For more details including the scheme for hyper-parameter tuning, see App. B. + +# 4.1 Two-Moon classification and the margin + +Recall the simple 2-D classification task between red and blue data points in Fig. 1. Fig. 1 (c) demonstrates the learned decision boundary when SD is used. SD leads to learning a curved decision boundary with a larger margin in the input space. See App. B for additional details and experiments. + +# 4.2 CIFAR classification and adversarial robustness + +To study the classification margin in deeper networks, we conduct a classification experiment on CIFAR-10, CIFAR-100, and CIFAR-2 (cats vs dogs of CIFAR-10) [57] using a convolutional network with ReLU non-linearity. Unlike linear models, the margin to a non-linear decision boundary cannot be computed analytically. Therefore, following the approach in [72], we use "the norm of inputdisturbance required to cross the decision boundary" as a proxy for the margin. The disturbance on the input is computed by projected gradient descent (PGD) [84], a well-known adversarial attack. + +Table 1: Table compares adversarial robustness of ERM (vanilla cross-entropy) vs SD with a CNN trained on CIFAR-2, 10, and 100 (setup of [72]). SD consistently achieves a better OOD performance. + +
DatasetMethodTrain*Test IIDTest OOD†
Cifar-2w/o SD100.0% ±0.0 95.2%±0.1242.3% ±3.0
w/ SD(a=0.01)100.0%±0.0 95.3%±0.1769.7% ± 2.9
Cifar-10w/o SD99.9% ± 0.0192.8%±0.1530.1% ± 2.1
w/ SD(=0.01)99.9%±0.01 92.9% ±0.1667.7% ± 1.5
Cifar-100w/o SD99.7% ± 0.01 69.2% ±0.2914.3% ± 2.0
w/SD(a=0.05)99.7%±0.0270.5%±0.2624.9% ± 1.9
+ +† Accuracy (± std) for 10 runs. + +![](images/bf195fd7cc5efdd1fa50f433f2b3afcfca326e622b21c20b2e591316e226f770.jpg) +Figure 2: The plot shows the cumulative distribution function (CDF) of the margin for the CIFAR-2 binary classification. SD appears to improve the margin considerably. + +Table 1 includes the results for IID (original test set) and OOD (perturbed test set by $\epsilon _ { \mathrm { P G D } } = 0 . 0 5 )$ . Fig. 2 shows the percentange of mis-classifications as the norm of disturbance is increased for the Cifar-2 dataset. This plot can be interpreted as the cumulative distribution function (CDF) of the margin and hence a lower curve reads as a more robust network with a larger margin. This experiment suggests that when trained with vanilla cross-entropy, even slight disturbances in the input deteriorates the network’s classification accuracy. That is while spectral decoupling (SD) improves the margin considerably. Importantly, this improvement in robustness does not seem to compromise the noise-free test performance. It should also be highlighted that SD does not explicitly aim at maximizing the margin and the observed improvement is in fact a by-product of decoupled learning of latent features. See Section 5 for a discussion on why cross-entropy results in a poor margin while being considered a max-margin classifier in the literature [94]. + +# 4.3 Colored MNIST with color bias + +We conduct experiments on the Colored MNIST Dataset, proposed in [9]. The task is to predict binary labels $y = - 1$ for digits 0 to 4 and $y = + 1$ for digits 5 to 9. A color channel (red, green) is artificially added to each example to deliberately impose a spurious correlation between the color and the label. The task has three environments: + +• Training env. 1: Color is correlated with the labels with 0.9 probability. • Training env. 2: Color is correlated with the labels with 0.8 probability. • Testing env.: Color is correlated with the labels with 0.1 probability (0.9 reversely corre + +Because of the opposite correlation between the color and the label in the test set, only learning to classify based on color would be disastrous at testing. For this reason, Empirical Risk Minimization (ERM) performs very poorly on the test set $( 2 3 . 7 \%$ accuracy) as shown in Tab. 2. + +
MethodTrain AccuracyTest Accuracy
ERM(Vanilla Cross-Entropy)91.1 % (±0.4)23.7 % (±0.8)
REx[59]71.5 % (±1.0)68.7% (±0.9)
IRM[9]70.5% (±0.6)67.1 % (±1.4)
SD (this work)70.0 % (±0.9)68.4% (±1.2)
Oracle - (grayscale images)73.5 % (±0.2)73.0 % (±0.4)
RandomGuess50%50%
+ +Table 2: Test accuracy on test examples of the Colored MNIST after training for 1k epochs. The standard deviation over 10 runs is reported in parenthesis. ERM stands for the empirical risk minimization. Oracle is an ERM trained on grayscale images. Note that due to $25 \%$ label noise, a hypothetical optimum achieves $75 \%$ accuracy (the upper bound). + +Invariant Risk Minimization (IRM) [9] on the other hand, performs well on the test set with $( 6 7 . 1 \%$ accuracy). However, IRM requires access to multiple (two in this case) separate training environments with varying amount of spurious correlations. IRM uses the variance between environments as a signal for learning to be “invariant” to spurious correlations. Risk Extrapolation (REx) [59] is a related training method that encourages learning invariant representations. Similar to IRM, it requires access to multiple training environments in order to quantify the concept of “invariance”. + +SD achieves an accuracy of $6 8 . 4 \%$ . Its performance is remarkable because unlike IRM and REx, SD does not require access to multiple environments and yet performs well when trained on a single environment (in this case the aggregation of both of the training environments). + +A natural question that arises is “How does SD learn to ignore the color feature without having access to multiple environments?” The short answer is that it does not! In fact, we argue that SD learns the color feature but it also learns other predictive features, i.e., the digit shape features. At test time, the predictions resulting from the shape features prevail over the color feature. To validate this hypothesis, we study a trained model with each of these methods (ERM, IRM, SD) on four variants of the test environment: 1) grayscale-digits: No color channel is provided and the network should rely on shape features only. 2) colored-digits: Both color and digit are provided however the color is negatively correlated (opposite of the training set) with the label. 3) grayscaleblank: All images are grayscale and blank and hence do not provide any information. 4) colored-blank: Digit features are removed and only the color feature is kept, also with reverse label compared to training. Fig. 3 summarizes the results. For more discussions see SM B. + +As a final remark, we should highlight that, by design, this task assumes access to the test environment for hyperparameter tuning for all the reported methods. This is not a valid assumption in general, and hence the results should be only interpreted as a probe that shows that SD could provide an important level of control over what features are learned. + +![](images/d0fa5d396174a94eb275513da009f1f33178a40f2dbc241ce7dfa391f7e566f2.jpg) +Figure 3: Diagram comparing ERM, SD, and IRM on four different test environments on which we evaluate a pre-trained model. Top and bottom rows show the accuracy and the entropy (inverse of confidence), respectively. Analysis: Compare three values of $\mathfrak { C } \sharp \sharp \sharp \sharp \sharp \cdot$ , 9.4 % , and $4 9 . 6 \%$ : Both ERM and SD have learned the color feature but since it is inversely correlated with the label, when only the color feature is provided, as expected both ERM and SD performs poorly. Now compare $\textcircled { 1 } \textcircled { 1 }$ and $0 . 4 1$ : Although both ERM and SD have learned the color feature, ERM is much more confident on its predictions (zero entropy). As a consequence, when digit features are provided along with the color feature (colored-digit environment), ERM still performs poorly $( \overbrace { 2 3 . 9 \mathrm { ~ \% ~ } } )$ but SD achieves significantly better results $( 6 7 . 2 \% )$ ). IRM ignores the color feature altogether but it requires access to multiple training environments. + +![](images/78aab33fb5d05d81db549ed8560e9bd995cca1540e7ae465d6c4ea573f439933.jpg) +Figure 4: CelebA: blond vs dark hair classification. The HairColor and the Gender are spuriously correlated which leads to poor OOD performance with ERM, however SD significantly improves performance. ERM’s worst group accuracy is significantly lower than SD. + +Table 3: CelebA: blond vs dark hair classification with spurious correlation. We report test performance over ten runs. SD significantly improves upon ERM. ∗Group DRO [89] requires explicit information about the spurious correlation. LfF [71] requires simultaneous training of two networks. + +
MethodAverage Acc.Worst Group Acc.
ERM94.61 % (±0.67)40.35 % (±1.68)
SD (this work)91.64 % (±0.61)83.24 % (±2.01)
LfFN/A81.24 % (±1.38)
Group DRO*91.76 % (±0.28)87.78 % (±0.96)
+ +# 4.4 CelebA with gender bias + +The CelebA dataset [65] contains $1 6 2 \mathrm { k }$ celebrity faces with binary attributes associated with each image. Following the setup of [89], the task is to classify images with respect to their hair color into two classes of blond or dark hair. However, the Gender $\in$ {Male, Female} is spuriously correlated with the $\mathtt { H a i r C o l o r } \in \{ \mathtt { B l o n d } , \mathtt { D a r k } \}$ in the training data. The rarest group which is blond males represents only $0 . 8 5 \%$ of the training data (1387 out of $1 6 2 \mathrm { k }$ examples). We train a ResNet-50 model [38] on this task. Tab. 3 summarizes the results and compares the performance of several methods. A model with vanilla cross-entropy (ERM) appears to generalize well on average but fails to generalize to the rarest group (blond males) which can be considered as “weakly" out-of-distribution (OOD). Our proposed SD improves the performance more than twofold. It should be highlighted that for this task, we use a variant of SD in which, $\frac { \lambda } { 2 } | | \hat { y } - \gamma | | _ { 2 } ^ { 2 }$ is added to the original cross-entropy loss. The hyper-parameters $\lambda$ and $\gamma$ are tuned separately for each class (a total of four hyper-parameters). This variant of SD does provably decouple the dynamics too but appears to perform better than the original SD in Eq. 17 in this task. + +Other proposed methods presented in Tab. 3 also show significant improvements on the performance of the worst group accuracy. The recently proposed “Learning from failure” (LfF) [71] achieves comparable results to SD, but it requires simultaneous training of two networks. Group DRO [89] is another successful method for this task. However, unlike SD, Group DRO requires explicit information about the spuriously correlated attributes. In most practical tasks, information about the spurious correlations is not provided and, dependence on the spurious correlation goes unrecognized.2 + +# 5 Related Work and Discussion + +Here, we discuss the related work. Due to space constraints, further discussions are in App. A. + +On learning dynamics and Loss Choice. Several works including [90, 91, 1, 60] investigate the dynamics of deep linear networks trained with squared-error loss. Different decompositions of the learning process for neural networks have been used: [83, 104, 87, 105] study the learning in the Fourier domain and show that low-frequency functions are learned earlier than high-frequency ones. [90, 2, 32] provide closed-form equations for the dynamics of linear networks in terms of the principal components of the input covariance matrix. More recently, with the introduction of neural tangent kernel (NTK) [52, 62], a new line of research is to study the convergence properties of gradient descent [e.g. 8, 69, 25, 29, 7, 44, 33, 110, 11, 99]. Among them, [12, 106, 18, 22] decompose the learning process along the principal components of the NTK. The message in these works is that the training process can be decomposed into independent learning dynamics along the orthogonal directions. + +Most of the studies mentioned above focus on the particular squared-error loss. For a linearized network, the squared-error loss results in linear learning dynamics, which often admit an analytical solution. However, the de-facto loss function for many of the practical applications of neural networks is the cross-entropy. Using the cross-entropy as the loss function leads to significantly more complicated and non-linear dynamics, even for a linear neural network. In this work, our focus was the cross-entropy loss. + +On reliance upon spurious correlations and robustness. In the context of robustness in neural networks, state-of-the-art neural networks appear to naturally focus on low-level superficial correlations rather than more abstract and robustly informative features of interest (e.g. [30]). As we argue in this work, Gradient Starvation is likely an important factor contributing to this phenomenon and can result in adversarial vulnerability. There is a rich research literature on adversarial attacks and neural networks’ vulnerability [96, 34, 48, 67, 5, 47]. Interestingly, [73], [72] and [51] draw a similar conclusion and argue that “an insufficiency of the cross-entropy loss” causes excessive invariances to predictive features. Perhaps [92] is the closest to our work in which authors study the simplicity bias (SB) in stochastic gradient descent. They demonstrate that neural networks exhibit extreme bias that could lead to adversarial vulnerability. + +On implicit bias. Despite being highly-overparameterized, modern neural networks seem to generalize very well [108]. Modern neural networks generalize surprisingly well in numerous machine tasks. This is despite the fact that neural networks typically contain orders of magnitude more parameters than the number of examples in a training set and have sufficient capacity to fit a totally randomized dataset perfectly [108]. The widespread explanation is that the gradient descent has a form of implicit bias towards learning simpler functions that generalize better according to Occam’s razor. Our exposition of GS reinforces this explanation. In essence, when training and test data points are drawn from the same distribution, the top salient features are predictive in both sets. We conjecture that in such a scenario, by not learning the less salient features, GS naturally protects the network from overfitting. + +The same phenomenon is referred to as implicit bias, implicit regularization, simplicity bias and spectral bias in several works [83, 75, 36, 74, 70, 53, 94, 10, 13, 35, 82, 66]. + +As an active line of research, numerous studies have provided different explanations for this phenomenon. For example, [70] justifies the implicit bias of neural networks by showing that stochastic gradient descent learns simpler functions first. [15, 78] suggests that a form of implicit regularization is induced by an alignment between NTK’s principal components and only a few task-relevant directions. Several other works such as [20, 35, 94, 25] recognize the convergence of gradient descent to maximum-margin solution as the essential factor for the generalizability of neural networks. It should be stressed that these work refer to the margin in the hidden space and not in the input space as pointed out in [55]. Indeed, as observed in our experiments, the maximum-margin classifier in the hidden space can be achieved at the expense of a small margin in the input space. + +On Gradient Starvation and no free lunch theorem. The no free lunch theorem [93, 102] states that “learning is impossible without making assumptions about training and test distributions”. Perhaps, the most commonly used assumption of machine learning is the i.i.d. assumption [98], which assumes that training and test data are identically distributed. However, in general, this assumption might not hold, and in many practical applications, there are predictive features in the training set that do not generalize to the test set. A natural question that arises is how to favor generalizable features over spurious features? The most common approaches include data augmentation, controlling the inductive biases, using regularizations, and more recently training using multiple environments. + +Here, we would like to elaborate on an interesting thought experiment of [79]: Suppose a neural network is provided with a chess book containing examples of chess games with the best movements indicated by a red arrow. The network can take two approaches: 1) learn how to play chess, or 2) learn just the red arrows. Either of these solutions results in zero training loss on the games in the book while only the former is generalizable to new games. With no external knowledge, the network typically learns the simpler solution. + +Recent work aims to leverage the invariance principle across several environments to improve robust learning. This is akin to present several chess books to a network, each with markings indicating the best moves for different sets of games. In several studies [9, 59, 79, 3], methods are developed to aggregate information from multiple training environments in a way that favors the generalizable / domain-agnostic / invariant solution. We argue that even with having access to only one training environment, there is useful information in the training set that fails to be discovered due to Gradient Starvation. The information on how to actually play chess is already available in any of the chess books. Still, as soon as the network learns the red arrows, the network has no incentive for further learning. Therefore, learning the red arrows is not an issue per se, but not learning to play chess is. + +Gradient Starvation: friend or foe? Here, we would like to remind the reader that GS can have both adverse and beneficial consequences. If the learned features are sufficient to generalize to the test data, gradient starvation can be viewed as an implicit regularizer. Otherwise, Gradient Starvation could have an unfavorable effect, which we observe empirically when some predictive features fail to be learned. A better understanding and control of Gradient Starvation and its impact on generalization offers promising avenues to address this issue with minimal assumptions. Indeed, our Spectral Decoupling method requires an assumption about feature imbalance but not to pinpoint them exactly, relying on modulated learning dynamics to achieve balance. + +GS social impact Modern neural networks are being deployed extensively in numerous machine learning tasks. Our models are used in critical applications such as autonomous driving, medical prediction, and even justice system where human lives are at stake. However, neural networks appear to base their predictions on superficial biases in the dataset. Unfortunately, biases in datasets could be neglected and pose negative impacts on our society. In fact, our Celeb-A experiment is an example of the existence of such a bias in the data. As shown in the paper, the gender-specific bias could lead to a superficial high performance and is indeed very hard to detect. Our analysis, although mostly on the theory side, could pave the path for researchers to build machine learning systems that are robust to biases and helps towards fairness in our predictions. + +# 6 Conclusion + +In this paper, we formalized Gradient Starvation (GS) as a phenomenon that emerges when training with cross-entropy loss in neural networks. By analyzing the dynamical system corresponding to the learning process in a dual space, we showed that GS could slow down the learning of certain features, even if they are present in the training set. We derived spectral decoupling (SD) regularization as a possible remedy to GS. + +# Acknowledgments and Disclosure of Funding + +The authors are grateful to Samsung Electronics Co., Ldt., CIFAR, and IVADO for their funding and Calcul Québec and Compute Canada for providing us with the computing resources. We would further like to acknowledge the significance of discussions and supports from Reyhane Askari Hemmat and Faruk Ahmed. MP would like to thank Aristide Baratin, Kostiantyn Lapchevskyi, Seyed Mohammad Mehdi Ahmadpanah, Milad Aghajohari, Kartik Ahuja, Shagun Sodhani, and Emmanuel Bengio for their invaluable help. + +# References + +[1] Madhu S Advani and Andrew M Saxe. High-dimensional dynamics of generalization error in neural networks. arXiv preprint arXiv:1710.03667, 2017. +[2] Madhu S Advani, Andrew M Saxe, and Haim Sompolinsky. High-dimensional dynamics of generalization error in neural networks. Neural Networks, 2020. +[3] Kartik Ahuja, Karthikeyan Shanmugam, and Amit Dhurandhar. Linear regression games: Convergence guarantees to approximate out-of-distribution solutions. arXiv preprint arXiv:2010.15234, 2020. [4] Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk minimization games. arXiv preprint arXiv:2002.04692, 2020. +[5] Naveed Akhtar and Ajmal Mian. Threat of adversarial attacks on deep learning in computer vision: A survey. IEEE Access, 6:14410–14430, 2018. +[6] Adelin Albert and John A Anderson. On the existence of maximum likelihood estimates in logistic regression models. Biometrika, 71(1):1–10, 1984. +[7] Zeyuan Allen-Zhu, Yuanzhi Li, and Yingyu Liang. Learning and generalization in overparameterized neural networks, going beyond two layers. In Advances in neural information processing systems, pages 6158–6169, 2019. +[8] Zeyuan Allen-Zhu, Yuanzhi Li, and Zhao Song. A convergence theory for deep learning via over-parameterization. In International Conference on Machine Learning, pages 242–252. PMLR, 2019. +[9] Martin Arjovsky, Léon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk minimization. arXiv preprint arXiv:1907.02893, 2019. +[10] Sanjeev Arora, Nadav Cohen, Wei Hu, and Yuping Luo. Implicit regularization in deep matrix factorization. In Advances in Neural Information Processing Systems, pages 7413–7424, 2019. +[11] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages 8141–8150, 2019. +[12] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, and Ruosong Wang. Fine-grained analysis of optimization and generalization for overparameterized two-layer neural networks. arXiv preprint arXiv:1901.08584, 2019. +[13] Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A closer look at memorization in deep networks. arXiv preprint arXiv:1706.05394, 2017. +[14] Nicholas Baker, Hongjing Lu, Gennady Erlikhman, and Philip J Kellman. Deep convolutional networks do not classify based on global object shape. PLoS computational biology, 14(12):e1006613, 2018. +[15] Aristide Baratin, Thomas George, César Laurent, R Devon Hjelm, Guillaume Lajoie, Pascal Vincent, and Simon Lacoste-Julien. Implicit regularization in deep learning: A view from function space. arXiv preprint arXiv:2008.00938, 2020. +[16] Sara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. In Proceedings of the European Conference on Computer Vision (ECCV), pages 456–473, 2018. +[17] Yonatan Belinkov and Yonatan Bisk. Synthetic and natural noise both break neural machine translation. arXiv preprint arXiv:1711.02173, 2017. +[18] Alberto Bietti and Julien Mairal. On the inductive bias of neural tangent kernels. In Advances in Neural Information Processing Systems, pages 12893–12904, 2019. +[19] Wieland Brendel and Matthias Bethge. Approximating cnns with bag-of-local-features models works surprisingly well on imagenet. arXiv preprint arXiv:1904.00760, 2019. +[20] Alon Brutzkus, Amir Globerson, Eran Malach, and Shai Shalev-Shwartz. Sgd learns overparameterized networks that provably generalize on linearly separable data. arXiv preprint arXiv:1710.10174, 2017. +[21] Christopher JC Burges and David J Crisp. Uniqueness of the svm solution. Advances in neural information processing systems, 12:223–229, 2000. +[22] Yuan Cao, Zhiying Fang, Yue Wu, Ding-Xuan Zhou, and Quanquan Gu. Towards understanding the spectral bias of deep learning. arXiv preprint arXiv:1912.01198, 2019. +[23] Yuan Cao and Quanquan Gu. Generalization bounds of stochastic gradient descent for wide and deep neural networks. In Advances in Neural Information Processing Systems, pages 10836–10846, 2019. +[24] Zixiang Chen, Yuan Cao, Quanquan Gu, and Tong Zhang. A generalized neural tangent kernel analysis for two-layer neural networks. arXiv preprint arXiv:2002.04026, 2020. +[25] Lenaic Chizat and Francis Bach. A note on lazy training in supervised differentiable programming. arXiv preprint arXiv:1812.07956, 1, 2018. +[26] Remi Tachet des Combes, Mohammad Pezeshki, Samira Shabanian, Aaron Courville, and Yoshua Bengio. On the learning dynamics of deep neural networks. arXiv preprint arXiv:1809.06848, 2018. +[27] Thomas M Cover. Geometrical and statistical properties of systems of linear inequalities with applications in pattern recognition. IEEE transactions on electronic computers, 0(3):326–334, 1965. +[28] Simon S Du, Wei Hu, and Jason D Lee. Algorithmic regularization in learning deep homogeneous models: Layers are automatically balanced. In Advances in Neural Information Processing Systems, pages 384–395, 2018. +[29] Simon S Du, Xiyu Zhai, Barnabas Poczos, and Aarti Singh. Gradient descent provably optimizes over-parameterized neural networks. arXiv preprint arXiv:1810.02054, 2018. +[30] Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. arXiv preprint arXiv:2004.07780, 2020. +[31] Thomas George. Nngeometry: Easy and fast fisher information matrices and neural tangent kernels in pytorch. 0, 2020. +[32] Gauthier Gidel, Francis Bach, and Simon Lacoste-Julien. Implicit regularization of discrete gradient dynamics in linear neural networks. In Advances in Neural Information Processing Systems, pages 3202–3211, 2019. +[33] Sebastian Goldt, Madhu Advani, Andrew M Saxe, Florent Krzakala, and Lenka Zdeborová. Dynamics of stochastic gradient descent for two-layer neural networks in the teacher-student setup. In Advances in Neural Information Processing Systems, pages 6981–6991, 2019. +[34] Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572, 2014. +[35] Suriya Gunasekar, Jason D Lee, Daniel Soudry, and Nati Srebro. Implicit bias of gradient descent on linear convolutional networks. In Advances in Neural Information Processing Systems, pages 9461–9471, 2018. +[36] Suriya Gunasekar, Blake E Woodworth, Srinadh Bhojanapalli, Behnam Neyshabur, and Nati Srebro. Implicit regularization in matrix factorization. In Advances in Neural Information Processing Systems, pages 6151–6159, 2017. +[37] Suchin Gururangan, Swabha Swayamdipta, Omer Levy, Roy Schwartz, Samuel R Bowman, and Noah A Smith. Annotation artifacts in natural language inference data. arXiv preprint arXiv:1803.02324, 2018. +[38] 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, pages 770–778, 2016. +[39] Christina Heinze-Deml and Nicolai Meinshausen. Conditional variance penalties and domain shift robustness. arXiv preprint arXiv:1710.11469, 2017. +[40] Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common corruptions and perturbations. arXiv preprint arXiv:1903.12261, 2019. +[41] Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-ofdistribution examples in neural networks. arXiv preprint arXiv:1610.02136, 2016. +[42] Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020. +[43] Cho-Jui Hsieh, Kai-Wei Chang, Chih-Jen Lin, S Sathiya Keerthi, and Sellamanickam Sundararajan. A dual coordinate descent method for large-scale linear svm. In Proceedings of the 25th international conference on Machine learning, pages 408–415, 2008. +[44] Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. arXiv preprint arXiv:1909.08156, 2019. +[45] Kaixuan Huang, Yuqing Wang, Molei Tao, and Tuo Zhao. Why do deep residual networks generalize better than deep feedforward networks?—a neural tangent kernel perspective. Advances in Neural Information Processing Systems, 33, 2020. +[46] Like Hui and Mikhail Belkin. Evaluation of neural architectures trained with square loss vs cross-entropy in classification tasks. arXiv preprint arXiv:2006.07322, 2020. +[47] Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with limited queries and information. arXiv preprint arXiv:1804.08598, 2018. +[48] Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry. Adversarial examples are not bugs, they are features. In Advances in Neural Information Processing Systems, pages 125–136, 2019. +[49] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. +[50] Tommi S Jaakkola and David Haussler. Probabilistic kernel regression models. In AISTATS, 1999. +[51] Jörn-Henrik Jacobsen, Jens Behrmann, Richard Zemel, and Matthias Bethge. Excessive invariance causes adversarial vulnerability. arXiv preprint arXiv:1811.00401, 2018. +[52] Arthur Jacot, Franck Gabriel, and Clément Hongler. Neural tangent kernel: Convergence and generalization in neural networks. In Advances in neural information processing systems, pages 8571–8580, 2018. +[53] Ziwei Ji and Matus Telgarsky. The implicit bias of gradient descent on nonseparable data. In Conference on Learning Theory, pages 1772–1798, 2019. +[54] Jason Jo and Yoshua Bengio. Measuring the tendency of cnns to learn surface statistical regularities. arXiv preprint arXiv:1711.11561, 2017. +[55] Alexia Jolicoeur-Martineau and Ioannis Mitliagkas. Connections between support vector machines, wasserstein distance and gradient-penalty gans. arXiv preprint arXiv:1910.06922, 2019. +[56] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. +[57] Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 0, 2009. +[58] Anders Krogh and John A Hertz. A simple weight decay can improve generalization. In Advances in neural information processing systems, pages 950–957, 1992. +[59] David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (rex). arXiv preprint arXiv:2003.00688, 2020. +[60] Andrew K Lampinen and Surya Ganguli. An analytic theory of generalization dynamics and transfer learning in deep linear networks. arXiv preprint arXiv:1809.10374, 2018. +[61] Sebastian Lapuschkin, Stephan Wäldchen, Alexander Binder, Grégoire Montavon, Wojciech Samek, and Klaus-Robert Müller. Unmasking clever hans predictors and assessing what machines really learn. Nature communications, 10(1):1–8, 2019. +[62] Jaehoon Lee, Lechao Xiao, Samuel Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in neural information processing systems, pages 8570–8581, 2019. +[63] Kimin Lee, Kibok Lee, Honglak Lee, and Jinwoo Shin. A simple unified framework for detecting out-of-distribution samples and adversarial attacks. In Advances in Neural Information Processing Systems, pages 7167–7177, 2018. +[64] Shiyu Liang, Yixuan Li, and Rayadurgam Srikant. Enhancing the reliability of out-ofdistribution image detection in neural networks. arXiv preprint arXiv:1706.02690, 2017. +[65] 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), December 2015. +[66] Cong Ma, Kaizheng Wang, Yuejie Chi, and Yuxin Chen. Implicit regularization in nonconvex statistical estimation: Gradient descent converges linearly for phase retrieval and matrix completion. In International Conference on Machine Learning, pages 3345–3354. PMLR, 2018. +[67] Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. arXiv preprint arXiv:1706.06083, 2017. +[68] R Thomas McCoy, Ellie Pavlick, and Tal Linzen. Right for the wrong reasons: Diagnosing syntactic heuristics in natural language inference. arXiv preprint arXiv:1902.01007, 2019. +[69] Song Mei and Andrea Montanari. The generalization error of random features regression: Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019. +[70] Preetum Nakkiran, Gal Kaplun, Dimitris Kalimeris, Tristan Yang, Benjamin L Edelman, Fred Zhang, and Boaz Barak. Sgd on neural networks learns functions of increasing complexity. arXiv preprint arXiv:1905.11604, 2019. +[71] Junhyun Nam, Hyuntak Cha, Sungsoo Ahn, Jaeho Lee, and Jinwoo Shin. Learning from failure: Training debiased classifier from biased classifier. arXiv preprint arXiv:2007.02561, 2020. +[72] Kamil Nar, Orhan Ocal, S Shankar Sastry, and Kannan Ramchandran. Cross-entropy loss and low-rank features have responsibility for adversarial examples. arXiv preprint arXiv:1901.08360, 2019. +[73] Kamil Nar and S Shankar Sastry. Persistency of excitation for robustness of neural networks. arXiv preprint arXiv:1911.01043, 2019. +[74] Behnam Neyshabur, Ryota Tomioka, Ruslan Salakhutdinov, and Nathan Srebro. Geometry of optimization and implicit regularization in deep learning. arXiv preprint arXiv:1705.03071, 2017. +[75] Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. In search of the real inductive bias: On the role of implicit regularization in deep learning. arXiv preprint arXiv:1412.6614, 2014. +[76] Timothy Niven and Hung-Yu Kao. Probing neural network comprehension of natural language arguments. arXiv preprint arXiv:1907.07355, 2019. +[77] Luke Oakden-Rayner, Jared Dunnmon, Gustavo Carneiro, and Christopher Ré. Hidden stratification causes clinically meaningful failures in machine learning for medical imaging. In Proceedings of the ACM Conference on Health, Inference, and Learning, pages 151–159, 2020. +[78] Samet Oymak, Zalan Fabian, Mingchen Li, and Mahdi Soltanolkotabi. Generalization guarantees for neural networks via harnessing the low-rank structure of the jacobian. arXiv preprint arXiv:1906.05392, 2019. +[79] Giambattista Parascandolo, Alexander Neitz, Antonio Orvieto, Luigi Gresele, and Bernhard Schölkopf. Learning explanations that are hard to vary. arXiv preprint arXiv:2009.00329, 2020. +[80] 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. openreview id=BJJsrmfCZ, 2017. +[81] Oskar Pfungst. Clever Hans:(the horse of Mr. Von Osten.) a contribution to experimental animal and human psychology. Holt, Rinehart and Winston, 1911. +[82] Tomaso Poggio, Kenji Kawaguchi, Qianli Liao, Brando Miranda, Lorenzo Rosasco, Xavier Boix, Jack Hidary, and Hrushikesh Mhaskar. Theory of deep learning iii: explaining the non-overfitting puzzle. arXiv preprint arXiv:1801.00173, 2017. +[83] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht, Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International Conference on Machine Learning, pages 5301–5310. PMLR, 2019. +[84] Jonas Rauber, Wieland Brendel, and Matthias Bethge. Foolbox: A python toolbox to benchmark the robustness of machine learning models. arXiv preprint arXiv:1707.04131, 2017. +[85] 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, pages 1135–1144, 2016. +[86] Michael Roberts. Machine learning for covid-19 diagnosis: Promising, but still too flawed, Mar 2021. +[87] Basri Ronen, David Jacobs, Yoni Kasten, and Shira Kritchman. The convergence rate of neural networks for learned functions of different frequencies. In Advances in Neural Information Processing Systems, pages 4761–4771, 2019. +[88] Amir Rosenfeld, Richard Zemel, and John K Tsotsos. The elephant in the room. arXiv preprint arXiv:1808.03305, 2018. +[89] Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally robust neural networks for group shifts: On the importance of regularization for worst-case generalization. arXiv preprint arXiv:1911.08731, 2019. + +[90] Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013. + +[91] Andrew M Saxe, James L McClelland, and Surya Ganguli. A mathematical theory of semantic development in deep neural networks. Proceedings of the National Academy of Sciences, 116(23):11537–11546, 2019. + +[92] Harshay Shah, Kaustav Tamuly, Aditi Raghunathan, Prateek Jain, and Praneeth Netrapalli. The pitfalls of simplicity bias in neural networks. arXiv preprint arXiv:2006.07710, 2020. + +[93] Shai Shalev-Shwartz and Shai Ben-David. Understanding machine learning: From theory to algorithms. Cambridge university press, 2014. + +[94] Daniel Soudry, Elad Hoffer, Mor Shpigel Nacson, Suriya Gunasekar, and Nathan Srebro. The implicit bias of gradient descent on separable data. The Journal of Machine Learning Research, 19(1):2822–2878, 2018. + +[95] Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research, 15(1):1929–1958, 2014. + +[96] Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013. + +[97] Guillermo Valle-Pérez, Chico Q Camargo, and Ard A Louis. Deep learning generalizes because the parameter-function map is biased towards simple functions. arXiv preprint arXiv:1805.08522, 2018. + +[98] Vladimir Vapnik and Vlamimir Vapnik. Statistical learning theory wiley. New York, 1:624, 1998. + +[99] Santosh Vempala and John Wilmes. Gradient descent for one-hidden-layer neural networks: Polynomial convergence and sq lower bounds. In Conference on Learning Theory, pages 3115–3117, 2019. + +[100] Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations by projecting superficial statistics out. arXiv preprint arXiv:1903.06256, 2019. + +[101] Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why pinns fail to train: A neural tangent kernel perspective. Journal of Computational Physics, page 110768, 2021. + +[102] David H Wolpert. The lack of a priori distinctions between learning algorithms. Neural computation, 8(7):1341–1390, 1996. + +[103] Xin Xu and Eibe Frank. Logistic regression and boosting for labeled bags of instances. In Pacific-Asia conference on knowledge discovery and data mining, pages 272–281. Springer, 2004. + +[104] Zhi-Qin John Xu, Yaoyu Zhang, Tao Luo, Yanyang Xiao, and Zheng Ma. Frequency principle: Fourier analysis sheds light on deep neural networks. arXiv preprint arXiv:1901.06523, 2019. + +[105] Zhi-Qin John Xu, Yaoyu Zhang, and Yanyang Xiao. Training behavior of deep neural network in frequency domain. In International Conference on Neural Information Processing, pages 264–274. Springer, 2019. + +[106] Greg Yang and Hadi Salman. A fine-grained spectral perspective on neural networks. arXiv preprint arXiv:1907.10599, 2019. + +[107] John R Zech, Marcus A Badgeley, Manway Liu, Anthony B Costa, Joseph J Titano, and Eric K Oermann. Confounding variables can degrade generalization performance of radiological deep learning models. arXiv preprint arXiv:1807.00431, 2018. + +[108] Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016. + +[109] Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, and Kai-Wei Chang. Men also like shopping: Reducing gender bias amplification using corpus-level constraints. arXiv preprint arXiv:1707.09457, 2017. + +[110] Difan Zou, Yuan Cao, Dongruo Zhou, and Quanquan Gu. Gradient descent optimizes overparameterized deep relu networks. Machine Learning, 109(3):467–492, 2020. \ No newline at end of file diff --git a/parse/train/aExAsh1UHZo/aExAsh1UHZo_content_list.json b/parse/train/aExAsh1UHZo/aExAsh1UHZo_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..c4063b7b93531ce7e8b6a45b70b76c069f585c37 --- /dev/null +++ b/parse/train/aExAsh1UHZo/aExAsh1UHZo_content_list.json @@ -0,0 +1,1760 @@ +[ + { + "type": "text", + "text": "Gradient Starvation: A Learning Proclivity in Neural Networks ", + "text_level": 1, + "bbox": [ + 243, + 122, + 753, + 174 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Mohammad Pezeshki1,2 Sékou-Oumar Kaba1,3 Yoshua Bengio1,2 Aaron Courville1,2 Doina Precup1,3,4 Guillaume Lajoie1,2 \n1Mila 2Université de Montréal 3McGill University 4Google DeepMind \ncorresponding authors:{pezeshki, guillaume.lajoie}@mila.quebec ", + "bbox": [ + 233, + 223, + 764, + 300 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 334, + 535, + 352 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We identify and formalize a fundamental gradient descent phenomenon leading to a learning proclivity in over-parameterized neural networks. Gradient Starvation arises when cross-entropy loss is minimized by capturing only a subset of features relevant for the task, despite the presence of other predictive features that fail to be discovered. This work provides a theoretical explanation for the emergence of such feature imbalances in neural networks. Using tools from Dynamical Systems theory, we identify simple properties of learning dynamics during gradient descent that lead to this imbalance, and prove that such a situation can be expected given certain statistical structure in training data. Based on our proposed formalism, we develop guarantees for a novel but simple regularization method aimed at decoupling feature learning dynamics, improving accuracy and robustness in cases hindered by gradient starvation. We illustrate our findings with simple and realworld out-of-distribution (OOD) generalization experiments. ", + "bbox": [ + 233, + 367, + 766, + 546 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 571, + 310, + 589 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In 1904, a horse named Hans attracted worldwide attention due to the belief that it was capable of doing arithmetic calculations [81]. Its trainer would ask Hans a question, and Hans would reply by tapping on the ground with its hoof. However, it was later revealed that the horse was only noticing subtle but distinctive signals in its trainer’s unconscious behavior, unbeknown to him, and not actually performing arithmetic. An analogous phenomenon has been noticed when training neural networks [e.g. 85, 109, 54, 39, 17, 14, 37, 51, 107, 76, 48, 19, 61, 77]. In many cases, state-of-the-art neural networks appear to focus on low-level superficial correlations, rather than more abstract and robustly informative features of interest [16, 88, 40, 68, 30]. ", + "bbox": [ + 174, + 603, + 825, + 715 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The rationale behind this phenomenon is well known by practitioners: given strongly-correlated and fast-to-learn features in training data, gradient descent is biased towards learning them first. However, the precise conditions leading to such learning dynamics, and how one might intervene to control this feature imbalance are not entirely understood. Recent work aims at identifying the reasons behind this phenomenon [97, 70, 22, 73, 51, 76, 100, 92, 83, 105, 42, 79, 4], while complementary work quantifies resulting shortcomings, including poor generalization to out-of-distribution (OOD) test data, reliance upon spurious correlations, and lack of robustness [30, 68, 77, 41, 63, 64, 9]. However most established work focuses on squared-error loss and its particularities, where results do not readily generalize to other objective forms. This is especially problematic since for several classification applications, cross-entropy is the loss function of choice, yielding very distinct learning dynamics. In this paper, we argue that Gradient Starvation, first coined in [26], is a leading cause for this feature imbalance in neural networks trained with cross-entropy, and propose a simple approach to mitigate it. ", + "bbox": [ + 174, + 720, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/9f945eaedc28dc850b70ed0f5a00c0d50de39ab2ea581ed85082d9da4e26613b.jpg", + "image_caption": [ + "Figure 1: Diagram illustrating the effect of gradient starvation in a simple 2-D classification task. (a) Data is not linearly separable and the learned decision boundary is curved. (b) Data is linearly separable by a small margin $\\Delta = \\mathrm { 0 . 1 }$ ). This small margin allows the network to discriminate confidently only along the horizontal axis and ignore the vertical axis. (c) Data is linearly separable as in (b). However, with the proposed Spectral decoupling (SD), a curved decision boundary with a large margin is learned. (d) Diagram shows the evolution of two of the features (Eq. 4) of the dynamics in three cases shown as dotted, dashed and solid lines. Analysis: (dotted) vs (dashed): Linear separability of the data results in an increase in $z _ { 1 }$ and a decrease (starvation) of $z _ { 2 }$ . (dashed) vs (solid): SD suppresses $z _ { 1 }$ and hence allows $z _ { 2 }$ to grow. Decision boundaries are averaged over ten runs. More experiments with common regularization methods are provided in App. B. " + ], + "image_footnote": [], + "bbox": [ + 184, + 92, + 812, + 222 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here we summarize our contributions: ", + "bbox": [ + 176, + 367, + 426, + 381 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We provide a theoretical framework to study the learning dynamics of linearized neural networks trained with cross-entropy loss in a dual space. Using perturbation analysis, we formalize Gradient Starvation (GS) in view of the coupling between the dynamics of orthogonal directions in the feature space (Thm. 2). We leverage our theory to introduce Spectral Decoupling (SD) (Eq. 17) and prove this simple regularizer helps to decouple learning dynamics, mitigating GS. We support our findings with extensive empirical results on a variety of classification and adversarial attack tasks. All code and experiment details available at GitHub repository. ", + "bbox": [ + 215, + 383, + 825, + 500 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the rest of the paper, we first present a simple example to outline the consequences of GS. We then present our theoretical results before outlining a number of numerical experiments. We close with a review of related work followed by a discussion. ", + "bbox": [ + 176, + 510, + 825, + 551 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Gradient Starvation: A simple example ", + "text_level": 1, + "bbox": [ + 174, + 569, + 534, + 587 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Consider a 2-D classification task with a training set consisting of two classes, as shown in Figure 1. A two-layer ReLU network with 500 hidden units is trained with cross-entropy loss for two different arrangements of the training points. The difference between the two arrangements is that, in one setting, the data is not linearly separable, but a slight shift makes it linearly separable in the other setting. This small shift allows the network to achieve a negligible loss by only learning to discriminate along the horizontal axis, ignoring the other. This contrasts with the other case, where both features contribute to the learned classification boundary, which arguably matches the data structure better. We observe that training longer or using different regularizers, including weight decay [58], dropout [95], batch normalization [49], as well as changing the optimization algorithm to Adam [56] or changing the network architecture or the coordinate system, do not encourage the network to learn a curved decision boundary. (See App. B for more details.) ", + "bbox": [ + 173, + 599, + 825, + 752 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We argue that this occurs because cross-entropy loss leads to gradients “starved” of information from vertical features. Simply put, when one feature is learned faster than the others, the gradient contribution of examples containing that feature is diminished (i.e., they are correctly processed based on that feature alone). This results in a lack of sufficient gradient signal, and hence prevents any remaining features from being learned. This simple mechanism has potential consequences, which we outline below. ", + "bbox": [ + 174, + 758, + 825, + 842 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 Consequences of Gradient Starvation ", + "text_level": 1, + "bbox": [ + 176, + 857, + 472, + 872 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Lack of robustness. In the example above, even in the right plot, the training loss is nearly zero, and the network is very confident in its predictions. However, the decision boundary is located very close to the data points. This could lead to adversarial vulnerability as well as lack of robustness when generalizing to out-of-distribution data. ", + "bbox": [ + 173, + 882, + 821, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 90, + 823, + 119 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Excessive invariance. GS could also result in neural networks that are invariant to task-relevant changes in the input. In the example above, it is possible to obtain a data point with low probability under the data distribution, but that would still be classified with high confidence. ", + "bbox": [ + 174, + 125, + 825, + 166 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Implicit regularization. One might argue that according to Occam’s razor, a simpler decision boundary should generalize better. In fact, if both training and test sets share the same dominant feature (in this example, the feature along the horizontal axis), GS naturally prevents the learning of less dominant features that could otherwise result in overfitting. Therefore, depending on our assumptions on the training and test distributions, GS could also act as an implicit regularizer. We provide further discussion on the implicit regularization aspect of GS in Section 5. ", + "bbox": [ + 173, + 171, + 825, + 256 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Theoretical Results ", + "text_level": 1, + "bbox": [ + 174, + 267, + 367, + 284 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we study the learning dynamics of neural networks trained with cross-entropy loss. Particularly, we seek to decompose the learning dynamics along orthogonal directions in the feature space of neural networks, to provide a formal definition of GS, and to derive a simple regularization method to mitigate it. For analytical tractability, we make three key assumptions: (1) we study deep networks in the Neural Tangent Kernel (NTK) regime, (2) we treat a binary classification task, (3) we decompose the interaction between two features. In Section 4, we demonstrate our results hold beyond these simplifying assumptions, for a wide range of practical settings. All derivation details can be found in $\\mathbf { S M C }$ . ", + "bbox": [ + 173, + 291, + 826, + 402 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 Problem Setup and Gradient Starvation Definition ", + "text_level": 1, + "bbox": [ + 173, + 411, + 565, + 426 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Let ${ \\mathcal { D } } = \\{ { \\bf X } , { \\bf y } \\}$ denote a training set containing $n$ datapoints with $d$ dimensions, where, $\\mathbf { X } =$ $[ \\mathbf { x } _ { 1 } , . . . , \\mathbf { x } _ { n } ] \\in \\mathbb { R } ^ { n \\times d }$ and their corresponding class label $\\mathbf { y } \\in \\{ - 1 , + 1 \\} ^ { n }$ . Also let $\\hat { \\mathbf { y } } ( \\mathbf { X } ) : = f ^ { ( L ) } ( \\mathbf { X } ) :$ $\\mathbb { R } ^ { n \\times d } \\to \\mathbb { R } ^ { n }$ represent the logits of an $\\mathrm { L }$ -layer fully-connected neural network where each hidden layer $h ^ { ( l ) } ( x ) \\in \\mathbf { \\bar { \\mathbb { R } } } ^ { d _ { l } }$ is defined as follows, ", + "bbox": [ + 173, + 429, + 825, + 489 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6f8f15709d9700eaaacea1360908c3c39431dd2c5800d3777f3d5ed7e98b7674.jpg", + "text": "$$\n\\begin{array} { r } { \\left\\{ \\begin{array} { l l } { \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\mathbf { W } ^ { ( l ) } h ^ { ( l - 1 ) } ( \\mathbf { x } _ { i } ) } \\\\ { h ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\sqrt { \\frac { \\gamma } { d _ { l } } } \\boldsymbol { \\xi } ( \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) ) } \\end{array} \\right. , l \\in \\{ 0 , 1 , . . . , L \\} , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 330, + 494, + 666, + 540 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "in which $\\mathbf { W } ^ { ( l ) } \\in \\mathbb { R } ^ { d _ { l } \\times d _ { l - 1 } }$ is a weight matrix drawn from $\\mathcal { N } ( 0 , \\bf { I } )$ and $\\gamma$ is a scaling factor to ensure that norm of each $\\boldsymbol { h } ^ { ( l - 1 ) }$ is preserved at initialization (See [28] for a formal treatment). The function $\\xi ( . )$ is also an element-wise non-linear activation function. ", + "bbox": [ + 173, + 545, + 825, + 590 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Let $\\pmb \\theta = \\mathrm { c o n c a t } \\big ( \\cup _ { l = 1 } ^ { L } \\mathrm { v e c } ( \\mathbf W ^ { ( l ) } ) \\big ) \\in \\mathbb { R } ^ { m }$ be the concatenation of all vectorized weight matrices with $m$ as the total number of parameters. In the NTK regime [52], in the limit of infinite width, the output of the neural network can be approximated as a linear function of its parameters governed by the neural tangent random feature (NTRF) matrix [23], ", + "bbox": [ + 173, + 597, + 825, + 655 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/27b2435e7380ce4aa89d9ee7edfb7c7b3b86c5fe37c69ae5613eb7dde2cf29f7.jpg", + "text": "$$\n\\Phi \\left( \\mathbf { X } , \\theta \\right) = \\frac { \\partial \\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\theta \\right) } { \\partial \\theta } \\in \\mathbb { R } ^ { n \\times m } .\n$$", + "text_format": "latex", + "bbox": [ + 387, + 660, + 611, + 690 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In the wide-width regime, the NTRF changes very little during training [62], and the output of the neural network can be approximated by a first order Taylor expansion around the initialization parameters $\\pmb { \\theta } _ { 0 }$ . Setting $\\Phi _ { 0 } \\equiv \\Phi \\left( \\mathbf { X } , \\pmb { \\theta } _ { 0 } \\right)$ and then, without loss of generality, centering parameters and the output coordinates to their value at the initialization ${ \\bf \\delta _ { \\theta } }$ and $\\hat { \\mathbf { y } } _ { 0 , }$ ), we get ", + "bbox": [ + 173, + 695, + 825, + 751 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c884f9c3036e5875e2440359116cb793b7296ab0f64500e3eab28bbff63b4669.jpg", + "text": "$$\n\\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\pmb { \\theta } \\right) = \\Phi _ { 0 } \\pmb { \\theta } .\n$$", + "text_format": "latex", + "bbox": [ + 439, + 756, + 558, + 773 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dominant directions in the feature space as well as the parameter space are given by principal components of the NTRF matrix $\\Phi _ { 0 }$ , which are the same as those of the NTK Gram matrix [106]. We therefore introduce the following definition. ", + "bbox": [ + 174, + 785, + 826, + 828 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Definition 1 (Features and Responses). Consider the singular value decomposition (SVD) of the matrix $\\mathbf { Y } \\Phi _ { 0 } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }$ , where $\\mathbf { Y } = d i a g \\left( \\mathbf { y } \\right)$ . The jth feature is given by $( \\mathbf { \\dot { V } } ^ { T } ) _ { j . }$ .. The strength of jth feature is represented by $s _ { j } = ( \\mathbf { S } ) _ { j j }$ . Also, $( \\mathbf { U } ) _ { \\cdot j }$ contains the weights of this feature in all examples. A neural network’s response to a feature $j$ is given by $z _ { j }$ where, ", + "bbox": [ + 174, + 832, + 825, + 888 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/e0dadc9db1bdfe7385727999f8aa3291facc2aad80dfd687d6cc77ae8f986910.jpg", + "text": "$$\n\\mathbf { z } : = \\mathbf { U } ^ { T } \\mathbf { Y } \\hat { \\mathbf { y } } = \\mathbf { S } \\mathbf { V } ^ { T } \\pmb { \\theta } .\n$$", + "text_format": "latex", + "bbox": [ + 418, + 893, + 578, + 912 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In Eq. 4, the response to feature $j$ is the sum of the responses to every example in $( \\mathbf { Y } \\hat { \\mathbf { y } } )$ multiplied by the weight of the feature in that example $( \\mathbf { U } ^ { T } )$ . For example, if all elements of $( \\mathbf { U } ) _ { \\cdot j }$ are positive, it indicates a perfect correlation between this feature and class labels. We are now equipped to formally define GS. ", + "bbox": [ + 173, + 90, + 825, + 147 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 2 (Gradient Starvation). Recall the the model prescribed by Eq. 3. Let $z _ { j } ^ { \\ast }$ denote the model’s response to feature $j$ at training optimum $\\pmb { \\theta } ^ { * 1 }$ . Feature $i$ starves the gradient for feature $j$ $i f d z _ { j } ^ { * } / d ( s _ { i } ^ { 2 } ) < 0$ . ", + "bbox": [ + 173, + 150, + 825, + 196 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "This definition of GS implies that an increase in the strength of feature $i$ has a detrimental effect on the learning of feature $j$ . We now derive conditions for which learning dynamics of system 3 suffer from GS. ", + "bbox": [ + 176, + 205, + 825, + 247 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 Training Dynamics ", + "text_level": 1, + "bbox": [ + 174, + 256, + 346, + 271 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We consider the widely used ridge-regularized cross-entropy loss function, ", + "bbox": [ + 176, + 273, + 661, + 289 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/2a58001c365d2f538ed91fa68e8915798a3306d4f713cbb588bd6d55ceda5d33.jpg", + "text": "$$\n\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 352, + 292, + 643, + 323 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where 1 is a vector of size $n$ with all its elements equal to 1. This vector form simply represents a summation over all the elements of the vector it is multiplied to. $\\lambda \\in [ 0 , \\infty )$ denotes the weight decay coefficient. ", + "bbox": [ + 173, + 325, + 826, + 367 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Direct minimization of this loss function using the gradient descent obeys coupled dynamics and is difficult to treat directly [26]. To overcome this problem, we call on a variational approach that leverages the Legendre transformation of the loss function. This allows tractable dynamics that can directly incorporate rates of learning in different feature directions. Following [50], we note the following inequality, ", + "bbox": [ + 173, + 373, + 825, + 444 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/51ac1f98f81a1a54fc0f27af240fc908950ca57165473d460bfd2160ed6465e3.jpg", + "text": "$$\n\\begin{array} { r } { \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] \\geq H ( \\alpha ) - \\alpha \\odot \\mathbf { Y } \\hat { \\mathbf { y } } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 354, + 448, + 640, + 465 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $H ( \\pmb { \\alpha } ) = - \\left[ \\pmb { \\alpha } \\log \\pmb { \\alpha } + ( 1 - \\pmb { \\alpha } ) \\log \\left( 1 - \\pmb { \\alpha } \\right) \\right]$ is Shannon’s binary entropy function, $\\alpha \\in$ $( 0 , 1 ) ^ { n }$ is a variational parameter defined for each training example, and $\\odot$ denotes the element-wise vector product. Crucially, the equality holds when the maximum of r.h.s. w.r.t $_ \\alpha$ is achieved at $\\begin{array} { r } { \\pmb { \\alpha } ^ { * } = \\frac { \\bar { { \\partial \\mathcal { L } } } } { \\partial ( \\mathbf { Y } \\hat { \\mathbf { y } } ) ^ { T } } } \\end{array}$ , which leads to the following optimization problem, ", + "bbox": [ + 173, + 469, + 825, + 526 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/d037cf2ec61dcb3d1955e72856e3244d3e815755bed8c636f1649c0dc2c24ce6.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m i n } _ { \\pmb { \\theta } } \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\pmb { \\alpha } \\mathbf { Y } \\hat { \\mathbf { y } } + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 326, + 531, + 669, + 563 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where the order of min and max can be swapped (see Lemma 3 of [50]). Since the neural network’s output is approximated by a linear function of $\\pmb \\theta$ , the minimization can be performed analytically with an critical value $\\pmb { \\theta } _ { . } ^ { \\ast T } = \\triangleq \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 }$ , given by a weighted sum of the training examples. This results in the following maximization problem on the dual variable, i.e., $\\operatorname* { m i n } _ { \\theta } { \\mathcal { L } } \\left( \\theta \\right)$ is equivalent to, ", + "bbox": [ + 173, + 565, + 825, + 625 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8fdaae8e4c0e053073b44955972f7a1e43ba526c8000d7b1ebf8528410f239f5.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\frac { 1 } { 2 \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 } \\pmb { \\Phi } _ { 0 } ^ { T } \\mathbf { Y } ^ { T } \\pmb { \\alpha } ^ { T } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 627, + 687, + 662 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "By applying continuous-time gradient ascent on this optimization problem, we derive an autonomous differential equation for the evolution of $_ { \\pmb { \\alpha } }$ , which can be written in terms of features (see Definition 1), ", + "bbox": [ + 173, + 671, + 826, + 700 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ef1bdde7574153adcbf8bcb5476311d6bdc949e5f2799b36b3d6235c96a5c715.jpg", + "text": "$$\n\\dot { \\pmb { \\alpha } } = \\eta \\left( - \\log \\pmb { \\alpha } + \\log \\left( \\mathbf { 1 } - \\pmb { \\alpha } \\right) - \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 331, + 704, + 665, + 739 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\eta$ is the learning rate (see $\\mathrm { S M } \\mathrm { C } . 1$ for more details). For this dynamical system, we see that the logarithm term acts as barriers that keep $\\alpha _ { i } \\in ( 0 , 1 )$ . The other term depends on the matrix $\\mathbf { U S ^ { 2 } U } ^ { T }$ , which is positive definite, and thus pushes the system towards the origin and therefore drives learning. ", + "bbox": [ + 173, + 742, + 826, + 785 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "When $\\lambda \\ll s _ { k } ^ { 2 }$ , where $k$ is an index over the singular values, the linear term dominates Eq. 9, and the fixed point is drawn closer towards the origin. Approximating dynamics with a first order Taylor expansion around the origin of the second term in Eq. 9, we get ", + "bbox": [ + 174, + 790, + 821, + 833 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/7b6493933df3c8ef9bb06ba93d55808ed4e62b93b177372ec253fd5fd1ea0125.jpg", + "text": "$$\n\\dot { \\boldsymbol { \\alpha } } \\approx \\eta \\left( - \\log \\boldsymbol { \\alpha } - \\frac { 1 } { \\lambda } \\boldsymbol { \\alpha } \\mathbf { U } \\left( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } \\right) \\mathbf { U } ^ { T } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 352, + 837, + 643, + 871 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "with stability given by the following theorem with proof in $\\mathbf { S M C }$ . ", + "bbox": [ + 173, + 873, + 606, + 890 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. Any fixed points of the system in Eq. 10 is attractive in the domain $\\alpha _ { i } \\in ( 0 , 1 )$ . ", + "bbox": [ + 166, + 90, + 774, + 107 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "At the fixed point $\\ b { \\alpha } ^ { * }$ , corresponding to the optimum of Eq. 8, the feature response of the neural network is given by, ", + "bbox": [ + 171, + 114, + 823, + 145 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/549dc5ba17cf02f665147738a03d6f8831c87ba1ff282bb600a79b852cd0a2bf.jpg", + "text": "$$\n\\mathbf { z } ^ { \\ast } = \\frac { 1 } { \\lambda } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\pmb { \\alpha } ^ { \\ast T } .\n$$", + "text_format": "latex", + "bbox": [ + 431, + 146, + 565, + 176 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "See App. A for further discussions on the distinction between \"feature space\" and \"parameter space\". Below, we study how the strength of one feature could impact the response of the network to another feature which leads to GS. ", + "bbox": [ + 174, + 185, + 825, + 228 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 Gradient Starvation Regime ", + "text_level": 1, + "bbox": [ + 174, + 236, + 410, + 251 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In general, we do not expect to find an analytical solution for the dynamics of the coupled non-linear dynamical system of Eq. 10. However, there are at least two cases where a decoupled form for the dynamics allows to find an exact solution. We first introduce these cases and then study their perturbation to outline general lessons. ", + "bbox": [ + 173, + 253, + 825, + 310 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1. If the matrix of singular values $\\mathbf { S } ^ { 2 }$ is proportional to the identity: This is the case where all the features have the same strength $s ^ { 2 }$ . The fixed points are then given by, ", + "bbox": [ + 173, + 319, + 823, + 349 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/98b77c0258faa3e27be5daf90a6da8a0069f4f2a43fbcc1f58fe2437fc1fca7c.jpg", + "text": "$$\n\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } , \\qquad z _ { j } ^ { * } = \\frac { s ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } \\sum _ { i } u _ { i j } ,\n$$", + "text_format": "latex", + "bbox": [ + 274, + 351, + 722, + 387 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathcal { W }$ is the Lambert W function. ", + "bbox": [ + 174, + 388, + 416, + 402 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2. If the matrix $\\mathbf { U }$ is a permutation matrix: This is the case in which each feature is associated with a single example only. The fixed points are then given by, ", + "bbox": [ + 173, + 406, + 823, + 433 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/e0c865d0cff62eebda44c13f2f2dce5e87a174381ad935ea4d2e463c3721db38.jpg", + "text": "$$\n\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } , \\ ~ \\ z _ { j } ^ { * } = \\frac { s _ { i } ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } .\n$$", + "text_format": "latex", + "bbox": [ + 289, + 434, + 709, + 468 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To study a minimal case of starvation, we consider a variation of case 2 with the following assumption which implies that each feature is not associated with a single example anymore. ", + "bbox": [ + 173, + 474, + 825, + 503 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lemma 1. Assume $\\mathbf { U }$ is a perturbed identity matrix (a special case of a permutation matrix) in which the off-diagonal elements are proportional to a small parameter $\\delta > 0$ . Then, the fixed point of the dynamical system in Eq. 10 can be approximated by, ", + "bbox": [ + 173, + 506, + 826, + 547 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8fa9f2599a45277bd1be8b82fa4f8da6d880d8939947ee6c460201d3668cba86.jpg", + "text": "$$\n\\begin{array} { r } { { \\pmb \\alpha } ^ { * } = ( 1 - \\log \\left( { \\pmb \\alpha } _ { 0 } ^ { * } \\right) ) \\left[ { \\pmb A } + d i a g \\left( { \\pmb \\alpha } _ { 0 } ^ { * } ^ { - 1 } \\right) \\right] ^ { - 1 } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 551, + 651, + 580 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathbf { A } = \\lambda ^ { - 1 } \\mathbf { U } ( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } ) \\mathbf { U } ^ { T }$ and $\\alpha _ { 0 } ^ { * }$ is the fixed point of the uncoupled system with $\\delta = 0$ ", + "bbox": [ + 171, + 584, + 785, + 599 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For sake of ease of derivations, we consider the two dimensional case where, ", + "bbox": [ + 174, + 608, + 679, + 623 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/9de6cc5547b38c8bd37d7d5238912454a6f380bf100477d622b7d3501d2fe0a4.jpg", + "text": "$$\n\\mathbf { U } = \\left( \\begin{array} { c c } { \\sqrt { 1 - \\delta ^ { 2 } } } & { - \\delta } \\\\ { \\delta } & { \\sqrt { 1 - \\delta ^ { 2 } } } \\end{array} \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 398, + 625, + 598, + 661 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "which is equivalent to a $U$ matrix with two blocks of features with no intra-block coupling and $\\delta$ amount of inter-block coupling. ", + "bbox": [ + 173, + 664, + 823, + 693 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2 (Gradient Starvation Regime). Consider a neural network in the linear regime, trained under cross-entropy loss for a binary classification task. With definition $^ { l }$ , assuming coupling between features 1 and 2 as in Eq. 15 and $s _ { 1 } ^ { 2 } > s _ { 2 } ^ { 2 }$ , we have, ", + "bbox": [ + 173, + 694, + 825, + 737 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/eb01860dd49f66eb6704bb2a37eadf192f58b84c650f26d9bcbea94d09dc9b39.jpg", + "text": "$$\n\\frac { \\mathrm { d } z _ { 2 } ^ { * } } { \\mathrm { d } s _ { 1 } ^ { 2 } } < 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 465, + 739, + 531, + 773 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "which implies GS. ", + "bbox": [ + 174, + 776, + 292, + 790 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "While Thm. 2 outlines conditions for GS in two dimensional feature space, we note that the same rationale naturally extends to higher dimensions, where GS is defined pairwise over feature directions. For a classification task, Thm. 2 indicates that gradient starvation occurs when the data admits different feature strengths, and coupled learning dynamics. GS is thus naturally expected with cross-entropy loss. Its detrimental effects however (as outlined in Sect. 2) arise in settings with large discrepancies between feature strengths, along with network connectivity that couples these features’ directions. This phenomenon readily extends to multi-class settings, and we validate this case with experiments in Sect. 4. Next, we introduce a simple regularizer that encourages feature decoupling, thus mitigating GS by insulating strong features from weaker ones. ", + "bbox": [ + 173, + 790, + 826, + 916 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.4 Spectral Decoupling ", + "text_level": 1, + "bbox": [ + 174, + 92, + 354, + 106 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "By tracing back the equations of the previous section, one may realize that the term $U ^ { T } S ^ { 2 } U$ in Eq. 9 is not diagonal in the general case, and consequently introduces coupling between $\\alpha _ { i }$ ’s and hence, between the features $z _ { i }$ ’s. We would like to discourage solutions that couple features in this way. To that end, we introduce a simple regularizer: Spectral Decoupling (SD). SD replaces the general L2 weight decay term in Eq. 5 with an L2 penalty exclusively on the network’s logits, yielding ", + "bbox": [ + 173, + 109, + 826, + 180 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/667d8d75f123706917f09a16b18d21a9cfec7849204eccab3bd7bfc0643fc034.jpg", + "text": "$$\n\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\hat { \\mathbf { y } } \\| ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 352, + 186, + 647, + 217 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Repeating the same analysis steps taken above, but with SD instead of general L2 penalty, the critical value for $\\pmb { \\theta } ^ { * }$ becomes $\\begin{array} { r } { \\pmb { \\theta } ^ { \\ast } = \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\pmb { Y } \\pmb { \\Phi } _ { 0 } V \\mathbf { S } ^ { - 2 } V ^ { T } } \\end{array}$ . This new expression for $\\pmb { \\theta } ^ { * }$ results in the following modification of Eq. 9, ", + "bbox": [ + 174, + 229, + 825, + 273 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/68a2d032bcac738170f007b41002800aacdfe5bc977cfba3c129ee0055126fc4.jpg", + "text": "$$\n\\dot { \\alpha } = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { S } ^ { - 2 } \\mathbf { U } ^ { T } \\right) = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 272, + 279, + 723, + 314 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where as earlier, log and division are taken element-wise on the coordinates of $_ { \\pmb { \\alpha } }$ ", + "bbox": [ + 174, + 321, + 705, + 335 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Note that in contrast to Eq. 9 the matrix multiplication involving $U$ and $S$ in Eq. 18 cancels out, leaving $\\alpha _ { i }$ independent of other $\\alpha _ { j \\neq i }$ ’s. We point out this is true for any initial coupling, without simplifying assumptions. Thus, a simple penalty on output weights promotes decoupled dynamics across the dual parameter $\\alpha _ { i }$ ’s, which track learning dynamics of feature responses (see Eq. 7). Together with Thm. 2, Eq. 18 suggests SD should mitigate GS and promote balanced learning dynamics across features. We now verify this in numerical experiments. For further intuition, we provide a simple experiment, summarized in Fig. 5, where directly visualizes the primal vs. the dual dynamics as well as the effect of the proposed spectral decoupling method. ", + "bbox": [ + 173, + 340, + 826, + 453 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Experiments ", + "text_level": 1, + "bbox": [ + 173, + 463, + 313, + 479 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The experiments presented here are designed to outline the presence of GS and its consequences, as well as the efficacy of our proposed regularization method to alleviate them. Consequently, we highlight that achieving state-of-the-art results is not the objective. For more details including the scheme for hyper-parameter tuning, see App. B. ", + "bbox": [ + 174, + 483, + 825, + 540 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 Two-Moon classification and the margin ", + "text_level": 1, + "bbox": [ + 174, + 549, + 491, + 564 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Recall the simple 2-D classification task between red and blue data points in Fig. 1. Fig. 1 (c) demonstrates the learned decision boundary when SD is used. SD leads to learning a curved decision boundary with a larger margin in the input space. See App. B for additional details and experiments. ", + "bbox": [ + 174, + 568, + 825, + 609 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 CIFAR classification and adversarial robustness ", + "text_level": 1, + "bbox": [ + 173, + 619, + 547, + 635 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "To study the classification margin in deeper networks, we conduct a classification experiment on CIFAR-10, CIFAR-100, and CIFAR-2 (cats vs dogs of CIFAR-10) [57] using a convolutional network with ReLU non-linearity. Unlike linear models, the margin to a non-linear decision boundary cannot be computed analytically. Therefore, following the approach in [72], we use \"the norm of inputdisturbance required to cross the decision boundary\" as a proxy for the margin. The disturbance on the input is computed by projected gradient descent (PGD) [84], a well-known adversarial attack. ", + "bbox": [ + 173, + 638, + 825, + 722 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/59ad244bda678ccb8b333279b7223137c9e150f7bbe6db0ba4d75041a0f65e54.jpg", + "table_caption": [ + "Table 1: Table compares adversarial robustness of ERM (vanilla cross-entropy) vs SD with a CNN trained on CIFAR-2, 10, and 100 (setup of [72]). SD consistently achieves a better OOD performance. " + ], + "table_footnote": [ + "† Accuracy (± std) for 10 runs. " + ], + "table_body": "
DatasetMethodTrain*Test IIDTest OOD†
Cifar-2w/o SD100.0% ±0.0 95.2%±0.1242.3% ±3.0
w/ SD(a=0.01)100.0%±0.0 95.3%±0.1769.7% ± 2.9
Cifar-10w/o SD99.9% ± 0.0192.8%±0.1530.1% ± 2.1
w/ SD(=0.01)99.9%±0.01 92.9% ±0.1667.7% ± 1.5
Cifar-100w/o SD99.7% ± 0.01 69.2% ±0.2914.3% ± 2.0
w/SD(a=0.05)99.7%±0.0270.5%±0.2624.9% ± 1.9
", + "bbox": [ + 192, + 738, + 470, + 842 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/bf195fd7cc5efdd1fa50f433f2b3afcfca326e622b21c20b2e591316e226f770.jpg", + "image_caption": [ + "Figure 2: The plot shows the cumulative distribution function (CDF) of the margin for the CIFAR-2 binary classification. SD appears to improve the margin considerably. " + ], + "image_footnote": [], + "bbox": [ + 519, + 729, + 802, + 858 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1 includes the results for IID (original test set) and OOD (perturbed test set by $\\epsilon _ { \\mathrm { P G D } } = 0 . 0 5 )$ . Fig. 2 shows the percentange of mis-classifications as the norm of disturbance is increased for the Cifar-2 dataset. This plot can be interpreted as the cumulative distribution function (CDF) of the margin and hence a lower curve reads as a more robust network with a larger margin. This experiment suggests that when trained with vanilla cross-entropy, even slight disturbances in the input deteriorates the network’s classification accuracy. That is while spectral decoupling (SD) improves the margin considerably. Importantly, this improvement in robustness does not seem to compromise the noise-free test performance. It should also be highlighted that SD does not explicitly aim at maximizing the margin and the observed improvement is in fact a by-product of decoupled learning of latent features. See Section 5 for a discussion on why cross-entropy results in a poor margin while being considered a max-margin classifier in the literature [94]. ", + "bbox": [ + 173, + 90, + 825, + 244 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 Colored MNIST with color bias ", + "text_level": 1, + "bbox": [ + 174, + 251, + 431, + 266 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We conduct experiments on the Colored MNIST Dataset, proposed in [9]. The task is to predict binary labels $y = - 1$ for digits 0 to 4 and $y = + 1$ for digits 5 to 9. A color channel (red, green) is artificially added to each example to deliberately impose a spurious correlation between the color and the label. The task has three environments: ", + "bbox": [ + 173, + 270, + 825, + 325 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "• Training env. 1: Color is correlated with the labels with 0.9 probability. • Training env. 2: Color is correlated with the labels with 0.8 probability. • Testing env.: Color is correlated with the labels with 0.1 probability (0.9 reversely corre ", + "bbox": [ + 166, + 325, + 758, + 369 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Because of the opposite correlation between the color and the label in the test set, only learning to classify based on color would be disastrous at testing. For this reason, Empirical Risk Minimization (ERM) performs very poorly on the test set $( 2 3 . 7 \\%$ accuracy) as shown in Tab. 2. ", + "bbox": [ + 174, + 373, + 820, + 416 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/f545e9e1e56bd9753ffa30a0f1940f5e39427e997d76d348e8e8cf7e4edd63c5.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
MethodTrain AccuracyTest Accuracy
ERM(Vanilla Cross-Entropy)91.1 % (±0.4)23.7 % (±0.8)
REx[59]71.5 % (±1.0)68.7% (±0.9)
IRM[9]70.5% (±0.6)67.1 % (±1.4)
SD (this work)70.0 % (±0.9)68.4% (±1.2)
Oracle - (grayscale images)73.5 % (±0.2)73.0 % (±0.4)
RandomGuess50%50%
", + "bbox": [ + 305, + 420, + 687, + 522 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2: Test accuracy on test examples of the Colored MNIST after training for 1k epochs. The standard deviation over 10 runs is reported in parenthesis. ERM stands for the empirical risk minimization. Oracle is an ERM trained on grayscale images. Note that due to $25 \\%$ label noise, a hypothetical optimum achieves $75 \\%$ accuracy (the upper bound). ", + "bbox": [ + 174, + 532, + 823, + 583 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Invariant Risk Minimization (IRM) [9] on the other hand, performs well on the test set with $( 6 7 . 1 \\%$ accuracy). However, IRM requires access to multiple (two in this case) separate training environments with varying amount of spurious correlations. IRM uses the variance between environments as a signal for learning to be “invariant” to spurious correlations. Risk Extrapolation (REx) [59] is a related training method that encourages learning invariant representations. Similar to IRM, it requires access to multiple training environments in order to quantify the concept of “invariance”. ", + "bbox": [ + 174, + 587, + 825, + 670 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "SD achieves an accuracy of $6 8 . 4 \\%$ . Its performance is remarkable because unlike IRM and REx, SD does not require access to multiple environments and yet performs well when trained on a single environment (in this case the aggregation of both of the training environments). ", + "bbox": [ + 176, + 676, + 823, + 719 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "A natural question that arises is “How does SD learn to ignore the color feature without having access to multiple environments?” The short answer is that it does not! In fact, we argue that SD learns the color feature but it also learns other predictive features, i.e., the digit shape features. At test time, the predictions resulting from the shape features prevail over the color feature. To validate this hypothesis, we study a trained model with each of these methods (ERM, IRM, SD) on four variants of the test environment: 1) grayscale-digits: No color channel is provided and the network should rely on shape features only. 2) colored-digits: Both color and digit are provided however the color is negatively correlated (opposite of the training set) with the label. 3) grayscaleblank: All images are grayscale and blank and hence do not provide any information. 4) colored-blank: Digit features are removed and only the color feature is kept, also with reverse label compared to training. Fig. 3 summarizes the results. For more discussions see SM B. ", + "bbox": [ + 173, + 724, + 826, + 877 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "As a final remark, we should highlight that, by design, this task assumes access to the test environment for hyperparameter tuning for all the reported methods. This is not a valid assumption in general, and hence the results should be only interpreted as a probe that shows that SD could provide an important level of control over what features are learned. ", + "bbox": [ + 173, + 883, + 821, + 911 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/d0fa5d396174a94eb275513da009f1f33178a40f2dbc241ce7dfa391f7e566f2.jpg", + "image_caption": [ + "Figure 3: Diagram comparing ERM, SD, and IRM on four different test environments on which we evaluate a pre-trained model. Top and bottom rows show the accuracy and the entropy (inverse of confidence), respectively. Analysis: Compare three values of $\\mathfrak { C } \\sharp \\sharp \\sharp \\sharp \\sharp \\cdot$ , 9.4 % , and $4 9 . 6 \\%$ : Both ERM and SD have learned the color feature but since it is inversely correlated with the label, when only the color feature is provided, as expected both ERM and SD performs poorly. Now compare $\\textcircled { 1 } \\textcircled { 1 }$ and $0 . 4 1$ : Although both ERM and SD have learned the color feature, ERM is much more confident on its predictions (zero entropy). As a consequence, when digit features are provided along with the color feature (colored-digit environment), ERM still performs poorly $( \\overbrace { 2 3 . 9 \\mathrm { ~ \\% ~ } } )$ but SD achieves significantly better results $( 6 7 . 2 \\% )$ ). IRM ignores the color feature altogether but it requires access to multiple training environments. " + ], + "image_footnote": [], + "bbox": [ + 207, + 88, + 787, + 270 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/78aab33fb5d05d81db549ed8560e9bd995cca1540e7ae465d6c4ea573f439933.jpg", + "image_caption": [ + "Figure 4: CelebA: blond vs dark hair classification. The HairColor and the Gender are spuriously correlated which leads to poor OOD performance with ERM, however SD significantly improves performance. ERM’s worst group accuracy is significantly lower than SD. " + ], + "image_footnote": [], + "bbox": [ + 186, + 416, + 483, + 542 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/c374bd6f435fa84c2b4dc32d7b178b9b54f70ff37ac53db5fc208f9d9cb4f2f1.jpg", + "table_caption": [ + "Table 3: CelebA: blond vs dark hair classification with spurious correlation. We report test performance over ten runs. SD significantly improves upon ERM. ∗Group DRO [89] requires explicit information about the spurious correlation. LfF [71] requires simultaneous training of two networks. " + ], + "table_footnote": [], + "table_body": "
MethodAverage Acc.Worst Group Acc.
ERM94.61 % (±0.67)40.35 % (±1.68)
SD (this work)91.64 % (±0.61)83.24 % (±2.01)
LfFN/A81.24 % (±1.38)
Group DRO*91.76 % (±0.28)87.78 % (±0.96)
", + "bbox": [ + 514, + 431, + 810, + 532 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 656, + 823, + 684 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.4 CelebA with gender bias ", + "text_level": 1, + "bbox": [ + 174, + 691, + 383, + 705 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The CelebA dataset [65] contains $1 6 2 \\mathrm { k }$ celebrity faces with binary attributes associated with each image. Following the setup of [89], the task is to classify images with respect to their hair color into two classes of blond or dark hair. However, the Gender $\\in$ {Male, Female} is spuriously correlated with the $\\mathtt { H a i r C o l o r } \\in \\{ \\mathtt { B l o n d } , \\mathtt { D a r k } \\}$ in the training data. The rarest group which is blond males represents only $0 . 8 5 \\%$ of the training data (1387 out of $1 6 2 \\mathrm { k }$ examples). We train a ResNet-50 model [38] on this task. Tab. 3 summarizes the results and compares the performance of several methods. A model with vanilla cross-entropy (ERM) appears to generalize well on average but fails to generalize to the rarest group (blond males) which can be considered as “weakly\" out-of-distribution (OOD). Our proposed SD improves the performance more than twofold. It should be highlighted that for this task, we use a variant of SD in which, $\\frac { \\lambda } { 2 } | | \\hat { y } - \\gamma | | _ { 2 } ^ { 2 }$ is added to the original cross-entropy loss. The hyper-parameters $\\lambda$ and $\\gamma$ are tuned separately for each class (a total of four hyper-parameters). This variant of SD does provably decouple the dynamics too but appears to perform better than the original SD in Eq. 17 in this task. ", + "bbox": [ + 173, + 710, + 826, + 890 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Other proposed methods presented in Tab. 3 also show significant improvements on the performance of the worst group accuracy. The recently proposed “Learning from failure” (LfF) [71] achieves comparable results to SD, but it requires simultaneous training of two networks. Group DRO [89] is another successful method for this task. However, unlike SD, Group DRO requires explicit information about the spuriously correlated attributes. In most practical tasks, information about the spurious correlations is not provided and, dependence on the spurious correlation goes unrecognized.2 ", + "bbox": [ + 174, + 897, + 821, + 911 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 92, + 825, + 161 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 Related Work and Discussion ", + "text_level": 1, + "bbox": [ + 176, + 179, + 450, + 196 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Here, we discuss the related work. Due to space constraints, further discussions are in App. A. ", + "bbox": [ + 171, + 212, + 792, + 226 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "On learning dynamics and Loss Choice. Several works including [90, 91, 1, 60] investigate the dynamics of deep linear networks trained with squared-error loss. Different decompositions of the learning process for neural networks have been used: [83, 104, 87, 105] study the learning in the Fourier domain and show that low-frequency functions are learned earlier than high-frequency ones. [90, 2, 32] provide closed-form equations for the dynamics of linear networks in terms of the principal components of the input covariance matrix. More recently, with the introduction of neural tangent kernel (NTK) [52, 62], a new line of research is to study the convergence properties of gradient descent [e.g. 8, 69, 25, 29, 7, 44, 33, 110, 11, 99]. Among them, [12, 106, 18, 22] decompose the learning process along the principal components of the NTK. The message in these works is that the training process can be decomposed into independent learning dynamics along the orthogonal directions. ", + "bbox": [ + 174, + 229, + 825, + 382 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Most of the studies mentioned above focus on the particular squared-error loss. For a linearized network, the squared-error loss results in linear learning dynamics, which often admit an analytical solution. However, the de-facto loss function for many of the practical applications of neural networks is the cross-entropy. Using the cross-entropy as the loss function leads to significantly more complicated and non-linear dynamics, even for a linear neural network. In this work, our focus was the cross-entropy loss. ", + "bbox": [ + 174, + 388, + 825, + 472 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "On reliance upon spurious correlations and robustness. In the context of robustness in neural networks, state-of-the-art neural networks appear to naturally focus on low-level superficial correlations rather than more abstract and robustly informative features of interest (e.g. [30]). As we argue in this work, Gradient Starvation is likely an important factor contributing to this phenomenon and can result in adversarial vulnerability. There is a rich research literature on adversarial attacks and neural networks’ vulnerability [96, 34, 48, 67, 5, 47]. Interestingly, [73], [72] and [51] draw a similar conclusion and argue that “an insufficiency of the cross-entropy loss” causes excessive invariances to predictive features. Perhaps [92] is the closest to our work in which authors study the simplicity bias (SB) in stochastic gradient descent. They demonstrate that neural networks exhibit extreme bias that could lead to adversarial vulnerability. ", + "bbox": [ + 173, + 486, + 825, + 625 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "On implicit bias. Despite being highly-overparameterized, modern neural networks seem to generalize very well [108]. Modern neural networks generalize surprisingly well in numerous machine tasks. This is despite the fact that neural networks typically contain orders of magnitude more parameters than the number of examples in a training set and have sufficient capacity to fit a totally randomized dataset perfectly [108]. The widespread explanation is that the gradient descent has a form of implicit bias towards learning simpler functions that generalize better according to Occam’s razor. Our exposition of GS reinforces this explanation. In essence, when training and test data points are drawn from the same distribution, the top salient features are predictive in both sets. We conjecture that in such a scenario, by not learning the less salient features, GS naturally protects the network from overfitting. ", + "bbox": [ + 174, + 638, + 825, + 779 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The same phenomenon is referred to as implicit bias, implicit regularization, simplicity bias and spectral bias in several works [83, 75, 36, 74, 70, 53, 94, 10, 13, 35, 82, 66]. ", + "bbox": [ + 176, + 785, + 821, + 813 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As an active line of research, numerous studies have provided different explanations for this phenomenon. For example, [70] justifies the implicit bias of neural networks by showing that stochastic gradient descent learns simpler functions first. [15, 78] suggests that a form of implicit regularization is induced by an alignment between NTK’s principal components and only a few task-relevant directions. Several other works such as [20, 35, 94, 25] recognize the convergence of gradient descent to maximum-margin solution as the essential factor for the generalizability of neural networks. It should be stressed that these work refer to the margin in the hidden space and not in the input space as pointed out in [55]. Indeed, as observed in our experiments, the maximum-margin classifier in the hidden space can be achieved at the expense of a small margin in the input space. ", + "bbox": [ + 174, + 819, + 825, + 875 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 161 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "On Gradient Starvation and no free lunch theorem. The no free lunch theorem [93, 102] states that “learning is impossible without making assumptions about training and test distributions”. Perhaps, the most commonly used assumption of machine learning is the i.i.d. assumption [98], which assumes that training and test data are identically distributed. However, in general, this assumption might not hold, and in many practical applications, there are predictive features in the training set that do not generalize to the test set. A natural question that arises is how to favor generalizable features over spurious features? The most common approaches include data augmentation, controlling the inductive biases, using regularizations, and more recently training using multiple environments. ", + "bbox": [ + 174, + 178, + 825, + 289 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Here, we would like to elaborate on an interesting thought experiment of [79]: Suppose a neural network is provided with a chess book containing examples of chess games with the best movements indicated by a red arrow. The network can take two approaches: 1) learn how to play chess, or 2) learn just the red arrows. Either of these solutions results in zero training loss on the games in the book while only the former is generalizable to new games. With no external knowledge, the network typically learns the simpler solution. ", + "bbox": [ + 174, + 295, + 825, + 378 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Recent work aims to leverage the invariance principle across several environments to improve robust learning. This is akin to present several chess books to a network, each with markings indicating the best moves for different sets of games. In several studies [9, 59, 79, 3], methods are developed to aggregate information from multiple training environments in a way that favors the generalizable / domain-agnostic / invariant solution. We argue that even with having access to only one training environment, there is useful information in the training set that fails to be discovered due to Gradient Starvation. The information on how to actually play chess is already available in any of the chess books. Still, as soon as the network learns the red arrows, the network has no incentive for further learning. Therefore, learning the red arrows is not an issue per se, but not learning to play chess is. ", + "bbox": [ + 174, + 385, + 825, + 510 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gradient Starvation: friend or foe? Here, we would like to remind the reader that GS can have both adverse and beneficial consequences. If the learned features are sufficient to generalize to the test data, gradient starvation can be viewed as an implicit regularizer. Otherwise, Gradient Starvation could have an unfavorable effect, which we observe empirically when some predictive features fail to be learned. A better understanding and control of Gradient Starvation and its impact on generalization offers promising avenues to address this issue with minimal assumptions. Indeed, our Spectral Decoupling method requires an assumption about feature imbalance but not to pinpoint them exactly, relying on modulated learning dynamics to achieve balance. ", + "bbox": [ + 174, + 534, + 825, + 645 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "GS social impact Modern neural networks are being deployed extensively in numerous machine learning tasks. Our models are used in critical applications such as autonomous driving, medical prediction, and even justice system where human lives are at stake. However, neural networks appear to base their predictions on superficial biases in the dataset. Unfortunately, biases in datasets could be neglected and pose negative impacts on our society. In fact, our Celeb-A experiment is an example of the existence of such a bias in the data. As shown in the paper, the gender-specific bias could lead to a superficial high performance and is indeed very hard to detect. Our analysis, although mostly on the theory side, could pave the path for researchers to build machine learning systems that are robust to biases and helps towards fairness in our predictions. ", + "bbox": [ + 174, + 669, + 825, + 794 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 811, + 299, + 829 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper, we formalized Gradient Starvation (GS) as a phenomenon that emerges when training with cross-entropy loss in neural networks. By analyzing the dynamical system corresponding to the learning process in a dual space, we showed that GS could slow down the learning of certain features, even if they are present in the training set. We derived spectral decoupling (SD) regularization as a possible remedy to GS. ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgments and Disclosure of Funding ", + "text_level": 1, + "bbox": [ + 174, + 88, + 553, + 107 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The authors are grateful to Samsung Electronics Co., Ldt., CIFAR, and IVADO for their funding and Calcul Québec and Compute Canada for providing us with the computing resources. We would further like to acknowledge the significance of discussions and supports from Reyhane Askari Hemmat and Faruk Ahmed. MP would like to thank Aristide Baratin, Kostiantyn Lapchevskyi, Seyed Mohammad Mehdi Ahmadpanah, Milad Aghajohari, Kartik Ahuja, Shagun Sodhani, and Emmanuel Bengio for their invaluable help. ", + "bbox": [ + 173, + 121, + 825, + 204 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 223, + 266, + 239 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "[1] Madhu S Advani and Andrew M Saxe. High-dimensional dynamics of generalization error in neural networks. arXiv preprint arXiv:1710.03667, 2017. \n[2] Madhu S Advani, Andrew M Saxe, and Haim Sompolinsky. High-dimensional dynamics of generalization error in neural networks. Neural Networks, 2020. \n[3] Kartik Ahuja, Karthikeyan Shanmugam, and Amit Dhurandhar. Linear regression games: Convergence guarantees to approximate out-of-distribution solutions. arXiv preprint arXiv:2010.15234, 2020. [4] Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk minimization games. arXiv preprint arXiv:2002.04692, 2020. \n[5] Naveed Akhtar and Ajmal Mian. Threat of adversarial attacks on deep learning in computer vision: A survey. IEEE Access, 6:14410–14430, 2018. \n[6] Adelin Albert and John A Anderson. On the existence of maximum likelihood estimates in logistic regression models. Biometrika, 71(1):1–10, 1984. \n[7] Zeyuan Allen-Zhu, Yuanzhi Li, and Yingyu Liang. Learning and generalization in overparameterized neural networks, going beyond two layers. In Advances in neural information processing systems, pages 6158–6169, 2019. \n[8] Zeyuan Allen-Zhu, Yuanzhi Li, and Zhao Song. A convergence theory for deep learning via over-parameterization. In International Conference on Machine Learning, pages 242–252. PMLR, 2019. \n[9] Martin Arjovsky, Léon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk minimization. arXiv preprint arXiv:1907.02893, 2019. \n[10] Sanjeev Arora, Nadav Cohen, Wei Hu, and Yuping Luo. Implicit regularization in deep matrix factorization. In Advances in Neural Information Processing Systems, pages 7413–7424, 2019. \n[11] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages 8141–8150, 2019. \n[12] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, and Ruosong Wang. Fine-grained analysis of optimization and generalization for overparameterized two-layer neural networks. arXiv preprint arXiv:1901.08584, 2019. \n[13] Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A closer look at memorization in deep networks. arXiv preprint arXiv:1706.05394, 2017. \n[14] Nicholas Baker, Hongjing Lu, Gennady Erlikhman, and Philip J Kellman. Deep convolutional networks do not classify based on global object shape. PLoS computational biology, 14(12):e1006613, 2018. \n[15] Aristide Baratin, Thomas George, César Laurent, R Devon Hjelm, Guillaume Lajoie, Pascal Vincent, and Simon Lacoste-Julien. Implicit regularization in deep learning: A view from function space. arXiv preprint arXiv:2008.00938, 2020. \n[16] Sara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. In Proceedings of the European Conference on Computer Vision (ECCV), pages 456–473, 2018. \n[17] Yonatan Belinkov and Yonatan Bisk. Synthetic and natural noise both break neural machine translation. arXiv preprint arXiv:1711.02173, 2017. \n[18] Alberto Bietti and Julien Mairal. On the inductive bias of neural tangent kernels. In Advances in Neural Information Processing Systems, pages 12893–12904, 2019. \n[19] Wieland Brendel and Matthias Bethge. Approximating cnns with bag-of-local-features models works surprisingly well on imagenet. arXiv preprint arXiv:1904.00760, 2019. \n[20] Alon Brutzkus, Amir Globerson, Eran Malach, and Shai Shalev-Shwartz. Sgd learns overparameterized networks that provably generalize on linearly separable data. arXiv preprint arXiv:1710.10174, 2017. \n[21] Christopher JC Burges and David J Crisp. Uniqueness of the svm solution. Advances in neural information processing systems, 12:223–229, 2000. \n[22] Yuan Cao, Zhiying Fang, Yue Wu, Ding-Xuan Zhou, and Quanquan Gu. Towards understanding the spectral bias of deep learning. arXiv preprint arXiv:1912.01198, 2019. \n[23] Yuan Cao and Quanquan Gu. Generalization bounds of stochastic gradient descent for wide and deep neural networks. In Advances in Neural Information Processing Systems, pages 10836–10846, 2019. \n[24] Zixiang Chen, Yuan Cao, Quanquan Gu, and Tong Zhang. A generalized neural tangent kernel analysis for two-layer neural networks. arXiv preprint arXiv:2002.04026, 2020. \n[25] Lenaic Chizat and Francis Bach. A note on lazy training in supervised differentiable programming. arXiv preprint arXiv:1812.07956, 1, 2018. \n[26] Remi Tachet des Combes, Mohammad Pezeshki, Samira Shabanian, Aaron Courville, and Yoshua Bengio. On the learning dynamics of deep neural networks. arXiv preprint arXiv:1809.06848, 2018. \n[27] Thomas M Cover. Geometrical and statistical properties of systems of linear inequalities with applications in pattern recognition. IEEE transactions on electronic computers, 0(3):326–334, 1965. \n[28] Simon S Du, Wei Hu, and Jason D Lee. Algorithmic regularization in learning deep homogeneous models: Layers are automatically balanced. In Advances in Neural Information Processing Systems, pages 384–395, 2018. \n[29] Simon S Du, Xiyu Zhai, Barnabas Poczos, and Aarti Singh. Gradient descent provably optimizes over-parameterized neural networks. arXiv preprint arXiv:1810.02054, 2018. \n[30] Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. arXiv preprint arXiv:2004.07780, 2020. \n[31] Thomas George. Nngeometry: Easy and fast fisher information matrices and neural tangent kernels in pytorch. 0, 2020. \n[32] Gauthier Gidel, Francis Bach, and Simon Lacoste-Julien. Implicit regularization of discrete gradient dynamics in linear neural networks. In Advances in Neural Information Processing Systems, pages 3202–3211, 2019. \n[33] Sebastian Goldt, Madhu Advani, Andrew M Saxe, Florent Krzakala, and Lenka Zdeborová. Dynamics of stochastic gradient descent for two-layer neural networks in the teacher-student setup. In Advances in Neural Information Processing Systems, pages 6981–6991, 2019. \n[34] Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. arXiv preprint arXiv:1412.6572, 2014. \n[35] Suriya Gunasekar, Jason D Lee, Daniel Soudry, and Nati Srebro. Implicit bias of gradient descent on linear convolutional networks. In Advances in Neural Information Processing Systems, pages 9461–9471, 2018. \n[36] Suriya Gunasekar, Blake E Woodworth, Srinadh Bhojanapalli, Behnam Neyshabur, and Nati Srebro. Implicit regularization in matrix factorization. In Advances in Neural Information Processing Systems, pages 6151–6159, 2017. \n[37] Suchin Gururangan, Swabha Swayamdipta, Omer Levy, Roy Schwartz, Samuel R Bowman, and Noah A Smith. Annotation artifacts in natural language inference data. arXiv preprint arXiv:1803.02324, 2018. \n[38] 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, pages 770–778, 2016. \n[39] Christina Heinze-Deml and Nicolai Meinshausen. Conditional variance penalties and domain shift robustness. arXiv preprint arXiv:1710.11469, 2017. \n[40] Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common corruptions and perturbations. arXiv preprint arXiv:1903.12261, 2019. \n[41] Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-ofdistribution examples in neural networks. arXiv preprint arXiv:1610.02136, 2016. \n[42] Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020. \n[43] Cho-Jui Hsieh, Kai-Wei Chang, Chih-Jen Lin, S Sathiya Keerthi, and Sellamanickam Sundararajan. A dual coordinate descent method for large-scale linear svm. In Proceedings of the 25th international conference on Machine learning, pages 408–415, 2008. \n[44] Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. arXiv preprint arXiv:1909.08156, 2019. \n[45] Kaixuan Huang, Yuqing Wang, Molei Tao, and Tuo Zhao. Why do deep residual networks generalize better than deep feedforward networks?—a neural tangent kernel perspective. Advances in Neural Information Processing Systems, 33, 2020. \n[46] Like Hui and Mikhail Belkin. Evaluation of neural architectures trained with square loss vs cross-entropy in classification tasks. arXiv preprint arXiv:2006.07322, 2020. \n[47] Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks with limited queries and information. arXiv preprint arXiv:1804.08598, 2018. \n[48] Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry. Adversarial examples are not bugs, they are features. In Advances in Neural Information Processing Systems, pages 125–136, 2019. \n[49] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. \n[50] Tommi S Jaakkola and David Haussler. Probabilistic kernel regression models. In AISTATS, 1999. \n[51] Jörn-Henrik Jacobsen, Jens Behrmann, Richard Zemel, and Matthias Bethge. Excessive invariance causes adversarial vulnerability. arXiv preprint arXiv:1811.00401, 2018. \n[52] Arthur Jacot, Franck Gabriel, and Clément Hongler. Neural tangent kernel: Convergence and generalization in neural networks. In Advances in neural information processing systems, pages 8571–8580, 2018. \n[53] Ziwei Ji and Matus Telgarsky. The implicit bias of gradient descent on nonseparable data. In Conference on Learning Theory, pages 1772–1798, 2019. \n[54] Jason Jo and Yoshua Bengio. Measuring the tendency of cnns to learn surface statistical regularities. arXiv preprint arXiv:1711.11561, 2017. \n[55] Alexia Jolicoeur-Martineau and Ioannis Mitliagkas. Connections between support vector machines, wasserstein distance and gradient-penalty gans. arXiv preprint arXiv:1910.06922, 2019. \n[56] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. \n[57] Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 0, 2009. \n[58] Anders Krogh and John A Hertz. A simple weight decay can improve generalization. In Advances in neural information processing systems, pages 950–957, 1992. \n[59] David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (rex). arXiv preprint arXiv:2003.00688, 2020. \n[60] Andrew K Lampinen and Surya Ganguli. An analytic theory of generalization dynamics and transfer learning in deep linear networks. arXiv preprint arXiv:1809.10374, 2018. \n[61] Sebastian Lapuschkin, Stephan Wäldchen, Alexander Binder, Grégoire Montavon, Wojciech Samek, and Klaus-Robert Müller. Unmasking clever hans predictors and assessing what machines really learn. Nature communications, 10(1):1–8, 2019. \n[62] Jaehoon Lee, Lechao Xiao, Samuel Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in neural information processing systems, pages 8570–8581, 2019. \n[63] Kimin Lee, Kibok Lee, Honglak Lee, and Jinwoo Shin. A simple unified framework for detecting out-of-distribution samples and adversarial attacks. In Advances in Neural Information Processing Systems, pages 7167–7177, 2018. \n[64] Shiyu Liang, Yixuan Li, and Rayadurgam Srikant. Enhancing the reliability of out-ofdistribution image detection in neural networks. arXiv preprint arXiv:1706.02690, 2017. \n[65] 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), December 2015. \n[66] Cong Ma, Kaizheng Wang, Yuejie Chi, and Yuxin Chen. Implicit regularization in nonconvex statistical estimation: Gradient descent converges linearly for phase retrieval and matrix completion. In International Conference on Machine Learning, pages 3345–3354. PMLR, 2018. \n[67] Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. arXiv preprint arXiv:1706.06083, 2017. \n[68] R Thomas McCoy, Ellie Pavlick, and Tal Linzen. Right for the wrong reasons: Diagnosing syntactic heuristics in natural language inference. arXiv preprint arXiv:1902.01007, 2019. \n[69] Song Mei and Andrea Montanari. The generalization error of random features regression: Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019. \n[70] Preetum Nakkiran, Gal Kaplun, Dimitris Kalimeris, Tristan Yang, Benjamin L Edelman, Fred Zhang, and Boaz Barak. Sgd on neural networks learns functions of increasing complexity. arXiv preprint arXiv:1905.11604, 2019. \n[71] Junhyun Nam, Hyuntak Cha, Sungsoo Ahn, Jaeho Lee, and Jinwoo Shin. Learning from failure: Training debiased classifier from biased classifier. arXiv preprint arXiv:2007.02561, 2020. \n[72] Kamil Nar, Orhan Ocal, S Shankar Sastry, and Kannan Ramchandran. Cross-entropy loss and low-rank features have responsibility for adversarial examples. arXiv preprint arXiv:1901.08360, 2019. \n[73] Kamil Nar and S Shankar Sastry. Persistency of excitation for robustness of neural networks. arXiv preprint arXiv:1911.01043, 2019. \n[74] Behnam Neyshabur, Ryota Tomioka, Ruslan Salakhutdinov, and Nathan Srebro. Geometry of optimization and implicit regularization in deep learning. arXiv preprint arXiv:1705.03071, 2017. \n[75] Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. In search of the real inductive bias: On the role of implicit regularization in deep learning. arXiv preprint arXiv:1412.6614, 2014. \n[76] Timothy Niven and Hung-Yu Kao. Probing neural network comprehension of natural language arguments. arXiv preprint arXiv:1907.07355, 2019. \n[77] Luke Oakden-Rayner, Jared Dunnmon, Gustavo Carneiro, and Christopher Ré. Hidden stratification causes clinically meaningful failures in machine learning for medical imaging. In Proceedings of the ACM Conference on Health, Inference, and Learning, pages 151–159, 2020. \n[78] Samet Oymak, Zalan Fabian, Mingchen Li, and Mahdi Soltanolkotabi. Generalization guarantees for neural networks via harnessing the low-rank structure of the jacobian. arXiv preprint arXiv:1906.05392, 2019. \n[79] Giambattista Parascandolo, Alexander Neitz, Antonio Orvieto, Luigi Gresele, and Bernhard Schölkopf. Learning explanations that are hard to vary. arXiv preprint arXiv:2009.00329, 2020. \n[80] 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. openreview id=BJJsrmfCZ, 2017. \n[81] Oskar Pfungst. Clever Hans:(the horse of Mr. Von Osten.) a contribution to experimental animal and human psychology. Holt, Rinehart and Winston, 1911. \n[82] Tomaso Poggio, Kenji Kawaguchi, Qianli Liao, Brando Miranda, Lorenzo Rosasco, Xavier Boix, Jack Hidary, and Hrushikesh Mhaskar. Theory of deep learning iii: explaining the non-overfitting puzzle. arXiv preprint arXiv:1801.00173, 2017. \n[83] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht, Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International Conference on Machine Learning, pages 5301–5310. PMLR, 2019. \n[84] Jonas Rauber, Wieland Brendel, and Matthias Bethge. Foolbox: A python toolbox to benchmark the robustness of machine learning models. arXiv preprint arXiv:1707.04131, 2017. \n[85] 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, pages 1135–1144, 2016. \n[86] Michael Roberts. Machine learning for covid-19 diagnosis: Promising, but still too flawed, Mar 2021. \n[87] Basri Ronen, David Jacobs, Yoni Kasten, and Shira Kritchman. The convergence rate of neural networks for learned functions of different frequencies. In Advances in Neural Information Processing Systems, pages 4761–4771, 2019. \n[88] Amir Rosenfeld, Richard Zemel, and John K Tsotsos. The elephant in the room. arXiv preprint arXiv:1808.03305, 2018. \n[89] Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally robust neural networks for group shifts: On the importance of regularization for worst-case generalization. arXiv preprint arXiv:1911.08731, 2019. ", + "bbox": [ + 179, + 246, + 828, + 914 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 58, + 828, + 916 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "", + "bbox": [ + 179, + 49, + 828, + 919 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 178, + 53, + 828, + 911 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "", + "bbox": [ + 178, + 55, + 828, + 911 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "[90] Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013. ", + "bbox": [ + 178, + 90, + 825, + 121 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[91] Andrew M Saxe, James L McClelland, and Surya Ganguli. A mathematical theory of semantic development in deep neural networks. Proceedings of the National Academy of Sciences, 116(23):11537–11546, 2019. ", + "bbox": [ + 181, + 130, + 823, + 172 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[92] Harshay Shah, Kaustav Tamuly, Aditi Raghunathan, Prateek Jain, and Praneeth Netrapalli. The pitfalls of simplicity bias in neural networks. arXiv preprint arXiv:2006.07710, 2020. ", + "bbox": [ + 179, + 183, + 820, + 213 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[93] Shai Shalev-Shwartz and Shai Ben-David. Understanding machine learning: From theory to algorithms. Cambridge university press, 2014. ", + "bbox": [ + 181, + 222, + 823, + 252 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[94] Daniel Soudry, Elad Hoffer, Mor Shpigel Nacson, Suriya Gunasekar, and Nathan Srebro. The implicit bias of gradient descent on separable data. The Journal of Machine Learning Research, 19(1):2822–2878, 2018. ", + "bbox": [ + 181, + 261, + 825, + 304 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[95] Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research, 15(1):1929–1958, 2014. ", + "bbox": [ + 179, + 314, + 823, + 358 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[96] Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013. ", + "bbox": [ + 181, + 367, + 823, + 411 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[97] Guillermo Valle-Pérez, Chico Q Camargo, and Ard A Louis. Deep learning generalizes because the parameter-function map is biased towards simple functions. arXiv preprint arXiv:1805.08522, 2018. ", + "bbox": [ + 179, + 420, + 823, + 463 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[98] Vladimir Vapnik and Vlamimir Vapnik. Statistical learning theory wiley. New York, 1:624, 1998. ", + "bbox": [ + 179, + 473, + 825, + 503 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[99] Santosh Vempala and John Wilmes. Gradient descent for one-hidden-layer neural networks: Polynomial convergence and sq lower bounds. In Conference on Learning Theory, pages 3115–3117, 2019. ", + "bbox": [ + 179, + 513, + 823, + 556 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[100] Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations by projecting superficial statistics out. arXiv preprint arXiv:1903.06256, 2019. ", + "bbox": [ + 173, + 565, + 823, + 595 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[101] Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why pinns fail to train: A neural tangent kernel perspective. Journal of Computational Physics, page 110768, 2021. ", + "bbox": [ + 176, + 604, + 821, + 636 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[102] David H Wolpert. The lack of a priori distinctions between learning algorithms. Neural computation, 8(7):1341–1390, 1996. ", + "bbox": [ + 174, + 645, + 823, + 674 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[103] Xin Xu and Eibe Frank. Logistic regression and boosting for labeled bags of instances. In Pacific-Asia conference on knowledge discovery and data mining, pages 272–281. Springer, 2004. ", + "bbox": [ + 174, + 684, + 825, + 727 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[104] Zhi-Qin John Xu, Yaoyu Zhang, Tao Luo, Yanyang Xiao, and Zheng Ma. Frequency principle: Fourier analysis sheds light on deep neural networks. arXiv preprint arXiv:1901.06523, 2019. ", + "bbox": [ + 173, + 737, + 825, + 767 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[105] Zhi-Qin John Xu, Yaoyu Zhang, and Yanyang Xiao. Training behavior of deep neural network in frequency domain. In International Conference on Neural Information Processing, pages 264–274. Springer, 2019. ", + "bbox": [ + 173, + 776, + 823, + 819 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[106] Greg Yang and Hadi Salman. A fine-grained spectral perspective on neural networks. arXiv preprint arXiv:1907.10599, 2019. ", + "bbox": [ + 169, + 829, + 825, + 858 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[107] John R Zech, Marcus A Badgeley, Manway Liu, Anthony B Costa, Joseph J Titano, and Eric K Oermann. Confounding variables can degrade generalization performance of radiological deep learning models. arXiv preprint arXiv:1807.00431, 2018. ", + "bbox": [ + 174, + 869, + 826, + 912 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "[108] Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Understanding deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530, 2016. ", + "bbox": [ + 171, + 90, + 825, + 132 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "[109] Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, and Kai-Wei Chang. Men also like shopping: Reducing gender bias amplification using corpus-level constraints. arXiv preprint arXiv:1707.09457, 2017. ", + "bbox": [ + 173, + 142, + 823, + 184 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "[110] Difan Zou, Yuan Cao, Dongruo Zhou, and Quanquan Gu. Gradient descent optimizes overparameterized deep relu networks. Machine Learning, 109(3):467–492, 2020. ", + "bbox": [ + 173, + 194, + 823, + 222 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/aExAsh1UHZo/aExAsh1UHZo_middle.json b/parse/train/aExAsh1UHZo/aExAsh1UHZo_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..f1806bbbb64d8182ee7d130c250e7b13229839b4 --- /dev/null +++ b/parse/train/aExAsh1UHZo/aExAsh1UHZo_middle.json @@ -0,0 +1,44841 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 149, + 97, + 461, + 138 + ], + "lines": [ + { + "bbox": [ + 227, + 96, + 387, + 117 + ], + "spans": [ + { + "bbox": [ + 227, + 96, + 387, + 117 + ], + "score": 1.0, + "content": "Gradient Starvation:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 147, + 115, + 462, + 139 + ], + "spans": [ + { + "bbox": [ + 147, + 115, + 462, + 139 + ], + "score": 1.0, + "content": "A Learning Proclivity in Neural Networks", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 143, + 177, + 468, + 238 + ], + "lines": [ + { + "bbox": [ + 155, + 179, + 456, + 191 + ], + "spans": [ + { + "bbox": [ + 155, + 179, + 261, + 190 + ], + "score": 1.0, + "content": "Mohammad Pezeshki1,2", + "type": "text" + }, + { + "bbox": [ + 269, + 179, + 370, + 191 + ], + "score": 1.0, + "content": "Sékou-Oumar Kaba1,3", + "type": "text" + }, + { + "bbox": [ + 378, + 179, + 456, + 191 + ], + "score": 1.0, + "content": "Yoshua Bengio1,2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 159, + 193, + 461, + 206 + ], + "spans": [ + { + "bbox": [ + 159, + 194, + 243, + 205 + ], + "score": 1.0, + "content": "Aaron Courville1,2", + "type": "text" + }, + { + "bbox": [ + 274, + 193, + 355, + 206 + ], + "score": 1.0, + "content": "Doina Precup1,3,4", + "type": "text" + }, + { + "bbox": [ + 372, + 193, + 461, + 206 + ], + "score": 1.0, + "content": "Guillaume Lajoie1,2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 147, + 209, + 464, + 225 + ], + "spans": [ + { + "bbox": [ + 147, + 209, + 464, + 225 + ], + "score": 1.0, + "content": "1Mila 2Université de Montréal 3McGill University 4Google DeepMind", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 226, + 468, + 239 + ], + "spans": [ + { + "bbox": [ + 142, + 226, + 468, + 239 + ], + "score": 1.0, + "content": "corresponding authors:{pezeshki, guillaume.lajoie}@mila.quebec", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 283, + 265, + 328, + 279 + ], + "lines": [ + { + "bbox": [ + 281, + 265, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 281, + 265, + 330, + 279 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 291, + 469, + 433 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 304 + ], + "score": 1.0, + "content": "We identify and formalize a fundamental gradient descent phenomenon leading to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "score": 1.0, + "content": "a learning proclivity in over-parameterized neural networks. Gradient Starvation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "arises when cross-entropy loss is minimized by capturing only a subset of features", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "relevant for the task, despite the presence of other predictive features that fail to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "score": 1.0, + "content": "be discovered. This work provides a theoretical explanation for the emergence of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "score": 1.0, + "content": "such feature imbalances in neural networks. Using tools from Dynamical Systems", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "score": 1.0, + "content": "theory, we identify simple properties of learning dynamics during gradient descent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 367, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 470, + 380 + ], + "score": 1.0, + "content": "that lead to this imbalance, and prove that such a situation can be expected given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "score": 1.0, + "content": "certain statistical structure in training data. Based on our proposed formalism,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "score": 1.0, + "content": "we develop guarantees for a novel but simple regularization method aimed at", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 400, + 469, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 469, + 412 + ], + "score": 1.0, + "content": "decoupling feature learning dynamics, improving accuracy and robustness in cases", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "score": 1.0, + "content": "hindered by gradient starvation. We illustrate our findings with simple and real-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 422, + 387, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 422, + 387, + 435 + ], + "score": 1.0, + "content": "world out-of-distribution (OOD) generalization experiments.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 190, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 192, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 192, + 469 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "In 1904, a horse named Hans attracted worldwide attention due to the belief that it was capable of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "doing arithmetic calculations [81]. Its trainer would ask Hans a question, and Hans would reply", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "by tapping on the ground with its hoof. However, it was later revealed that the horse was only", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "noticing subtle but distinctive signals in its trainer’s unconscious behavior, unbeknown to him, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "not actually performing arithmetic. An analogous phenomenon has been noticed when training neural", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 533, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 545 + ], + "score": 1.0, + "content": "networks [e.g. 85, 109, 54, 39, 17, 14, 37, 51, 107, 76, 48, 19, 61, 77]. In many cases, state-of-the-art", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 555 + ], + "score": 1.0, + "content": "neural networks appear to focus on low-level superficial correlations, rather than more abstract and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 348, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 348, + 567 + ], + "score": 1.0, + "content": "robustly informative features of interest [16, 88, 40, 68, 30].", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "The rationale behind this phenomenon is well known by practitioners: given strongly-correlated and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "fast-to-learn features in training data, gradient descent is biased towards learning them first. However,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "the precise conditions leading to such learning dynamics, and how one might intervene to control", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "this feature imbalance are not entirely understood. Recent work aims at identifying the reasons", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "behind this phenomenon [97, 70, 22, 73, 51, 76, 100, 92, 83, 105, 42, 79, 4], while complementary", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "work quantifies resulting shortcomings, including poor generalization to out-of-distribution (OOD)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "test data, reliance upon spurious correlations, and lack of robustness [30, 68, 77, 41, 63, 64, 9].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "However most established work focuses on squared-error loss and its particularities, where results", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "do not readily generalize to other objective forms. This is especially problematic since for several", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 668, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 684 + ], + "score": 1.0, + "content": "classification applications, cross-entropy is the loss function of choice, yielding very distinct learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "dynamics. In this paper, we argue that Gradient Starvation, first coined in [26], is a leading cause for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "this feature imbalance in neural networks trained with cross-entropy, and propose a simple approach", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 703, + 162, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 162, + 715 + ], + "score": 1.0, + "content": "to mitigate it.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 35 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 744 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 149, + 97, + 461, + 138 + ], + "lines": [ + { + "bbox": [ + 227, + 96, + 387, + 117 + ], + "spans": [ + { + "bbox": [ + 227, + 96, + 387, + 117 + ], + "score": 1.0, + "content": "Gradient Starvation:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 147, + 115, + 462, + 139 + ], + "spans": [ + { + "bbox": [ + 147, + 115, + 462, + 139 + ], + "score": 1.0, + "content": "A Learning Proclivity in Neural Networks", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 143, + 177, + 468, + 238 + ], + "lines": [ + { + "bbox": [ + 155, + 179, + 456, + 191 + ], + "spans": [ + { + "bbox": [ + 155, + 179, + 261, + 190 + ], + "score": 1.0, + "content": "Mohammad Pezeshki1,2", + "type": "text" + }, + { + "bbox": [ + 269, + 179, + 370, + 191 + ], + "score": 1.0, + "content": "Sékou-Oumar Kaba1,3", + "type": "text" + }, + { + "bbox": [ + 378, + 179, + 456, + 191 + ], + "score": 1.0, + "content": "Yoshua Bengio1,2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 159, + 193, + 461, + 206 + ], + "spans": [ + { + "bbox": [ + 159, + 194, + 243, + 205 + ], + "score": 1.0, + "content": "Aaron Courville1,2", + "type": "text" + }, + { + "bbox": [ + 274, + 193, + 355, + 206 + ], + "score": 1.0, + "content": "Doina Precup1,3,4", + "type": "text" + }, + { + "bbox": [ + 372, + 193, + 461, + 206 + ], + "score": 1.0, + "content": "Guillaume Lajoie1,2", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 147, + 209, + 464, + 225 + ], + "spans": [ + { + "bbox": [ + 147, + 209, + 464, + 225 + ], + "score": 1.0, + "content": "1Mila 2Université de Montréal 3McGill University 4Google DeepMind", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 226, + 468, + 239 + ], + "spans": [ + { + "bbox": [ + 142, + 226, + 468, + 239 + ], + "score": 1.0, + "content": "corresponding authors:{pezeshki, guillaume.lajoie}@mila.quebec", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 142, + 179, + 468, + 239 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 265, + 328, + 279 + ], + "lines": [ + { + "bbox": [ + 281, + 265, + 330, + 279 + ], + "spans": [ + { + "bbox": [ + 281, + 265, + 330, + 279 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 291, + 469, + 433 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 304 + ], + "score": 1.0, + "content": "We identify and formalize a fundamental gradient descent phenomenon leading to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 314 + ], + "score": 1.0, + "content": "a learning proclivity in over-parameterized neural networks. Gradient Starvation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 142, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "arises when cross-entropy loss is minimized by capturing only a subset of features", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 469, + 335 + ], + "score": 1.0, + "content": "relevant for the task, despite the presence of other predictive features that fail to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 469, + 347 + ], + "score": 1.0, + "content": "be discovered. This work provides a theoretical explanation for the emergence of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 346, + 469, + 358 + ], + "score": 1.0, + "content": "such feature imbalances in neural networks. Using tools from Dynamical Systems", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "score": 1.0, + "content": "theory, we identify simple properties of learning dynamics during gradient descent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 367, + 470, + 380 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 470, + 380 + ], + "score": 1.0, + "content": "that lead to this imbalance, and prove that such a situation can be expected given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 390 + ], + "score": 1.0, + "content": "certain statistical structure in training data. Based on our proposed formalism,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "score": 1.0, + "content": "we develop guarantees for a novel but simple regularization method aimed at", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 400, + 469, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 469, + 412 + ], + "score": 1.0, + "content": "decoupling feature learning dynamics, improving accuracy and robustness in cases", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 423 + ], + "score": 1.0, + "content": "hindered by gradient starvation. We illustrate our findings with simple and real-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 422, + 387, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 422, + 387, + 435 + ], + "score": 1.0, + "content": "world out-of-distribution (OOD) generalization experiments.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 13, + "bbox_fs": [ + 141, + 290, + 470, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 453, + 190, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 192, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 192, + 469 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "In 1904, a horse named Hans attracted worldwide attention due to the belief that it was capable of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "doing arithmetic calculations [81]. Its trainer would ask Hans a question, and Hans would reply", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "by tapping on the ground with its hoof. However, it was later revealed that the horse was only", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "noticing subtle but distinctive signals in its trainer’s unconscious behavior, unbeknown to him, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "not actually performing arithmetic. An analogous phenomenon has been noticed when training neural", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 533, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 545 + ], + "score": 1.0, + "content": "networks [e.g. 85, 109, 54, 39, 17, 14, 37, 51, 107, 76, 48, 19, 61, 77]. In many cases, state-of-the-art", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 545, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 555 + ], + "score": 1.0, + "content": "neural networks appear to focus on low-level superficial correlations, rather than more abstract and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 348, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 348, + 567 + ], + "score": 1.0, + "content": "robustly informative features of interest [16, 88, 40, 68, 30].", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 478, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "The rationale behind this phenomenon is well known by practitioners: given strongly-correlated and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "fast-to-learn features in training data, gradient descent is biased towards learning them first. However,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "the precise conditions leading to such learning dynamics, and how one might intervene to control", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "this feature imbalance are not entirely understood. Recent work aims at identifying the reasons", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 628 + ], + "score": 1.0, + "content": "behind this phenomenon [97, 70, 22, 73, 51, 76, 100, 92, 83, 105, 42, 79, 4], while complementary", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "work quantifies resulting shortcomings, including poor generalization to out-of-distribution (OOD)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "test data, reliance upon spurious correlations, and lack of robustness [30, 68, 77, 41, 63, 64, 9].", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 660 + ], + "score": 1.0, + "content": "However most established work focuses on squared-error loss and its particularities, where results", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 506, + 672 + ], + "score": 1.0, + "content": "do not readily generalize to other objective forms. This is especially problematic since for several", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 668, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 684 + ], + "score": 1.0, + "content": "classification applications, cross-entropy is the loss function of choice, yielding very distinct learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "dynamics. In this paper, we argue that Gradient Starvation, first coined in [26], is a leading cause for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "this feature imbalance in neural networks trained with cross-entropy, and propose a simple approach", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 703, + 162, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 162, + 715 + ], + "score": 1.0, + "content": "to mitigate it.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 570, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 73, + 497, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 73, + 497, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 73, + 497, + 176 + ], + "spans": [ + { + "bbox": [ + 113, + 73, + 497, + 176 + ], + "score": 0.974, + "type": "image", + "image_path": "9f945eaedc28dc850b70ed0f5a00c0d50de39ab2ea581ed85082d9da4e26613b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 73, + 497, + 107.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 107.33333333333334, + 497, + 141.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 141.66666666666669, + 497, + 176.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 182, + 505, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "Figure 1: Diagram illustrating the effect of gradient starvation in a simple 2-D classification task. (a) Data is not", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 193, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 505, + 204 + ], + "score": 1.0, + "content": "linearly separable and the learned decision boundary is curved. (b) Data is linearly separable by a small margin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 109, + 213 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 109, + 202, + 142, + 212 + ], + "score": 0.86, + "content": "\\Delta = \\mathrm { 0 . 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 201, + 506, + 213 + ], + "score": 1.0, + "content": "). This small margin allows the network to discriminate confidently only along the horizontal axis and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "score": 1.0, + "content": "ignore the vertical axis. (c) Data is linearly separable as in (b). However, with the proposed Spectral decoupling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 223, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 506, + 234 + ], + "score": 1.0, + "content": "(SD), a curved decision boundary with a large margin is learned. (d) Diagram shows the evolution of two of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 231, + 504, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 504, + 243 + ], + "score": 1.0, + "content": "features (Eq. 4) of the dynamics in three cases shown as dotted, dashed and solid lines. Analysis: (dotted) vs", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 243, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 339, + 253 + ], + "score": 1.0, + "content": "(dashed): Linear separability of the data results in an increase in", + "type": "text" + }, + { + "bbox": [ + 340, + 243, + 349, + 252 + ], + "score": 0.85, + "content": "z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 243, + 459, + 253 + ], + "score": 1.0, + "content": "and a decrease (starvation) of", + "type": "text" + }, + { + "bbox": [ + 459, + 243, + 468, + 252 + ], + "score": 0.82, + "content": "z _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 243, + 506, + 253 + ], + "score": 1.0, + "content": ". (dashed)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 253, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 197, + 263 + ], + "score": 1.0, + "content": "vs (solid): SD suppresses", + "type": "text" + }, + { + "bbox": [ + 198, + 254, + 207, + 262 + ], + "score": 0.83, + "content": "z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 253, + 271, + 263 + ], + "score": 1.0, + "content": "and hence allows", + "type": "text" + }, + { + "bbox": [ + 271, + 254, + 280, + 262 + ], + "score": 0.82, + "content": "z _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 253, + 505, + 263 + ], + "score": 1.0, + "content": "to grow. Decision boundaries are averaged over ten runs. More", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 376, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 376, + 274 + ], + "score": 1.0, + "content": "experiments with common regularization methods are provided in App. B.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 108, + 291, + 261, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 262, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 262, + 303 + ], + "score": 1.0, + "content": "Here we summarize our contributions:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 132, + 304, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 133, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 133, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "We provide a theoretical framework to study the learning dynamics of linearized neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 314, + 370, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 370, + 327 + ], + "score": 1.0, + "content": "networks trained with cross-entropy loss in a dual space.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 138, + 325, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 138, + 325, + 505, + 340 + ], + "score": 1.0, + "content": "Using perturbation analysis, we formalize Gradient Starvation (GS) in view of the coupling", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 338, + 452, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 452, + 349 + ], + "score": 1.0, + "content": "between the dynamics of orthogonal directions in the feature space (Thm. 2).", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 137, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 137, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "We leverage our theory to introduce Spectral Decoupling (SD) (Eq. 17) and prove this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 360, + 429, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 429, + 374 + ], + "score": 1.0, + "content": "simple regularizer helps to decouple learning dynamics, mitigating GS.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 137, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 137, + 373, + 506, + 386 + ], + "score": 1.0, + "content": "We support our findings with extensive empirical results on a variety of classification and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 383, + 507, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 507, + 398 + ], + "score": 1.0, + "content": "adversarial attack tasks. All code and experiment details available at GitHub repository.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "In the rest of the paper, we first present a simple example to outline the consequences of GS. We then", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "score": 1.0, + "content": "present our theoretical results before outlining a number of numerical experiments. We close with a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 425, + 303, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 303, + 438 + ], + "score": 1.0, + "content": "review of related work followed by a discussion.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 327, + 465 + ], + "lines": [ + { + "bbox": [ + 104, + 449, + 328, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 449, + 328, + 469 + ], + "score": 1.0, + "content": "2 Gradient Starvation: A simple example", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "Consider a 2-D classification task with a training set consisting of two classes, as shown in Figure", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "1. A two-layer ReLU network with 500 hidden units is trained with cross-entropy loss for two", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "different arrangements of the training points. The difference between the two arrangements is that,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 510, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 521 + ], + "score": 1.0, + "content": "in one setting, the data is not linearly separable, but a slight shift makes it linearly separable in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "other setting. This small shift allows the network to achieve a negligible loss by only learning to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "discriminate along the horizontal axis, ignoring the other. This contrasts with the other case, where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "both features contribute to the learned classification boundary, which arguably matches the data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "structure better. We observe that training longer or using different regularizers, including weight", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "decay [58], dropout [95], batch normalization [49], as well as changing the optimization algorithm", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "to Adam [56] or changing the network architecture or the coordinate system, do not encourage the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 585, + 412, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 412, + 598 + ], + "score": 1.0, + "content": "network to learn a curved decision boundary. (See App. B for more details.)", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "We argue that this occurs because cross-entropy loss leads to gradients “starved” of information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "from vertical features. Simply put, when one feature is learned faster than the others, the gradient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "contribution of examples containing that feature is diminished (i.e., they are correctly processed based", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 633, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 648 + ], + "score": 1.0, + "content": "on that feature alone). This results in a lack of sufficient gradient signal, and hence prevents any", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "remaining features from being learned. This simple mechanism has potential consequences, which", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 656, + 179, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 179, + 668 + ], + "score": 1.0, + "content": "we outline below.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 289, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 291, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 291, + 693 + ], + "score": 1.0, + "content": "2.1 Consequences of Gradient Starvation", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Lack of robustness. In the example above, even in the right plot, the training loss is nearly zero,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 725 + ], + "score": 1.0, + "content": "and the network is very confident in its predictions. However, the decision boundary is located very", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 113, + 73, + 497, + 176 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 113, + 73, + 497, + 176 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 113, + 73, + 497, + 176 + ], + "spans": [ + { + "bbox": [ + 113, + 73, + 497, + 176 + ], + "score": 0.974, + "type": "image", + "image_path": "9f945eaedc28dc850b70ed0f5a00c0d50de39ab2ea581ed85082d9da4e26613b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 113, + 73, + 497, + 107.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 113, + 107.33333333333334, + 497, + 141.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 113, + 141.66666666666669, + 497, + 176.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 182, + 505, + 272 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 194 + ], + "score": 1.0, + "content": "Figure 1: Diagram illustrating the effect of gradient starvation in a simple 2-D classification task. (a) Data is not", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 193, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 505, + 204 + ], + "score": 1.0, + "content": "linearly separable and the learned decision boundary is curved. (b) Data is linearly separable by a small margin", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 201, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 109, + 213 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 109, + 202, + 142, + 212 + ], + "score": 0.86, + "content": "\\Delta = \\mathrm { 0 . 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 201, + 506, + 213 + ], + "score": 1.0, + "content": "). This small margin allows the network to discriminate confidently only along the horizontal axis and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 225 + ], + "score": 1.0, + "content": "ignore the vertical axis. (c) Data is linearly separable as in (b). However, with the proposed Spectral decoupling", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 223, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 506, + 234 + ], + "score": 1.0, + "content": "(SD), a curved decision boundary with a large margin is learned. (d) Diagram shows the evolution of two of the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 231, + 504, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 504, + 243 + ], + "score": 1.0, + "content": "features (Eq. 4) of the dynamics in three cases shown as dotted, dashed and solid lines. Analysis: (dotted) vs", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 243, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 339, + 253 + ], + "score": 1.0, + "content": "(dashed): Linear separability of the data results in an increase in", + "type": "text" + }, + { + "bbox": [ + 340, + 243, + 349, + 252 + ], + "score": 0.85, + "content": "z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 243, + 459, + 253 + ], + "score": 1.0, + "content": "and a decrease (starvation) of", + "type": "text" + }, + { + "bbox": [ + 459, + 243, + 468, + 252 + ], + "score": 0.82, + "content": "z _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 243, + 506, + 253 + ], + "score": 1.0, + "content": ". (dashed)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 253, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 197, + 263 + ], + "score": 1.0, + "content": "vs (solid): SD suppresses", + "type": "text" + }, + { + "bbox": [ + 198, + 254, + 207, + 262 + ], + "score": 0.83, + "content": "z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 253, + 271, + 263 + ], + "score": 1.0, + "content": "and hence allows", + "type": "text" + }, + { + "bbox": [ + 271, + 254, + 280, + 262 + ], + "score": 0.82, + "content": "z _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 253, + 505, + 263 + ], + "score": 1.0, + "content": "to grow. Decision boundaries are averaged over ten runs. More", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 262, + 376, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 376, + 274 + ], + "score": 1.0, + "content": "experiments with common regularization methods are provided in App. B.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "text", + "bbox": [ + 108, + 291, + 261, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 262, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 262, + 303 + ], + "score": 1.0, + "content": "Here we summarize our contributions:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 291, + 262, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 304, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 133, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 133, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "We provide a theoretical framework to study the learning dynamics of linearized neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 314, + 370, + 327 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 370, + 327 + ], + "score": 1.0, + "content": "networks trained with cross-entropy loss in a dual space.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 138, + 325, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 138, + 325, + 505, + 340 + ], + "score": 1.0, + "content": "Using perturbation analysis, we formalize Gradient Starvation (GS) in view of the coupling", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 338, + 452, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 452, + 349 + ], + "score": 1.0, + "content": "between the dynamics of orthogonal directions in the feature space (Thm. 2).", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 137, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 137, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "We leverage our theory to introduce Spectral Decoupling (SD) (Eq. 17) and prove this", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 360, + 429, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 429, + 374 + ], + "score": 1.0, + "content": "simple regularizer helps to decouple learning dynamics, mitigating GS.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 137, + 373, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 137, + 373, + 506, + 386 + ], + "score": 1.0, + "content": "We support our findings with extensive empirical results on a variety of classification and", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 383, + 507, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 383, + 507, + 398 + ], + "score": 1.0, + "content": "adversarial attack tasks. All code and experiment details available at GitHub repository.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 133, + 303, + 507, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "score": 1.0, + "content": "In the rest of the paper, we first present a simple example to outline the consequences of GS. We then", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 427 + ], + "score": 1.0, + "content": "present our theoretical results before outlining a number of numerical experiments. We close with a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 425, + 303, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 303, + 438 + ], + "score": 1.0, + "content": "review of related work followed by a discussion.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 403, + 505, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 327, + 465 + ], + "lines": [ + { + "bbox": [ + 104, + 449, + 328, + 469 + ], + "spans": [ + { + "bbox": [ + 104, + 449, + 328, + 469 + ], + "score": 1.0, + "content": "2 Gradient Starvation: A simple example", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "Consider a 2-D classification task with a training set consisting of two classes, as shown in Figure", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "1. A two-layer ReLU network with 500 hidden units is trained with cross-entropy loss for two", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "different arrangements of the training points. The difference between the two arrangements is that,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 510, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 505, + 521 + ], + "score": 1.0, + "content": "in one setting, the data is not linearly separable, but a slight shift makes it linearly separable in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "other setting. This small shift allows the network to achieve a negligible loss by only learning to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "discriminate along the horizontal axis, ignoring the other. This contrasts with the other case, where", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "both features contribute to the learned classification boundary, which arguably matches the data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "structure better. We observe that training longer or using different regularizers, including weight", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "decay [58], dropout [95], batch normalization [49], as well as changing the optimization algorithm", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "to Adam [56] or changing the network architecture or the coordinate system, do not encourage the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 585, + 412, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 412, + 598 + ], + "score": 1.0, + "content": "network to learn a curved decision boundary. (See App. B for more details.)", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 475, + 506, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "We argue that this occurs because cross-entropy loss leads to gradients “starved” of information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "from vertical features. Simply put, when one feature is learned faster than the others, the gradient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "contribution of examples containing that feature is diminished (i.e., they are correctly processed based", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 633, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 648 + ], + "score": 1.0, + "content": "on that feature alone). This results in a lack of sufficient gradient signal, and hence prevents any", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 646, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 657 + ], + "score": 1.0, + "content": "remaining features from being learned. This simple mechanism has potential consequences, which", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 656, + 179, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 179, + 668 + ], + "score": 1.0, + "content": "we outline below.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 600, + 505, + 668 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 289, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 291, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 291, + 693 + ], + "score": 1.0, + "content": "2.1 Consequences of Gradient Starvation", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "Lack of robustness. In the example above, even in the right plot, the training loss is nearly zero,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 725 + ], + "score": 1.0, + "content": "and the network is very confident in its predictions. However, the decision boundary is located very", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "score": 1.0, + "content": "close to the data points. This could lead to adversarial vulnerability as well as lack of robustness", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 289, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 289, + 95 + ], + "score": 1.0, + "content": "when generalizing to out-of-distribution data.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 700, + 505, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "score": 1.0, + "content": "close to the data points. This could lead to adversarial vulnerability as well as lack of robustness", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 289, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 289, + 95 + ], + "score": 1.0, + "content": "when generalizing to out-of-distribution data.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Excessive invariance. GS could also result in neural networks that are invariant to task-relevant", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "changes in the input. In the example above, it is possible to obtain a data point with low probability", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 120, + 434, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 434, + 133 + ], + "score": 1.0, + "content": "under the data distribution, but that would still be classified with high confidence.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "Implicit regularization. One might argue that according to Occam’s razor, a simpler decision", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 147, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 506, + 160 + ], + "score": 1.0, + "content": "boundary should generalize better. In fact, if both training and test sets share the same dominant", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 156, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 505, + 173 + ], + "score": 1.0, + "content": "feature (in this example, the feature along the horizontal axis), GS naturally prevents the learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "of less dominant features that could otherwise result in overfitting. Therefore, depending on our", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "assumptions on the training and test distributions, GS could also act as an implicit regularizer. We", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 438, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 438, + 204 + ], + "score": 1.0, + "content": "provide further discussion on the implicit regularization aspect of GS in Section 5.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 107, + 212, + 225, + 225 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 226, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 226, + 228 + ], + "score": 1.0, + "content": "3 Theoretical Results", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 506, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "In this section, we study the learning dynamics of neural networks trained with cross-entropy loss.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "Particularly, we seek to decompose the learning dynamics along orthogonal directions in the feature", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "space of neural networks, to provide a formal definition of GS, and to derive a simple regularization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "method to mitigate it. For analytical tractability, we make three key assumptions: (1) we study deep", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "networks in the Neural Tangent Kernel (NTK) regime, (2) we treat a binary classification task, (3)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 298 + ], + "score": 1.0, + "content": "we decompose the interaction between two features. In Section 4, we demonstrate our results hold", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "beyond these simplifying assumptions, for a wide range of practical settings. All derivation details", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 307, + 199, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 171, + 319 + ], + "score": 1.0, + "content": "can be found in", + "type": "text" + }, + { + "bbox": [ + 171, + 308, + 195, + 318 + ], + "score": 0.27, + "content": "\\mathbf { S M C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 307, + 199, + 319 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 106, + 326, + 346, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 346, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 346, + 339 + ], + "score": 1.0, + "content": "3.1 Problem Setup and Gradient Starvation Definition", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 339, + 123, + 354 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 340, + 178, + 352 + ], + "score": 0.92, + "content": "{ \\mathcal { D } } = \\{ { \\bf X } , { \\bf y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 339, + 314, + 354 + ], + "score": 1.0, + "content": "denote a training set containing", + "type": "text" + }, + { + "bbox": [ + 314, + 343, + 322, + 351 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 339, + 390, + 354 + ], + "score": 1.0, + "content": "datapoints with", + "type": "text" + }, + { + "bbox": [ + 390, + 341, + 397, + 351 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 339, + 482, + 354 + ], + "score": 1.0, + "content": "dimensions, where,", + "type": "text" + }, + { + "bbox": [ + 482, + 341, + 505, + 352 + ], + "score": 0.85, + "content": "\\mathbf { X } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 351, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 107, + 353, + 188, + 365 + ], + "score": 0.9, + "content": "[ \\mathbf { x } _ { 1 } , . . . , \\mathbf { x } _ { n } ] \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 351, + 324, + 366 + ], + "score": 1.0, + "content": "and their corresponding class label", + "type": "text" + }, + { + "bbox": [ + 324, + 352, + 388, + 365 + ], + "score": 0.92, + "content": "\\mathbf { y } \\in \\{ - 1 , + 1 \\} ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 351, + 425, + 366 + ], + "score": 1.0, + "content": ". Also let", + "type": "text" + }, + { + "bbox": [ + 425, + 352, + 504, + 365 + ], + "score": 0.9, + "content": "\\hat { \\mathbf { y } } ( \\mathbf { X } ) : = f ^ { ( L ) } ( \\mathbf { X } ) :", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 362, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 107, + 364, + 159, + 375 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { n \\times d } \\to \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 362, + 263, + 379 + ], + "score": 1.0, + "content": "represent the logits of an", + "type": "text" + }, + { + "bbox": [ + 263, + 365, + 271, + 375 + ], + "score": 0.29, + "content": "\\mathrm { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 362, + 506, + 379 + ], + "score": 1.0, + "content": "-layer fully-connected neural network where each hidden", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 375, + 274, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 129, + 389 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 375, + 185, + 389 + ], + "score": 0.93, + "content": "h ^ { ( l ) } ( x ) \\in \\mathbf { \\bar { \\mathbb { R } } } ^ { d _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 375, + 274, + 389 + ], + "score": 1.0, + "content": "is defined as follows,", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 392, + 408, + 428 + ], + "lines": [ + { + "bbox": [ + 202, + 392, + 408, + 428 + ], + "spans": [ + { + "bbox": [ + 202, + 392, + 408, + 428 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\left\\{ \\begin{array} { l l } { \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\mathbf { W } ^ { ( l ) } h ^ { ( l - 1 ) } ( \\mathbf { x } _ { i } ) } \\\\ { h ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\sqrt { \\frac { \\gamma } { d _ { l } } } \\boldsymbol { \\xi } ( \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) ) } \\end{array} \\right. , l \\in \\{ 0 , 1 , . . . , L \\} , } \\end{array}", + "type": "interline_equation", + "image_path": "6f8f15709d9700eaaacea1360908c3c39431dd2c5800d3777f3d5ed7e98b7674.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 392, + 408, + 410.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 202, + 410.0, + 408, + 428.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 431, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 431, + 143, + 447 + ], + "score": 1.0, + "content": "in which", + "type": "text" + }, + { + "bbox": [ + 144, + 432, + 214, + 444 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( l ) } \\in \\mathbb { R } ^ { d _ { l } \\times d _ { l - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 431, + 337, + 447 + ], + "score": 1.0, + "content": "is a weight matrix drawn from", + "type": "text" + }, + { + "bbox": [ + 338, + 433, + 369, + 446 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , \\bf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 431, + 387, + 447 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 435, + 395, + 445 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 431, + 506, + 447 + ], + "score": 1.0, + "content": "is a scaling factor to ensure", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 443, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 178, + 459 + ], + "score": 1.0, + "content": "that norm of each", + "type": "text" + }, + { + "bbox": [ + 178, + 444, + 204, + 456 + ], + "score": 0.9, + "content": "\\boldsymbol { h } ^ { ( l - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 443, + 506, + 459 + ], + "score": 1.0, + "content": "is preserved at initialization (See [28] for a formal treatment). The function", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 456, + 343, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 123, + 469 + ], + "score": 0.9, + "content": "\\xi ( . )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 457, + 343, + 469 + ], + "score": 1.0, + "content": "is also an element-wise non-linear activation function.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 104, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 473, + 122, + 487 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 473, + 271, + 487 + ], + "score": 0.92, + "content": "\\pmb \\theta = \\mathrm { c o n c a t } \\big ( \\cup _ { l = 1 } ^ { L } \\mathrm { v e c } ( \\mathbf W ^ { ( l ) } ) \\big ) \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "be the concatenation of all vectorized weight matrices with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 107, + 488, + 117, + 495 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "as the total number of parameters. In the NTK regime [52], in the limit of infinite width, the output", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "of the neural network can be approximated as a linear function of its parameters governed by the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 314, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 314, + 520 + ], + "score": 1.0, + "content": "neural tangent random feature (NTRF) matrix [23],", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 523, + 374, + 547 + ], + "lines": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "spans": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "score": 0.94, + "content": "\\Phi \\left( \\mathbf { X } , \\theta \\right) = \\frac { \\partial \\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\theta \\right) } { \\partial \\theta } \\in \\mathbb { R } ^ { n \\times m } .", + "type": "interline_equation", + "image_path": "27b2435e7380ce4aa89d9ee7edfb7c7b3b86c5fe37c69ae5613eb7dde2cf29f7.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "In the wide-width regime, the NTRF changes very little during training [62], and the output of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 504, + 574 + ], + "score": 1.0, + "content": "the neural network can be approximated by a first order Taylor expansion around the initialization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 153, + 586 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 154, + 573, + 165, + 584 + ], + "score": 0.87, + "content": "\\pmb { \\theta } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 573, + 201, + 586 + ], + "score": 1.0, + "content": ". Setting", + "type": "text" + }, + { + "bbox": [ + 201, + 573, + 269, + 585 + ], + "score": 0.93, + "content": "\\Phi _ { 0 } \\equiv \\Phi \\left( \\mathbf { X } , \\pmb { \\theta } _ { 0 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "and then, without loss of generality, centering parameters", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 428, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 349, + 597 + ], + "score": 1.0, + "content": "and the output coordinates to their value at the initialization", + "type": "text" + }, + { + "bbox": [ + 350, + 584, + 362, + 595 + ], + "score": 0.86, + "content": "{ \\bf \\delta _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 583, + 379, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 584, + 392, + 595 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { y } } _ { 0 , }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 583, + 428, + 597 + ], + "score": 1.0, + "content": "), we get", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 269, + 599, + 342, + 613 + ], + "lines": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "spans": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\pmb { \\theta } \\right) = \\Phi _ { 0 } \\pmb { \\theta } .", + "type": "interline_equation", + "image_path": "c884f9c3036e5875e2440359116cb793b7296ab0f64500e3eab28bbff63b4669.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 506, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "Dominant directions in the feature space as well as the parameter space are given by principal", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 242, + 646 + ], + "score": 1.0, + "content": "components of the NTRF matrix", + "type": "text" + }, + { + "bbox": [ + 242, + 634, + 255, + 645 + ], + "score": 0.89, + "content": "\\Phi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 634, + 506, + 646 + ], + "score": 1.0, + "content": ", which are the same as those of the NTK Gram matrix [106].", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 298, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 298, + 657 + ], + "score": 1.0, + "content": "We therefore introduce the following definition.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "Definition 1 (Features and Responses). Consider the singular value decomposition (SVD) of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 136, + 684 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 669, + 203, + 682 + ], + "score": 0.93, + "content": "\\mathbf { Y } \\Phi _ { 0 } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 668, + 235, + 684 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 236, + 671, + 293, + 682 + ], + "score": 0.7, + "content": "\\mathbf { Y } = d i a g \\left( \\mathbf { y } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 668, + 414, + 684 + ], + "score": 1.0, + "content": ". The jth feature is given by", + "type": "text" + }, + { + "bbox": [ + 414, + 669, + 442, + 682 + ], + "score": 0.91, + "content": "( \\mathbf { \\dot { V } } ^ { T } ) _ { j . }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 668, + 506, + 684 + ], + "score": 1.0, + "content": ".. The strength", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 235, + 694 + ], + "score": 1.0, + "content": "of jth feature is represented by", + "type": "text" + }, + { + "bbox": [ + 235, + 681, + 281, + 694 + ], + "score": 0.91, + "content": "s _ { j } = ( \\mathbf { S } ) _ { j j }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 681, + 310, + 694 + ], + "score": 1.0, + "content": ". Also,", + "type": "text" + }, + { + "bbox": [ + 311, + 682, + 334, + 693 + ], + "score": 0.87, + "content": "( \\mathbf { U } ) _ { \\cdot j }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "contains the weights of this feature in all", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 691, + 410, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 317, + 705 + ], + "score": 1.0, + "content": "examples. A neural network’s response to a feature", + "type": "text" + }, + { + "bbox": [ + 318, + 694, + 324, + 704 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 691, + 370, + 705 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 370, + 693, + 380, + 704 + ], + "score": 0.86, + "content": "z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 691, + 410, + 705 + ], + "score": 1.0, + "content": "where,", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 708, + 354, + 723 + ], + "lines": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "spans": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "score": 0.92, + "content": "\\mathbf { z } : = \\mathbf { U } ^ { T } \\mathbf { Y } \\hat { \\mathbf { y } } = \\mathbf { S } \\mathbf { V } ^ { T } \\pmb { \\theta } .", + "type": "interline_equation", + "image_path": "e0dadc9db1bdfe7385727999f8aa3291facc2aad80dfd687d6cc77ae8f986910.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 95 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 71, + 506, + 95 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Excessive invariance. GS could also result in neural networks that are invariant to task-relevant", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "changes in the input. In the example above, it is possible to obtain a data point with low probability", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 120, + 434, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 434, + 133 + ], + "score": 1.0, + "content": "under the data distribution, but that would still be classified with high confidence.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 99, + 505, + 133 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "Implicit regularization. One might argue that according to Occam’s razor, a simpler decision", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 147, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 506, + 160 + ], + "score": 1.0, + "content": "boundary should generalize better. In fact, if both training and test sets share the same dominant", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 156, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 505, + 173 + ], + "score": 1.0, + "content": "feature (in this example, the feature along the horizontal axis), GS naturally prevents the learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "of less dominant features that could otherwise result in overfitting. Therefore, depending on our", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "assumptions on the training and test distributions, GS could also act as an implicit regularizer. We", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 438, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 438, + 204 + ], + "score": 1.0, + "content": "provide further discussion on the implicit regularization aspect of GS in Section 5.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 137, + 506, + 204 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 212, + 225, + 225 + ], + "lines": [ + { + "bbox": [ + 104, + 210, + 226, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 210, + 226, + 228 + ], + "score": 1.0, + "content": "3 Theoretical Results", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 506, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "In this section, we study the learning dynamics of neural networks trained with cross-entropy loss.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 254 + ], + "score": 1.0, + "content": "Particularly, we seek to decompose the learning dynamics along orthogonal directions in the feature", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "space of neural networks, to provide a formal definition of GS, and to derive a simple regularization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "method to mitigate it. For analytical tractability, we make three key assumptions: (1) we study deep", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 274, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 274, + 506, + 288 + ], + "score": 1.0, + "content": "networks in the Neural Tangent Kernel (NTK) regime, (2) we treat a binary classification task, (3)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 298 + ], + "score": 1.0, + "content": "we decompose the interaction between two features. In Section 4, we demonstrate our results hold", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 296, + 506, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 506, + 311 + ], + "score": 1.0, + "content": "beyond these simplifying assumptions, for a wide range of practical settings. All derivation details", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 307, + 199, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 171, + 319 + ], + "score": 1.0, + "content": "can be found in", + "type": "text" + }, + { + "bbox": [ + 171, + 308, + 195, + 318 + ], + "score": 0.27, + "content": "\\mathbf { S M C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 307, + 199, + 319 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 231, + 506, + 319 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 326, + 346, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 346, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 346, + 339 + ], + "score": 1.0, + "content": "3.1 Problem Setup and Gradient Starvation Definition", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 388 + ], + "lines": [ + { + "bbox": [ + 104, + 339, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 339, + 123, + 354 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 340, + 178, + 352 + ], + "score": 0.92, + "content": "{ \\mathcal { D } } = \\{ { \\bf X } , { \\bf y } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 339, + 314, + 354 + ], + "score": 1.0, + "content": "denote a training set containing", + "type": "text" + }, + { + "bbox": [ + 314, + 343, + 322, + 351 + ], + "score": 0.71, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 339, + 390, + 354 + ], + "score": 1.0, + "content": "datapoints with", + "type": "text" + }, + { + "bbox": [ + 390, + 341, + 397, + 351 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 339, + 482, + 354 + ], + "score": 1.0, + "content": "dimensions, where,", + "type": "text" + }, + { + "bbox": [ + 482, + 341, + 505, + 352 + ], + "score": 0.85, + "content": "\\mathbf { X } =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 351, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 107, + 353, + 188, + 365 + ], + "score": 0.9, + "content": "[ \\mathbf { x } _ { 1 } , . . . , \\mathbf { x } _ { n } ] \\in \\mathbb { R } ^ { n \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 351, + 324, + 366 + ], + "score": 1.0, + "content": "and their corresponding class label", + "type": "text" + }, + { + "bbox": [ + 324, + 352, + 388, + 365 + ], + "score": 0.92, + "content": "\\mathbf { y } \\in \\{ - 1 , + 1 \\} ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 351, + 425, + 366 + ], + "score": 1.0, + "content": ". Also let", + "type": "text" + }, + { + "bbox": [ + 425, + 352, + 504, + 365 + ], + "score": 0.9, + "content": "\\hat { \\mathbf { y } } ( \\mathbf { X } ) : = f ^ { ( L ) } ( \\mathbf { X } ) :", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 362, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 107, + 364, + 159, + 375 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { n \\times d } \\to \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 362, + 263, + 379 + ], + "score": 1.0, + "content": "represent the logits of an", + "type": "text" + }, + { + "bbox": [ + 263, + 365, + 271, + 375 + ], + "score": 0.29, + "content": "\\mathrm { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 362, + 506, + 379 + ], + "score": 1.0, + "content": "-layer fully-connected neural network where each hidden", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 375, + 274, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 129, + 389 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 375, + 185, + 389 + ], + "score": 0.93, + "content": "h ^ { ( l ) } ( x ) \\in \\mathbf { \\bar { \\mathbb { R } } } ^ { d _ { l } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 375, + 274, + 389 + ], + "score": 1.0, + "content": "is defined as follows,", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 339, + 506, + 389 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 392, + 408, + 428 + ], + "lines": [ + { + "bbox": [ + 202, + 392, + 408, + 428 + ], + "spans": [ + { + "bbox": [ + 202, + 392, + 408, + 428 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\left\\{ \\begin{array} { l l } { \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\mathbf { W } ^ { ( l ) } h ^ { ( l - 1 ) } ( \\mathbf { x } _ { i } ) } \\\\ { h ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\sqrt { \\frac { \\gamma } { d _ { l } } } \\boldsymbol { \\xi } ( \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) ) } \\end{array} \\right. , l \\in \\{ 0 , 1 , . . . , L \\} , } \\end{array}", + "type": "interline_equation", + "image_path": "6f8f15709d9700eaaacea1360908c3c39431dd2c5800d3777f3d5ed7e98b7674.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 392, + 408, + 410.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 202, + 410.0, + 408, + 428.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 431, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 431, + 143, + 447 + ], + "score": 1.0, + "content": "in which", + "type": "text" + }, + { + "bbox": [ + 144, + 432, + 214, + 444 + ], + "score": 0.91, + "content": "\\mathbf { W } ^ { ( l ) } \\in \\mathbb { R } ^ { d _ { l } \\times d _ { l - 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 431, + 337, + 447 + ], + "score": 1.0, + "content": "is a weight matrix drawn from", + "type": "text" + }, + { + "bbox": [ + 338, + 433, + 369, + 446 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , \\bf { I } )", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 431, + 387, + 447 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 435, + 395, + 445 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 431, + 506, + 447 + ], + "score": 1.0, + "content": "is a scaling factor to ensure", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 443, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 178, + 459 + ], + "score": 1.0, + "content": "that norm of each", + "type": "text" + }, + { + "bbox": [ + 178, + 444, + 204, + 456 + ], + "score": 0.9, + "content": "\\boldsymbol { h } ^ { ( l - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 443, + 506, + 459 + ], + "score": 1.0, + "content": "is preserved at initialization (See [28] for a formal treatment). The function", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 456, + 343, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 123, + 469 + ], + "score": 0.9, + "content": "\\xi ( . )", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 457, + 343, + 469 + ], + "score": 1.0, + "content": "is also an element-wise non-linear activation function.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 104, + 431, + 506, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 104, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 473, + 122, + 487 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 473, + 271, + 487 + ], + "score": 0.92, + "content": "\\pmb \\theta = \\mathrm { c o n c a t } \\big ( \\cup _ { l = 1 } ^ { L } \\mathrm { v e c } ( \\mathbf W ^ { ( l ) } ) \\big ) \\in \\mathbb { R } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "be the concatenation of all vectorized weight matrices with", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 107, + 488, + 117, + 495 + ], + "score": 0.72, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "as the total number of parameters. In the NTK regime [52], in the limit of infinite width, the output", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "of the neural network can be approximated as a linear function of its parameters governed by the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 507, + 314, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 314, + 520 + ], + "score": 1.0, + "content": "neural tangent random feature (NTRF) matrix [23],", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 473, + 506, + 520 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 523, + 374, + 547 + ], + "lines": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "spans": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "score": 0.94, + "content": "\\Phi \\left( \\mathbf { X } , \\theta \\right) = \\frac { \\partial \\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\theta \\right) } { \\partial \\theta } \\in \\mathbb { R } ^ { n \\times m } .", + "type": "interline_equation", + "image_path": "27b2435e7380ce4aa89d9ee7edfb7c7b3b86c5fe37c69ae5613eb7dde2cf29f7.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 237, + 523, + 374, + 547 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 595 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "In the wide-width regime, the NTRF changes very little during training [62], and the output of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 562, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 504, + 574 + ], + "score": 1.0, + "content": "the neural network can be approximated by a first order Taylor expansion around the initialization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 153, + 586 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 154, + 573, + 165, + 584 + ], + "score": 0.87, + "content": "\\pmb { \\theta } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 573, + 201, + 586 + ], + "score": 1.0, + "content": ". Setting", + "type": "text" + }, + { + "bbox": [ + 201, + 573, + 269, + 585 + ], + "score": 0.93, + "content": "\\Phi _ { 0 } \\equiv \\Phi \\left( \\mathbf { X } , \\pmb { \\theta } _ { 0 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "and then, without loss of generality, centering parameters", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 428, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 349, + 597 + ], + "score": 1.0, + "content": "and the output coordinates to their value at the initialization", + "type": "text" + }, + { + "bbox": [ + 350, + 584, + 362, + 595 + ], + "score": 0.86, + "content": "{ \\bf \\delta _ { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 583, + 379, + 597 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 380, + 584, + 392, + 595 + ], + "score": 0.86, + "content": "\\hat { \\mathbf { y } } _ { 0 , }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 583, + 428, + 597 + ], + "score": 1.0, + "content": "), we get", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 550, + 506, + 597 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 269, + 599, + 342, + 613 + ], + "lines": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "spans": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\pmb { \\theta } \\right) = \\Phi _ { 0 } \\pmb { \\theta } .", + "type": "interline_equation", + "image_path": "c884f9c3036e5875e2440359116cb793b7296ab0f64500e3eab28bbff63b4669.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 269, + 599, + 342, + 613 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 506, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "Dominant directions in the feature space as well as the parameter space are given by principal", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 242, + 646 + ], + "score": 1.0, + "content": "components of the NTRF matrix", + "type": "text" + }, + { + "bbox": [ + 242, + 634, + 255, + 645 + ], + "score": 0.89, + "content": "\\Phi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 634, + 506, + 646 + ], + "score": 1.0, + "content": ", which are the same as those of the NTK Gram matrix [106].", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 644, + 298, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 298, + 657 + ], + "score": 1.0, + "content": "We therefore introduce the following definition.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 622, + 506, + 657 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 506, + 672 + ], + "score": 1.0, + "content": "Definition 1 (Features and Responses). Consider the singular value decomposition (SVD) of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 668, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 104, + 668, + 136, + 684 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 669, + 203, + 682 + ], + "score": 0.93, + "content": "\\mathbf { Y } \\Phi _ { 0 } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 668, + 235, + 684 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 236, + 671, + 293, + 682 + ], + "score": 0.7, + "content": "\\mathbf { Y } = d i a g \\left( \\mathbf { y } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 668, + 414, + 684 + ], + "score": 1.0, + "content": ". The jth feature is given by", + "type": "text" + }, + { + "bbox": [ + 414, + 669, + 442, + 682 + ], + "score": 0.91, + "content": "( \\mathbf { \\dot { V } } ^ { T } ) _ { j . }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 668, + 506, + 684 + ], + "score": 1.0, + "content": ".. The strength", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 681, + 235, + 694 + ], + "score": 1.0, + "content": "of jth feature is represented by", + "type": "text" + }, + { + "bbox": [ + 235, + 681, + 281, + 694 + ], + "score": 0.91, + "content": "s _ { j } = ( \\mathbf { S } ) _ { j j }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 681, + 310, + 694 + ], + "score": 1.0, + "content": ". Also,", + "type": "text" + }, + { + "bbox": [ + 311, + 682, + 334, + 693 + ], + "score": 0.87, + "content": "( \\mathbf { U } ) _ { \\cdot j }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "contains the weights of this feature in all", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 691, + 410, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 317, + 705 + ], + "score": 1.0, + "content": "examples. A neural network’s response to a feature", + "type": "text" + }, + { + "bbox": [ + 318, + 694, + 324, + 704 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 691, + 370, + 705 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + }, + { + "bbox": [ + 370, + 693, + 380, + 704 + ], + "score": 0.86, + "content": "z _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 691, + 410, + 705 + ], + "score": 1.0, + "content": "where,", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 658, + 506, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 708, + 354, + 723 + ], + "lines": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "spans": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "score": 0.92, + "content": "\\mathbf { z } : = \\mathbf { U } ^ { T } \\mathbf { Y } \\hat { \\mathbf { y } } = \\mathbf { S } \\mathbf { V } ^ { T } \\pmb { \\theta } .", + "type": "interline_equation", + "image_path": "e0dadc9db1bdfe7385727999f8aa3291facc2aad80dfd687d6cc77ae8f986910.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 256, + 708, + 354, + 723 + ], + "spans": [], + "index": 47 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 233, + 85 + ], + "score": 1.0, + "content": "In Eq. 4, the response to feature", + "type": "text" + }, + { + "bbox": [ + 233, + 74, + 239, + 84 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 72, + 426, + 85 + ], + "score": 1.0, + "content": "is the sum of the responses to every example in", + "type": "text" + }, + { + "bbox": [ + 427, + 73, + 449, + 84 + ], + "score": 0.85, + "content": "( \\mathbf { Y } \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "multiplied by", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 270, + 96 + ], + "score": 1.0, + "content": "the weight of the feature in that example", + "type": "text" + }, + { + "bbox": [ + 270, + 83, + 292, + 95 + ], + "score": 0.91, + "content": "( \\mathbf { U } ^ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 83, + 421, + 96 + ], + "score": 1.0, + "content": ". For example, if all elements of", + "type": "text" + }, + { + "bbox": [ + 421, + 84, + 445, + 96 + ], + "score": 0.82, + "content": "( \\mathbf { U } ) _ { \\cdot j }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "are positive, it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "indicates a perfect correlation between this feature and class labels. We are now equipped to formally", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 152, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 152, + 117 + ], + "score": 1.0, + "content": "define GS.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 447, + 133 + ], + "score": 1.0, + "content": "Definition 2 (Gradient Starvation). Recall the the model prescribed by Eq. 3. Let", + "type": "text" + }, + { + "bbox": [ + 447, + 120, + 458, + 133 + ], + "score": 0.88, + "content": "z _ { j } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 218, + 146 + ], + "score": 1.0, + "content": "model’s response to feature", + "type": "text" + }, + { + "bbox": [ + 218, + 133, + 224, + 144 + ], + "score": 0.75, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 131, + 307, + 146 + ], + "score": 1.0, + "content": "at training optimum", + "type": "text" + }, + { + "bbox": [ + 308, + 132, + 323, + 142 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 131, + 361, + 146 + ], + "score": 1.0, + "content": ". Feature", + "type": "text" + }, + { + "bbox": [ + 361, + 133, + 366, + 142 + ], + "score": 0.64, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 131, + 498, + 146 + ], + "score": 1.0, + "content": "starves the gradient for feature", + "type": "text" + }, + { + "bbox": [ + 498, + 133, + 504, + 144 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 143, + 180, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 176, + 157 + ], + "score": 0.9, + "content": "i f d z _ { j } ^ { * } / d ( s _ { i } ^ { 2 } ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 143, + 180, + 156 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 505, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 390, + 175 + ], + "score": 1.0, + "content": "This definition of GS implies that an increase in the strength of feature", + "type": "text" + }, + { + "bbox": [ + 391, + 164, + 396, + 173 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "has a detrimental effect on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 197, + 186 + ], + "score": 1.0, + "content": "the learning of feature", + "type": "text" + }, + { + "bbox": [ + 198, + 175, + 203, + 185 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 173, + 506, + 186 + ], + "score": 1.0, + "content": ". We now derive conditions for which learning dynamics of system 3 suffer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 184, + 147, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 147, + 196 + ], + "score": 1.0, + "content": "from GS.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 203, + 212, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 213, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 213, + 217 + ], + "score": 1.0, + "content": "3.2 Training Dynamics", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 217, + 405, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 407, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 407, + 232 + ], + "score": 1.0, + "content": "We consider the widely used ridge-regularized cross-entropy loss function,", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 232, + 394, + 256 + ], + "lines": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "spans": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "score": 0.94, + "content": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "2a58001c365d2f538ed91fa68e8915798a3306d4f713cbb588bd6d55ceda5d33.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 217, + 271 + ], + "score": 1.0, + "content": "where 1 is a vector of size", + "type": "text" + }, + { + "bbox": [ + 217, + 261, + 225, + 268 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "with all its elements equal to 1. This vector form simply represents", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 379, + 282 + ], + "score": 1.0, + "content": "a summation over all the elements of the vector it is multiplied to.", + "type": "text" + }, + { + "bbox": [ + 379, + 269, + 424, + 281 + ], + "score": 0.93, + "content": "\\lambda \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "denotes the weight", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 179, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 179, + 293 + ], + "score": 1.0, + "content": "decay coefficient.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "Direct minimization of this loss function using the gradient descent obeys coupled dynamics and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "is difficult to treat directly [26]. To overcome this problem, we call on a variational approach that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "leverages the Legendre transformation of the loss function. This allows tractable dynamics that can", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 328, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 343 + ], + "score": 1.0, + "content": "directly incorporate rates of learning in different feature directions. Following [50], we note the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 191, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 191, + 354 + ], + "score": 1.0, + "content": "following inequality,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 355, + 392, + 369 + ], + "lines": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "spans": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] \\geq H ( \\alpha ) - \\alpha \\odot \\mathbf { Y } \\hat { \\mathbf { y } } , } \\end{array}", + "type": "interline_equation", + "image_path": "51ac1f98f81a1a54fc0f27af240fc908950ca57165473d460bfd2160ed6465e3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 135, + 386 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 372, + 318, + 385 + ], + "score": 0.9, + "content": "H ( \\pmb { \\alpha } ) = - \\left[ \\pmb { \\alpha } \\log \\pmb { \\alpha } + ( 1 - \\pmb { \\alpha } ) \\log \\left( 1 - \\pmb { \\alpha } \\right) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 371, + 483, + 386 + ], + "score": 1.0, + "content": "is Shannon’s binary entropy function,", + "type": "text" + }, + { + "bbox": [ + 483, + 374, + 505, + 384 + ], + "score": 0.82, + "content": "\\alpha \\in", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 134, + 394 + ], + "score": 0.92, + "content": "( 0 , 1 ) ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 382, + 392, + 395 + ], + "score": 1.0, + "content": "is a variational parameter defined for each training example, and", + "type": "text" + }, + { + "bbox": [ + 392, + 384, + 402, + 393 + ], + "score": 0.84, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 382, + 506, + 395 + ], + "score": 1.0, + "content": "denotes the element-wise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 435, + 405 + ], + "score": 1.0, + "content": "vector product. Crucially, the equality holds when the maximum of r.h.s. w.r.t", + "type": "text" + }, + { + "bbox": [ + 436, + 394, + 444, + 403 + ], + "score": 0.79, + "content": "_ \\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 393, + 506, + 405 + ], + "score": 1.0, + "content": "is achieved at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 403, + 376, + 419 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 163, + 419 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\pmb { \\alpha } ^ { * } = \\frac { \\bar { { \\partial \\mathcal { L } } } } { \\partial ( \\mathbf { Y } \\hat { \\mathbf { y } } ) ^ { T } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 403, + 376, + 418 + ], + "score": 1.0, + "content": ", which leads to the following optimization problem,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 421, + 410, + 446 + ], + "lines": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "spans": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m i n } _ { \\pmb { \\theta } } \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\pmb { \\alpha } \\mathbf { Y } \\hat { \\mathbf { y } } + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } \\right) ,", + "type": "interline_equation", + "image_path": "d037cf2ec61dcb3d1955e72856e3244d3e815755bed8c636f1649c0dc2c24ce6.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "where the order of min and max can be swapped (see Lemma 3 of [50]). Since the neural network’s", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 287, + 471 + ], + "score": 1.0, + "content": "output is approximated by a linear function of", + "type": "text" + }, + { + "bbox": [ + 288, + 460, + 294, + 469 + ], + "score": 0.79, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 460, + 505, + 471 + ], + "score": 1.0, + "content": ", the minimization can be performed analytically with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 468, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 172, + 486 + ], + "score": 1.0, + "content": "an critical value", + "type": "text" + }, + { + "bbox": [ + 173, + 470, + 239, + 485 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { . } ^ { \\ast T } = \\triangleq \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 468, + 507, + 486 + ], + "score": 1.0, + "content": ", given by a weighted sum of the training examples. This results in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 468, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 355, + 495 + ], + "score": 1.0, + "content": "the following maximization problem on the dual variable, i.e.,", + "type": "text" + }, + { + "bbox": [ + 356, + 483, + 401, + 495 + ], + "score": 0.83, + "content": "\\operatorname* { m i n } _ { \\theta } { \\mathcal { L } } \\left( \\theta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 483, + 468, + 495 + ], + "score": 1.0, + "content": "is equivalent to,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 497, + 421, + 525 + ], + "lines": [ + { + "bbox": [ + 189, + 497, + 421, + 525 + ], + "spans": [ + { + "bbox": [ + 189, + 497, + 421, + 525 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\frac { 1 } { 2 \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 } \\pmb { \\Phi } _ { 0 } ^ { T } \\mathbf { Y } ^ { T } \\pmb { \\alpha } ^ { T } \\right) .", + "type": "interline_equation", + "image_path": "8fdaae8e4c0e053073b44955972f7a1e43ba526c8000d7b1ebf8528410f239f5.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 497, + 421, + 511.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 189, + 511.0, + 421, + 525.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "By applying continuous-time gradient ascent on this optimization problem, we derive an autonomous", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 263, + 556 + ], + "score": 1.0, + "content": "differential equation for the evolution of", + "type": "text" + }, + { + "bbox": [ + 264, + 546, + 272, + 554 + ], + "score": 0.78, + "content": "_ { \\pmb { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 544, + 505, + 556 + ], + "score": 1.0, + "content": ", which can be written in terms of features (see Definition 1),", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 558, + 407, + 586 + ], + "lines": [ + { + "bbox": [ + 203, + 558, + 407, + 586 + ], + "spans": [ + { + "bbox": [ + 203, + 558, + 407, + 586 + ], + "score": 0.93, + "content": "\\dot { \\pmb { \\alpha } } = \\eta \\left( - \\log \\pmb { \\alpha } + \\log \\left( \\mathbf { 1 } - \\pmb { \\alpha } \\right) - \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\right) ,", + "type": "interline_equation", + "image_path": "ef1bdde7574153adcbf8bcb5476311d6bdc949e5f2799b36b3d6235c96a5c715.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 558, + 407, + 572.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 203, + 572.0, + 407, + 586.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 506, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 132, + 600 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 590, + 139, + 600 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 588, + 233, + 600 + ], + "score": 1.0, + "content": "is the learning rate (see", + "type": "text" + }, + { + "bbox": [ + 234, + 588, + 265, + 599 + ], + "score": 0.26, + "content": "\\mathrm { S M } \\mathrm { C } . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "for more details). For this dynamical system, we see that the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 267, + 611 + ], + "score": 1.0, + "content": "logarithm term acts as barriers that keep", + "type": "text" + }, + { + "bbox": [ + 267, + 599, + 312, + 611 + ], + "score": 0.93, + "content": "\\alpha _ { i } \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 598, + 466, + 611 + ], + "score": 1.0, + "content": ". The other term depends on the matrix", + "type": "text" + }, + { + "bbox": [ + 466, + 599, + 502, + 610 + ], + "score": 0.91, + "content": "\\mathbf { U S ^ { 2 } U } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 598, + 506, + 611 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "score": 1.0, + "content": "which is positive definite, and thus pushes the system towards the origin and therefore drives learning.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 503, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 133, + 640 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 626, + 165, + 639 + ], + "score": 0.94, + "content": "\\lambda \\ll s _ { k } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 625, + 196, + 640 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 197, + 627, + 204, + 636 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 625, + 506, + 640 + ], + "score": 1.0, + "content": "is an index over the singular values, the linear term dominates Eq. 9, and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "the fixed point is drawn closer towards the origin. Approximating dynamics with a first order Taylor", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 648, + 363, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 363, + 662 + ], + "score": 1.0, + "content": "expansion around the origin of the second term in Eq. 9, we get", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 663, + 394, + 690 + ], + "lines": [ + { + "bbox": [ + 216, + 663, + 394, + 690 + ], + "spans": [ + { + "bbox": [ + 216, + 663, + 394, + 690 + ], + "score": 0.94, + "content": "\\dot { \\boldsymbol { \\alpha } } \\approx \\eta \\left( - \\log \\boldsymbol { \\alpha } - \\frac { 1 } { \\lambda } \\boldsymbol { \\alpha } \\mathbf { U } \\left( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } \\right) \\mathbf { U } ^ { T } \\right) ,", + "type": "interline_equation", + "image_path": "7b6493933df3c8ef9bb06ba93d55808ed4e62b93b177372ec253fd5fd1ea0125.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 663, + 394, + 676.5 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 216, + 676.5, + 394, + 690.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 692, + 371, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 371, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 343, + 706 + ], + "score": 1.0, + "content": "with stability given by the following theorem with proof in", + "type": "text" + }, + { + "bbox": [ + 343, + 693, + 367, + 703 + ], + "score": 0.26, + "content": "\\mathbf { S M C }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 691, + 371, + 706 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 711, + 330, + 723 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 330, + 725 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 276, + 725 + ], + "score": 1.0, + "content": "1Training optimum refers to the solution to", + "type": "text" + }, + { + "bbox": [ + 276, + 711, + 326, + 723 + ], + "score": 0.9, + "content": "\\nabla _ { \\pmb { \\theta } } \\mathcal { L } ( \\pmb { \\theta } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 709, + 330, + 725 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "4", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 233, + 85 + ], + "score": 1.0, + "content": "In Eq. 4, the response to feature", + "type": "text" + }, + { + "bbox": [ + 233, + 74, + 239, + 84 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 72, + 426, + 85 + ], + "score": 1.0, + "content": "is the sum of the responses to every example in", + "type": "text" + }, + { + "bbox": [ + 427, + 73, + 449, + 84 + ], + "score": 0.85, + "content": "( \\mathbf { Y } \\hat { \\mathbf { y } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "multiplied by", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 270, + 96 + ], + "score": 1.0, + "content": "the weight of the feature in that example", + "type": "text" + }, + { + "bbox": [ + 270, + 83, + 292, + 95 + ], + "score": 0.91, + "content": "( \\mathbf { U } ^ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 83, + 421, + 96 + ], + "score": 1.0, + "content": ". For example, if all elements of", + "type": "text" + }, + { + "bbox": [ + 421, + 84, + 445, + 96 + ], + "score": 0.82, + "content": "( \\mathbf { U } ) _ { \\cdot j }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "are positive, it", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "indicates a perfect correlation between this feature and class labels. We are now equipped to formally", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 152, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 152, + 117 + ], + "score": 1.0, + "content": "define GS.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 72, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 447, + 133 + ], + "score": 1.0, + "content": "Definition 2 (Gradient Starvation). Recall the the model prescribed by Eq. 3. Let", + "type": "text" + }, + { + "bbox": [ + 447, + 120, + 458, + 133 + ], + "score": 0.88, + "content": "z _ { j } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 119, + 505, + 133 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 218, + 146 + ], + "score": 1.0, + "content": "model’s response to feature", + "type": "text" + }, + { + "bbox": [ + 218, + 133, + 224, + 144 + ], + "score": 0.75, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 131, + 307, + 146 + ], + "score": 1.0, + "content": "at training optimum", + "type": "text" + }, + { + "bbox": [ + 308, + 132, + 323, + 142 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 131, + 361, + 146 + ], + "score": 1.0, + "content": ". Feature", + "type": "text" + }, + { + "bbox": [ + 361, + 133, + 366, + 142 + ], + "score": 0.64, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 131, + 498, + 146 + ], + "score": 1.0, + "content": "starves the gradient for feature", + "type": "text" + }, + { + "bbox": [ + 498, + 133, + 504, + 144 + ], + "score": 0.73, + "content": "j", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 143, + 180, + 157 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 176, + 157 + ], + "score": 0.9, + "content": "i f d z _ { j } ^ { * } / d ( s _ { i } ^ { 2 } ) < 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 143, + 180, + 156 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 119, + 505, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 505, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 390, + 175 + ], + "score": 1.0, + "content": "This definition of GS implies that an increase in the strength of feature", + "type": "text" + }, + { + "bbox": [ + 391, + 164, + 396, + 173 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "has a detrimental effect on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 197, + 186 + ], + "score": 1.0, + "content": "the learning of feature", + "type": "text" + }, + { + "bbox": [ + 198, + 175, + 203, + 185 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 173, + 506, + 186 + ], + "score": 1.0, + "content": ". We now derive conditions for which learning dynamics of system 3 suffer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 184, + 147, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 147, + 196 + ], + "score": 1.0, + "content": "from GS.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 162, + 506, + 196 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 203, + 212, + 215 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 213, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 213, + 217 + ], + "score": 1.0, + "content": "3.2 Training Dynamics", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 217, + 405, + 229 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 407, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 407, + 232 + ], + "score": 1.0, + "content": "We consider the widely used ridge-regularized cross-entropy loss function,", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 216, + 407, + 232 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 232, + 394, + 256 + ], + "lines": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "spans": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "score": 0.94, + "content": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "2a58001c365d2f538ed91fa68e8915798a3306d4f713cbb588bd6d55ceda5d33.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 216, + 232, + 394, + 256 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 506, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 217, + 271 + ], + "score": 1.0, + "content": "where 1 is a vector of size", + "type": "text" + }, + { + "bbox": [ + 217, + 261, + 225, + 268 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "with all its elements equal to 1. This vector form simply represents", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 268, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 104, + 268, + 379, + 282 + ], + "score": 1.0, + "content": "a summation over all the elements of the vector it is multiplied to.", + "type": "text" + }, + { + "bbox": [ + 379, + 269, + 424, + 281 + ], + "score": 0.93, + "content": "\\lambda \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 268, + 506, + 282 + ], + "score": 1.0, + "content": "denotes the weight", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 280, + 179, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 179, + 293 + ], + "score": 1.0, + "content": "decay coefficient.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 104, + 258, + 506, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "Direct minimization of this loss function using the gradient descent obeys coupled dynamics and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "is difficult to treat directly [26]. To overcome this problem, we call on a variational approach that", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "leverages the Legendre transformation of the loss function. This allows tractable dynamics that can", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 328, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 506, + 343 + ], + "score": 1.0, + "content": "directly incorporate rates of learning in different feature directions. Following [50], we note the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 191, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 191, + 354 + ], + "score": 1.0, + "content": "following inequality,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 296, + 506, + 354 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 355, + 392, + 369 + ], + "lines": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "spans": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] \\geq H ( \\alpha ) - \\alpha \\odot \\mathbf { Y } \\hat { \\mathbf { y } } , } \\end{array}", + "type": "interline_equation", + "image_path": "51ac1f98f81a1a54fc0f27af240fc908950ca57165473d460bfd2160ed6465e3.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 217, + 355, + 392, + 369 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 372, + 505, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 371, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 135, + 386 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 372, + 318, + 385 + ], + "score": 0.9, + "content": "H ( \\pmb { \\alpha } ) = - \\left[ \\pmb { \\alpha } \\log \\pmb { \\alpha } + ( 1 - \\pmb { \\alpha } ) \\log \\left( 1 - \\pmb { \\alpha } \\right) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 371, + 483, + 386 + ], + "score": 1.0, + "content": "is Shannon’s binary entropy function,", + "type": "text" + }, + { + "bbox": [ + 483, + 374, + 505, + 384 + ], + "score": 0.82, + "content": "\\alpha \\in", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 382, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 134, + 394 + ], + "score": 0.92, + "content": "( 0 , 1 ) ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 382, + 392, + 395 + ], + "score": 1.0, + "content": "is a variational parameter defined for each training example, and", + "type": "text" + }, + { + "bbox": [ + 392, + 384, + 402, + 393 + ], + "score": 0.84, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 382, + 506, + 395 + ], + "score": 1.0, + "content": "denotes the element-wise", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 435, + 405 + ], + "score": 1.0, + "content": "vector product. Crucially, the equality holds when the maximum of r.h.s. w.r.t", + "type": "text" + }, + { + "bbox": [ + 436, + 394, + 444, + 403 + ], + "score": 0.79, + "content": "_ \\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 393, + 506, + 405 + ], + "score": 1.0, + "content": "is achieved at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 403, + 376, + 419 + ], + "spans": [ + { + "bbox": [ + 107, + 403, + 163, + 419 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\pmb { \\alpha } ^ { * } = \\frac { \\bar { { \\partial \\mathcal { L } } } } { \\partial ( \\mathbf { Y } \\hat { \\mathbf { y } } ) ^ { T } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 403, + 376, + 418 + ], + "score": 1.0, + "content": ", which leads to the following optimization problem,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 371, + 506, + 419 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 421, + 410, + 446 + ], + "lines": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "spans": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m i n } _ { \\pmb { \\theta } } \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\pmb { \\alpha } \\mathbf { Y } \\hat { \\mathbf { y } } + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } \\right) ,", + "type": "interline_equation", + "image_path": "d037cf2ec61dcb3d1955e72856e3244d3e815755bed8c636f1649c0dc2c24ce6.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 200, + 421, + 410, + 446 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "where the order of min and max can be swapped (see Lemma 3 of [50]). Since the neural network’s", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 287, + 471 + ], + "score": 1.0, + "content": "output is approximated by a linear function of", + "type": "text" + }, + { + "bbox": [ + 288, + 460, + 294, + 469 + ], + "score": 0.79, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 460, + 505, + 471 + ], + "score": 1.0, + "content": ", the minimization can be performed analytically with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 468, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 172, + 486 + ], + "score": 1.0, + "content": "an critical value", + "type": "text" + }, + { + "bbox": [ + 173, + 470, + 239, + 485 + ], + "score": 0.93, + "content": "\\pmb { \\theta } _ { . } ^ { \\ast T } = \\triangleq \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 468, + 507, + 486 + ], + "score": 1.0, + "content": ", given by a weighted sum of the training examples. This results in", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 468, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 355, + 495 + ], + "score": 1.0, + "content": "the following maximization problem on the dual variable, i.e.,", + "type": "text" + }, + { + "bbox": [ + 356, + 483, + 401, + 495 + ], + "score": 0.83, + "content": "\\operatorname* { m i n } _ { \\theta } { \\mathcal { L } } \\left( \\theta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 483, + 468, + 495 + ], + "score": 1.0, + "content": "is equivalent to,", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 448, + 507, + 495 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 497, + 421, + 525 + ], + "lines": [ + { + "bbox": [ + 189, + 497, + 421, + 525 + ], + "spans": [ + { + "bbox": [ + 189, + 497, + 421, + 525 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\frac { 1 } { 2 \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 } \\pmb { \\Phi } _ { 0 } ^ { T } \\mathbf { Y } ^ { T } \\pmb { \\alpha } ^ { T } \\right) .", + "type": "interline_equation", + "image_path": "8fdaae8e4c0e053073b44955972f7a1e43ba526c8000d7b1ebf8528410f239f5.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 497, + 421, + 511.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 189, + 511.0, + 421, + 525.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "By applying continuous-time gradient ascent on this optimization problem, we derive an autonomous", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 263, + 556 + ], + "score": 1.0, + "content": "differential equation for the evolution of", + "type": "text" + }, + { + "bbox": [ + 264, + 546, + 272, + 554 + ], + "score": 0.78, + "content": "_ { \\pmb { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 544, + 505, + 556 + ], + "score": 1.0, + "content": ", which can be written in terms of features (see Definition 1),", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 532, + 506, + 556 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 558, + 407, + 586 + ], + "lines": [ + { + "bbox": [ + 203, + 558, + 407, + 586 + ], + "spans": [ + { + "bbox": [ + 203, + 558, + 407, + 586 + ], + "score": 0.93, + "content": "\\dot { \\pmb { \\alpha } } = \\eta \\left( - \\log \\pmb { \\alpha } + \\log \\left( \\mathbf { 1 } - \\pmb { \\alpha } \\right) - \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\right) ,", + "type": "interline_equation", + "image_path": "ef1bdde7574153adcbf8bcb5476311d6bdc949e5f2799b36b3d6235c96a5c715.jpg" + } + ] + } + ], + "index": 35.5, + "virtual_lines": [ + { + "bbox": [ + 203, + 558, + 407, + 572.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 203, + 572.0, + 407, + 586.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 506, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 132, + 600 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 590, + 139, + 600 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 588, + 233, + 600 + ], + "score": 1.0, + "content": "is the learning rate (see", + "type": "text" + }, + { + "bbox": [ + 234, + 588, + 265, + 599 + ], + "score": 0.26, + "content": "\\mathrm { S M } \\mathrm { C } . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "for more details). For this dynamical system, we see that the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 598, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 267, + 611 + ], + "score": 1.0, + "content": "logarithm term acts as barriers that keep", + "type": "text" + }, + { + "bbox": [ + 267, + 599, + 312, + 611 + ], + "score": 0.93, + "content": "\\alpha _ { i } \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 598, + 466, + 611 + ], + "score": 1.0, + "content": ". The other term depends on the matrix", + "type": "text" + }, + { + "bbox": [ + 466, + 599, + 502, + 610 + ], + "score": 0.91, + "content": "\\mathbf { U S ^ { 2 } U } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 598, + 506, + 611 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "score": 1.0, + "content": "which is positive definite, and thus pushes the system towards the origin and therefore drives learning.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 588, + 507, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 503, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 625, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 133, + 640 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 626, + 165, + 639 + ], + "score": 0.94, + "content": "\\lambda \\ll s _ { k } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 625, + 196, + 640 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 197, + 627, + 204, + 636 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 625, + 506, + 640 + ], + "score": 1.0, + "content": "is an index over the singular values, the linear term dominates Eq. 9, and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "the fixed point is drawn closer towards the origin. Approximating dynamics with a first order Taylor", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 648, + 363, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 363, + 662 + ], + "score": 1.0, + "content": "expansion around the origin of the second term in Eq. 9, we get", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 625, + 506, + 662 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 663, + 394, + 690 + ], + "lines": [ + { + "bbox": [ + 216, + 663, + 394, + 690 + ], + "spans": [ + { + "bbox": [ + 216, + 663, + 394, + 690 + ], + "score": 0.94, + "content": "\\dot { \\boldsymbol { \\alpha } } \\approx \\eta \\left( - \\log \\boldsymbol { \\alpha } - \\frac { 1 } { \\lambda } \\boldsymbol { \\alpha } \\mathbf { U } \\left( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } \\right) \\mathbf { U } ^ { T } \\right) ,", + "type": "interline_equation", + "image_path": "7b6493933df3c8ef9bb06ba93d55808ed4e62b93b177372ec253fd5fd1ea0125.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 216, + 663, + 394, + 676.5 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 216, + 676.5, + 394, + 690.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 692, + 371, + 705 + ], + "lines": [ + { + "bbox": [ + 105, + 691, + 371, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 343, + 706 + ], + "score": 1.0, + "content": "with stability given by the following theorem with proof in", + "type": "text" + }, + { + "bbox": [ + 343, + 693, + 367, + 703 + ], + "score": 0.26, + "content": "\\mathbf { S M C }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 691, + 371, + 706 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 691, + 371, + 706 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 102, + 72, + 474, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 475, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 426, + 86 + ], + "score": 1.0, + "content": "Theorem 1. Any fixed points of the system in Eq. 10 is attractive in the domain", + "type": "text" + }, + { + "bbox": [ + 426, + 73, + 471, + 85 + ], + "score": 0.92, + "content": "\\alpha _ { i } \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 71, + 475, + 86 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 105, + 91, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 91, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 181, + 105 + ], + "score": 1.0, + "content": "At the fixed point", + "type": "text" + }, + { + "bbox": [ + 182, + 93, + 195, + 102 + ], + "score": 0.87, + "content": "\\ b { \\alpha } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 91, + 506, + 105 + ], + "score": 1.0, + "content": ", corresponding to the optimum of Eq. 8, the feature response of the neural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 189, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 189, + 114 + ], + "score": 1.0, + "content": "network is given by,", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 116, + 346, + 140 + ], + "lines": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "spans": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "score": 0.94, + "content": "\\mathbf { z } ^ { \\ast } = \\frac { 1 } { \\lambda } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\pmb { \\alpha } ^ { \\ast T } .", + "type": "interline_equation", + "image_path": "549dc5ba17cf02f665147738a03d6f8831c87ba1ff282bb600a79b852cd0a2bf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "score": 1.0, + "content": "See App. A for further discussions on the distinction between \"feature space\" and \"parameter space\".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 158, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 170 + ], + "score": 1.0, + "content": "Below, we study how the strength of one feature could impact the response of the network to another", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 169, + 214, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 214, + 180 + ], + "score": 1.0, + "content": "feature which leads to GS.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 251, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 252, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 252, + 201 + ], + "score": 1.0, + "content": "3.3 Gradient Starvation Regime", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "In general, we do not expect to find an analytical solution for the dynamics of the coupled non-linear", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 224 + ], + "score": 1.0, + "content": "dynamical system of Eq. 10. However, there are at least two cases where a decoupled form for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "the dynamics allows to find an exact solution. We first introduce these cases and then study their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 235, + 264, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 264, + 247 + ], + "score": 1.0, + "content": "perturbation to outline general lessons.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 246, + 266 + ], + "score": 1.0, + "content": "1. If the matrix of singular values", + "type": "text" + }, + { + "bbox": [ + 247, + 253, + 259, + 264 + ], + "score": 0.88, + "content": "\\mathbf { S } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "is proportional to the identity: This is the case where all the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 389, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 234, + 279 + ], + "score": 1.0, + "content": "features have the same strength", + "type": "text" + }, + { + "bbox": [ + 234, + 265, + 244, + 275 + ], + "score": 0.87, + "content": "s ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 263, + 389, + 279 + ], + "score": 1.0, + "content": ". The fixed points are then given by,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 278, + 442, + 307 + ], + "lines": [ + { + "bbox": [ + 168, + 278, + 442, + 307 + ], + "spans": [ + { + "bbox": [ + 168, + 278, + 442, + 307 + ], + "score": 0.88, + "content": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } , \\qquad z _ { j } ^ { * } = \\frac { s ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } \\sum _ { i } u _ { i j } ,", + "type": "interline_equation", + "image_path": "98b77c0258faa3e27be5daf90a6da8a0069f4f2a43fbcc1f58fe2437fc1fca7c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 168, + 278, + 442, + 287.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 168, + 287.6666666666667, + 442, + 297.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 168, + 297.33333333333337, + 442, + 307.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 255, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 256, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 133, + 321 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 309, + 145, + 318 + ], + "score": 0.83, + "content": "\\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 307, + 256, + 321 + ], + "score": 1.0, + "content": "is the Lambert W function.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 170, + 333 + ], + "score": 1.0, + "content": "2. If the matrix", + "type": "text" + }, + { + "bbox": [ + 170, + 322, + 181, + 332 + ], + "score": 0.54, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "is a permutation matrix: This is the case in which each feature is associated with a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 332, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 332, + 345 + ], + "score": 1.0, + "content": "single example only. The fixed points are then given by,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 344, + 434, + 371 + ], + "lines": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "spans": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "score": 0.91, + "content": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } , \\ ~ \\ z _ { j } ^ { * } = \\frac { s _ { i } ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } .", + "type": "interline_equation", + "image_path": "e0c865d0cff62eebda44c13f2f2dce5e87a174381ad935ea4d2e463c3721db38.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "score": 1.0, + "content": "To study a minimal case of starvation, we consider a variation of case 2 with the following assumption", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 386, + 430, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 430, + 400 + ], + "score": 1.0, + "content": "which implies that each feature is not associated with a single example anymore.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 189, + 414 + ], + "score": 1.0, + "content": "Lemma 1. Assume", + "type": "text" + }, + { + "bbox": [ + 189, + 401, + 200, + 411 + ], + "score": 0.49, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "is a perturbed identity matrix (a special case of a permutation matrix) in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 384, + 425 + ], + "score": 1.0, + "content": "which the off-diagonal elements are proportional to a small parameter", + "type": "text" + }, + { + "bbox": [ + 384, + 412, + 408, + 422 + ], + "score": 0.89, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ". Then, the fixed point of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 333, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 333, + 436 + ], + "score": 1.0, + "content": "the dynamical system in Eq. 10 can be approximated by,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 437, + 399, + 460 + ], + "lines": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "spans": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "score": 0.93, + "content": "\\begin{array} { r } { { \\pmb \\alpha } ^ { * } = ( 1 - \\log \\left( { \\pmb \\alpha } _ { 0 } ^ { * } \\right) ) \\left[ { \\pmb A } + d i a g \\left( { \\pmb \\alpha } _ { 0 } ^ { * } ^ { - 1 } \\right) \\right] ^ { - 1 } , } \\end{array}", + "type": "interline_equation", + "image_path": "8fa9f2599a45277bd1be8b82fa4f8da6d880d8939947ee6c460201d3668cba86.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 463, + 481, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 481, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 133, + 477 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 462, + 238, + 475 + ], + "score": 0.91, + "content": "\\mathbf { A } = \\lambda ^ { - 1 } \\mathbf { U } ( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } ) \\mathbf { U } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 461, + 257, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 257, + 464, + 270, + 475 + ], + "score": 0.9, + "content": "\\alpha _ { 0 } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 461, + 457, + 477 + ], + "score": 1.0, + "content": "is the fixed point of the uncoupled system with", + "type": "text" + }, + { + "bbox": [ + 457, + 464, + 481, + 473 + ], + "score": 0.9, + "content": "\\delta = 0", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 416, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 416, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 416, + 496 + ], + "score": 1.0, + "content": "For sake of ease of derivations, we consider the two dimensional case where,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 495, + 366, + 524 + ], + "lines": [ + { + "bbox": [ + 244, + 495, + 366, + 524 + ], + "spans": [ + { + "bbox": [ + 244, + 495, + 366, + 524 + ], + "score": 0.95, + "content": "\\mathbf { U } = \\left( \\begin{array} { c c } { \\sqrt { 1 - \\delta ^ { 2 } } } & { - \\delta } \\\\ { \\delta } & { \\sqrt { 1 - \\delta ^ { 2 } } } \\end{array} \\right) ,", + "type": "interline_equation", + "image_path": "9de6cc5547b38c8bd37d7d5238912454a6f380bf100477d622b7d3501d2fe0a4.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 495, + 366, + 509.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 244, + 509.5, + 366, + 524.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 206, + 538 + ], + "score": 1.0, + "content": "which is equivalent to a", + "type": "text" + }, + { + "bbox": [ + 206, + 527, + 215, + 536 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 525, + 498, + 538 + ], + "score": 1.0, + "content": "matrix with two blocks of features with no intra-block coupling and", + "type": "text" + }, + { + "bbox": [ + 498, + 527, + 504, + 536 + ], + "score": 0.73, + "content": "\\delta", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 535, + 235, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 235, + 550 + ], + "score": 1.0, + "content": "amount of inter-block coupling.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Theorem 2 (Gradient Starvation Regime). Consider a neural network in the linear regime, trained", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 385, + 574 + ], + "score": 1.0, + "content": "under cross-entropy loss for a binary classification task. With definition", + "type": "text" + }, + { + "bbox": [ + 386, + 563, + 391, + 572 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ", assuming coupling between", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 315, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 241, + 586 + ], + "score": 1.0, + "content": "features 1 and 2 as in Eq. 15 and", + "type": "text" + }, + { + "bbox": [ + 241, + 572, + 273, + 585 + ], + "score": 0.93, + "content": "s _ { 1 } ^ { 2 } > s _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 572, + 315, + 586 + ], + "score": 1.0, + "content": ", we have,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "interline_equation", + "bbox": [ + 285, + 586, + 325, + 613 + ], + "lines": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "spans": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "score": 0.93, + "content": "\\frac { \\mathrm { d } z _ { 2 } ^ { * } } { \\mathrm { d } s _ { 1 } ^ { 2 } } < 0 ,", + "type": "interline_equation", + "image_path": "eb01860dd49f66eb6704bb2a37eadf192f58b84c650f26d9bcbea94d09dc9b39.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 179, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 181, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 181, + 628 + ], + "score": 1.0, + "content": "which implies GS.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "While Thm. 2 outlines conditions for GS in two dimensional feature space, we note that the same", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "rationale naturally extends to higher dimensions, where GS is defined pairwise over feature directions.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "For a classification task, Thm. 2 indicates that gradient starvation occurs when the data admits", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "different feature strengths, and coupled learning dynamics. GS is thus naturally expected with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "cross-entropy loss. Its detrimental effects however (as outlined in Sect. 2) arise in settings with large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "discrepancies between feature strengths, along with network connectivity that couples these features’", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "directions. This phenomenon readily extends to multi-class settings, and we validate this case with", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 702, + 507, + 717 + ], + "spans": [ + { + "bbox": [ + 104, + 702, + 507, + 717 + ], + "score": 1.0, + "content": "experiments in Sect. 4. Next, we introduce a simple regularizer that encourages feature decoupling,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 714, + 376, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 714, + 376, + 727 + ], + "score": 1.0, + "content": "thus mitigating GS by insulating strong features from weaker ones.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 102, + 72, + 474, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 475, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 426, + 86 + ], + "score": 1.0, + "content": "Theorem 1. Any fixed points of the system in Eq. 10 is attractive in the domain", + "type": "text" + }, + { + "bbox": [ + 426, + 73, + 471, + 85 + ], + "score": 0.92, + "content": "\\alpha _ { i } \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 71, + 475, + 86 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 71, + 475, + 86 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 91, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 91, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 181, + 105 + ], + "score": 1.0, + "content": "At the fixed point", + "type": "text" + }, + { + "bbox": [ + 182, + 93, + 195, + 102 + ], + "score": 0.87, + "content": "\\ b { \\alpha } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 91, + 506, + 105 + ], + "score": 1.0, + "content": ", corresponding to the optimum of Eq. 8, the feature response of the neural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 189, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 189, + 114 + ], + "score": 1.0, + "content": "network is given by,", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 91, + 506, + 114 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 264, + 116, + 346, + 140 + ], + "lines": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "spans": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "score": 0.94, + "content": "\\mathbf { z } ^ { \\ast } = \\frac { 1 } { \\lambda } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\pmb { \\alpha } ^ { \\ast T } .", + "type": "interline_equation", + "image_path": "549dc5ba17cf02f665147738a03d6f8831c87ba1ff282bb600a79b852cd0a2bf.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 264, + 116, + 346, + 140 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 506, + 160 + ], + "score": 1.0, + "content": "See App. A for further discussions on the distinction between \"feature space\" and \"parameter space\".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 158, + 506, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 170 + ], + "score": 1.0, + "content": "Below, we study how the strength of one feature could impact the response of the network to another", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 169, + 214, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 214, + 180 + ], + "score": 1.0, + "content": "feature which leads to GS.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 146, + 506, + 180 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 187, + 251, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 252, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 252, + 201 + ], + "score": 1.0, + "content": "3.3 Gradient Starvation Regime", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "In general, we do not expect to find an analytical solution for the dynamics of the coupled non-linear", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 506, + 224 + ], + "score": 1.0, + "content": "dynamical system of Eq. 10. However, there are at least two cases where a decoupled form for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "the dynamics allows to find an exact solution. We first introduce these cases and then study their", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 235, + 264, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 264, + 247 + ], + "score": 1.0, + "content": "perturbation to outline general lessons.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 202, + 506, + 247 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 246, + 266 + ], + "score": 1.0, + "content": "1. If the matrix of singular values", + "type": "text" + }, + { + "bbox": [ + 247, + 253, + 259, + 264 + ], + "score": 0.88, + "content": "\\mathbf { S } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "is proportional to the identity: This is the case where all the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 263, + 389, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 234, + 279 + ], + "score": 1.0, + "content": "features have the same strength", + "type": "text" + }, + { + "bbox": [ + 234, + 265, + 244, + 275 + ], + "score": 0.87, + "content": "s ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 263, + 389, + 279 + ], + "score": 1.0, + "content": ". The fixed points are then given by,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 253, + 505, + 279 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 278, + 442, + 307 + ], + "lines": [ + { + "bbox": [ + 168, + 278, + 442, + 307 + ], + "spans": [ + { + "bbox": [ + 168, + 278, + 442, + 307 + ], + "score": 0.88, + "content": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } , \\qquad z _ { j } ^ { * } = \\frac { s ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } \\sum _ { i } u _ { i j } ,", + "type": "interline_equation", + "image_path": "98b77c0258faa3e27be5daf90a6da8a0069f4f2a43fbcc1f58fe2437fc1fca7c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 168, + 278, + 442, + 287.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 168, + 287.6666666666667, + 442, + 297.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 168, + 297.33333333333337, + 442, + 307.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 255, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 256, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 133, + 321 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 309, + 145, + 318 + ], + "score": 0.83, + "content": "\\mathcal { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 307, + 256, + 321 + ], + "score": 1.0, + "content": "is the Lambert W function.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 307, + 256, + 321 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 170, + 333 + ], + "score": 1.0, + "content": "2. If the matrix", + "type": "text" + }, + { + "bbox": [ + 170, + 322, + 181, + 332 + ], + "score": 0.54, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 321, + 505, + 333 + ], + "score": 1.0, + "content": "is a permutation matrix: This is the case in which each feature is associated with a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 332, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 332, + 345 + ], + "score": 1.0, + "content": "single example only. The fixed points are then given by,", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 321, + 505, + 345 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 344, + 434, + 371 + ], + "lines": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "spans": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "score": 0.91, + "content": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } , \\ ~ \\ z _ { j } ^ { * } = \\frac { s _ { i } ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } .", + "type": "interline_equation", + "image_path": "e0c865d0cff62eebda44c13f2f2dce5e87a174381ad935ea4d2e463c3721db38.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 177, + 344, + 434, + 371 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 376, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 390 + ], + "score": 1.0, + "content": "To study a minimal case of starvation, we consider a variation of case 2 with the following assumption", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 386, + 430, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 430, + 400 + ], + "score": 1.0, + "content": "which implies that each feature is not associated with a single example anymore.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 375, + 505, + 400 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 189, + 414 + ], + "score": 1.0, + "content": "Lemma 1. Assume", + "type": "text" + }, + { + "bbox": [ + 189, + 401, + 200, + 411 + ], + "score": 0.49, + "content": "\\mathbf { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 400, + 506, + 414 + ], + "score": 1.0, + "content": "is a perturbed identity matrix (a special case of a permutation matrix) in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 384, + 425 + ], + "score": 1.0, + "content": "which the off-diagonal elements are proportional to a small parameter", + "type": "text" + }, + { + "bbox": [ + 384, + 412, + 408, + 422 + ], + "score": 0.89, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ". Then, the fixed point of", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 423, + 333, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 333, + 436 + ], + "score": 1.0, + "content": "the dynamical system in Eq. 10 can be approximated by,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 400, + 506, + 436 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 437, + 399, + 460 + ], + "lines": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "spans": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "score": 0.93, + "content": "\\begin{array} { r } { { \\pmb \\alpha } ^ { * } = ( 1 - \\log \\left( { \\pmb \\alpha } _ { 0 } ^ { * } \\right) ) \\left[ { \\pmb A } + d i a g \\left( { \\pmb \\alpha } _ { 0 } ^ { * } ^ { - 1 } \\right) \\right] ^ { - 1 } , } \\end{array}", + "type": "interline_equation", + "image_path": "8fa9f2599a45277bd1be8b82fa4f8da6d880d8939947ee6c460201d3668cba86.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 210, + 437, + 399, + 460 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 463, + 481, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 481, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 133, + 477 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 462, + 238, + 475 + ], + "score": 0.91, + "content": "\\mathbf { A } = \\lambda ^ { - 1 } \\mathbf { U } ( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } ) \\mathbf { U } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 461, + 257, + 477 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 257, + 464, + 270, + 475 + ], + "score": 0.9, + "content": "\\alpha _ { 0 } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 461, + 457, + 477 + ], + "score": 1.0, + "content": "is the fixed point of the uncoupled system with", + "type": "text" + }, + { + "bbox": [ + 457, + 464, + 481, + 473 + ], + "score": 0.9, + "content": "\\delta = 0", + "type": "inline_equation" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 461, + 481, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 416, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 416, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 416, + 496 + ], + "score": 1.0, + "content": "For sake of ease of derivations, we consider the two dimensional case where,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 481, + 416, + 496 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 495, + 366, + 524 + ], + "lines": [ + { + "bbox": [ + 244, + 495, + 366, + 524 + ], + "spans": [ + { + "bbox": [ + 244, + 495, + 366, + 524 + ], + "score": 0.95, + "content": "\\mathbf { U } = \\left( \\begin{array} { c c } { \\sqrt { 1 - \\delta ^ { 2 } } } & { - \\delta } \\\\ { \\delta } & { \\sqrt { 1 - \\delta ^ { 2 } } } \\end{array} \\right) ,", + "type": "interline_equation", + "image_path": "9de6cc5547b38c8bd37d7d5238912454a6f380bf100477d622b7d3501d2fe0a4.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 495, + 366, + 509.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 244, + 509.5, + 366, + 524.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 206, + 538 + ], + "score": 1.0, + "content": "which is equivalent to a", + "type": "text" + }, + { + "bbox": [ + 206, + 527, + 215, + 536 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 525, + 498, + 538 + ], + "score": 1.0, + "content": "matrix with two blocks of features with no intra-block coupling and", + "type": "text" + }, + { + "bbox": [ + 498, + 527, + 504, + 536 + ], + "score": 0.73, + "content": "\\delta", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 535, + 235, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 235, + 550 + ], + "score": 1.0, + "content": "amount of inter-block coupling.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 525, + 504, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Theorem 2 (Gradient Starvation Regime). Consider a neural network in the linear regime, trained", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 385, + 574 + ], + "score": 1.0, + "content": "under cross-entropy loss for a binary classification task. With definition", + "type": "text" + }, + { + "bbox": [ + 386, + 563, + 391, + 572 + ], + "score": 0.31, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ", assuming coupling between", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 572, + 315, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 241, + 586 + ], + "score": 1.0, + "content": "features 1 and 2 as in Eq. 15 and", + "type": "text" + }, + { + "bbox": [ + 241, + 572, + 273, + 585 + ], + "score": 0.93, + "content": "s _ { 1 } ^ { 2 } > s _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 572, + 315, + 586 + ], + "score": 1.0, + "content": ", we have,", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 550, + 506, + 586 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 285, + 586, + 325, + 613 + ], + "lines": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "spans": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "score": 0.93, + "content": "\\frac { \\mathrm { d } z _ { 2 } ^ { * } } { \\mathrm { d } s _ { 1 } ^ { 2 } } < 0 ,", + "type": "interline_equation", + "image_path": "eb01860dd49f66eb6704bb2a37eadf192f58b84c650f26d9bcbea94d09dc9b39.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 285, + 586, + 325, + 613 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 179, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 181, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 181, + 628 + ], + "score": 1.0, + "content": "which implies GS.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 614, + 181, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 506, + 726 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "While Thm. 2 outlines conditions for GS in two dimensional feature space, we note that the same", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "rationale naturally extends to higher dimensions, where GS is defined pairwise over feature directions.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "For a classification task, Thm. 2 indicates that gradient starvation occurs when the data admits", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "different feature strengths, and coupled learning dynamics. GS is thus naturally expected with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "cross-entropy loss. Its detrimental effects however (as outlined in Sect. 2) arise in settings with large", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "discrepancies between feature strengths, along with network connectivity that couples these features’", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 691, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 705 + ], + "score": 1.0, + "content": "directions. This phenomenon readily extends to multi-class settings, and we validate this case with", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 702, + 507, + 717 + ], + "spans": [ + { + "bbox": [ + 104, + 702, + 507, + 717 + ], + "score": 1.0, + "content": "experiments in Sect. 4. Next, we introduce a simple regularizer that encourages feature decoupling,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 714, + 376, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 714, + 376, + 727 + ], + "score": 1.0, + "content": "thus mitigating GS by insulating strong features from weaker ones.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 626, + 507, + 727 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 217, + 84 + ], + "lines": [ + { + "bbox": [ + 104, + 70, + 218, + 88 + ], + "spans": [ + { + "bbox": [ + 104, + 70, + 218, + 88 + ], + "score": 1.0, + "content": "3.4 Spectral Decoupling", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 87, + 506, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 86, + 506, + 100 + ], + "spans": [ + { + "bbox": [ + 105, + 87, + 435, + 100 + ], + "score": 1.0, + "content": "By tracing back the equations of the previous section, one may realize that the term", + "type": "text" + }, + { + "bbox": [ + 435, + 86, + 470, + 97 + ], + "score": 0.91, + "content": "U ^ { T } S ^ { 2 } U", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 87, + 506, + 100 + ], + "score": 1.0, + "content": "in Eq. 9", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 97, + 506, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 441, + 111 + ], + "score": 1.0, + "content": "is not diagonal in the general case, and consequently introduces coupling between", + "type": "text" + }, + { + "bbox": [ + 441, + 100, + 452, + 109 + ], + "score": 0.85, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 97, + 506, + 111 + ], + "score": 1.0, + "content": "’s and hence,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 108, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 190, + 122 + ], + "score": 1.0, + "content": "between the features", + "type": "text" + }, + { + "bbox": [ + 190, + 110, + 199, + 120 + ], + "score": 0.84, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 108, + 506, + 122 + ], + "score": 1.0, + "content": "’s. We would like to discourage solutions that couple features in this way. To", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 119, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 506, + 133 + ], + "score": 1.0, + "content": "that end, we introduce a simple regularizer: Spectral Decoupling (SD). SD replaces the general L2", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 131, + 473, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 473, + 144 + ], + "score": 1.0, + "content": "weight decay term in Eq. 5 with an L2 penalty exclusively on the network’s logits, yielding", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 148, + 396, + 172 + ], + "lines": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "spans": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "score": 0.93, + "content": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\hat { \\mathbf { y } } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "667d8d75f123706917f09a16b18d21a9cfec7849204eccab3bd7bfc0643fc034.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Repeating the same analysis steps taken above, but with SD instead of general L2 penalty, the critical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 144, + 207 + ], + "score": 1.0, + "content": "value for", + "type": "text" + }, + { + "bbox": [ + 144, + 194, + 155, + 204 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 191, + 194, + 207 + ], + "score": 1.0, + "content": "becomes", + "type": "text" + }, + { + "bbox": [ + 195, + 193, + 295, + 207 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\pmb { \\theta } ^ { \\ast } = \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\pmb { Y } \\pmb { \\Phi } _ { 0 } V \\mathbf { S } ^ { - 2 } V ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 191, + 398, + 207 + ], + "score": 1.0, + "content": ". This new expression for", + "type": "text" + }, + { + "bbox": [ + 398, + 194, + 409, + 204 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 191, + 506, + 207 + ], + "score": 1.0, + "content": "results in the following", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 205, + 197, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 197, + 217 + ], + "score": 1.0, + "content": "modification of Eq. 9,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 221, + 443, + 249 + ], + "lines": [ + { + "bbox": [ + 167, + 221, + 443, + 249 + ], + "spans": [ + { + "bbox": [ + 167, + 221, + 443, + 249 + ], + "score": 0.95, + "content": "\\dot { \\alpha } = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { S } ^ { - 2 } \\mathbf { U } ^ { T } \\right) = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\right) ,", + "type": "interline_equation", + "image_path": "68a2d032bcac738170f007b41002800aacdfe5bc977cfba3c129ee0055126fc4.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 167, + 221, + 443, + 230.33333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 167, + 230.33333333333334, + 443, + 239.66666666666669 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 167, + 239.66666666666669, + 443, + 249.00000000000003 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 432, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 430, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 421, + 268 + ], + "score": 1.0, + "content": "where as earlier, log and division are taken element-wise on the coordinates of", + "type": "text" + }, + { + "bbox": [ + 421, + 257, + 430, + 265 + ], + "score": 0.77, + "content": "_ { \\pmb { \\alpha } }", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 506, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 376, + 284 + ], + "score": 1.0, + "content": "Note that in contrast to Eq. 9 the matrix multiplication involving", + "type": "text" + }, + { + "bbox": [ + 376, + 271, + 385, + 281 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 271, + 405, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 271, + 413, + 281 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "in Eq. 18 cancels out,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 138, + 295 + ], + "score": 1.0, + "content": "leaving", + "type": "text" + }, + { + "bbox": [ + 139, + 284, + 150, + 293 + ], + "score": 0.84, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 282, + 238, + 295 + ], + "score": 1.0, + "content": "independent of other", + "type": "text" + }, + { + "bbox": [ + 239, + 283, + 259, + 295 + ], + "score": 0.81, + "content": "\\alpha _ { j \\neq i }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "’s. We point out this is true for any initial coupling, without", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "simplifying assumptions. Thus, a simple penalty on output weights promotes decoupled dynamics", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 216, + 316 + ], + "score": 1.0, + "content": "across the dual parameter", + "type": "text" + }, + { + "bbox": [ + 216, + 305, + 227, + 315 + ], + "score": 0.83, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "’s, which track learning dynamics of feature responses (see Eq. 7).", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "Together with Thm. 2, Eq. 18 suggests SD should mitigate GS and promote balanced learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "dynamics across features. We now verify this in numerical experiments. For further intuition, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 337, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 348 + ], + "score": 1.0, + "content": "provide a simple experiment, summarized in Fig. 5, where directly visualizes the primal vs. the dual", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 348, + 407, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 407, + 360 + ], + "score": 1.0, + "content": "dynamics as well as the effect of the proposed spectral decoupling method.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 106, + 367, + 192, + 380 + ], + "lines": [ + { + "bbox": [ + 104, + 364, + 193, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 193, + 385 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 507, + 396 + ], + "score": 1.0, + "content": "The experiments presented here are designed to outline the presence of GS and its consequences,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "as well as the efficacy of our proposed regularization method to alleviate them. Consequently, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "highlight that achieving state-of-the-art results is not the objective. For more details including the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 416, + 301, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 301, + 429 + ], + "score": 1.0, + "content": "scheme for hyper-parameter tuning, see App. B.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 435, + 301, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 302, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 302, + 448 + ], + "score": 1.0, + "content": "4.1 Two-Moon classification and the margin", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 463 + ], + "score": 1.0, + "content": "Recall the simple 2-D classification task between red and blue data points in Fig. 1. Fig. 1 (c)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "demonstrates the learned decision boundary when SD is used. SD leads to learning a curved decision", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "boundary with a larger margin in the input space. See App. B for additional details and experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 106, + 491, + 335, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 336, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 336, + 505 + ], + "score": 1.0, + "content": "4.2 CIFAR classification and adversarial robustness", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "To study the classification margin in deeper networks, we conduct a classification experiment on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "CIFAR-10, CIFAR-100, and CIFAR-2 (cats vs dogs of CIFAR-10) [57] using a convolutional network", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "with ReLU non-linearity. Unlike linear models, the margin to a non-linear decision boundary cannot", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "be computed analytically. Therefore, following the approach in [72], we use \"the norm of input-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "disturbance required to cross the decision boundary\" as a proxy for the margin. The disturbance on", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 560, + 497, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 497, + 573 + ], + "score": 1.0, + "content": "the input is computed by projected gradient descent (PGD) [84], a well-known adversarial attack.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "table", + "bbox": [ + 118, + 585, + 288, + 667 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 585, + 288, + 667 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 585, + 288, + 667 + ], + "spans": [ + { + "bbox": [ + 118, + 585, + 288, + 667 + ], + "score": 0.972, + "html": "
DatasetMethodTrain*Test IIDTest OOD†
Cifar-2w/o SD100.0% ±0.0 95.2%±0.1242.3% ±3.0
w/ SD(a=0.01)100.0%±0.0 95.3%±0.1769.7% ± 2.9
Cifar-10w/o SD99.9% ± 0.0192.8%±0.1530.1% ± 2.1
w/ SD(=0.01)99.9%±0.01 92.9% ±0.1667.7% ± 1.5
Cifar-100w/o SD99.7% ± 0.01 69.2% ±0.2914.3% ± 2.0
w/SD(a=0.05)99.7%±0.0270.5%±0.2624.9% ± 1.9
", + "type": "table", + "image_path": "59ad244bda678ccb8b333279b7223137c9e150f7bbe6db0ba4d75041a0f65e54.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 118, + 585, + 288, + 598.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 118, + 598.6666666666666, + 288, + 612.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 118, + 612.3333333333333, + 288, + 625.9999999999999 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 118, + 625.9999999999999, + 288, + 639.6666666666665 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 118, + 639.6666666666665, + 288, + 653.3333333333331 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 653.3333333333331, + 288, + 666.9999999999998 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 121, + 670, + 207, + 678 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 670, + 207, + 680 + ], + "spans": [ + { + "bbox": [ + 121, + 670, + 207, + 680 + ], + "score": 1.0, + "content": "† Accuracy (± std) for 10 runs.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "table_caption", + "bbox": [ + 106, + 684, + 302, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 684, + 303, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 303, + 694 + ], + "score": 1.0, + "content": "Table 1: Table compares adversarial robustness of ERM", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 693, + 304, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 304, + 704 + ], + "score": 1.0, + "content": "(vanilla cross-entropy) vs SD with a CNN trained on", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 703, + 303, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 303, + 715 + ], + "score": 1.0, + "content": "CIFAR-2, 10, and 100 (setup of [72]). SD consistently", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 712, + 241, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 241, + 725 + ], + "score": 1.0, + "content": "achieves a better OOD performance.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 51.5 + } + ], + "index": 44 + }, + { + "type": "image", + "bbox": [ + 318, + 578, + 491, + 680 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 318, + 578, + 491, + 680 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 318, + 578, + 491, + 680 + ], + "spans": [ + { + "bbox": [ + 318, + 578, + 491, + 680 + ], + "score": 0.97, + "type": "image", + "image_path": "bf195fd7cc5efdd1fa50f433f2b3afcfca326e622b21c20b2e591316e226f770.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 318, + 578, + 491, + 592.5714285714286 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 318, + 592.5714285714286, + 491, + 607.1428571428571 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 318, + 607.1428571428571, + 491, + 621.7142857142857 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 318, + 621.7142857142857, + 491, + 636.2857142857142 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 318, + 636.2857142857142, + 491, + 650.8571428571428 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 318, + 650.8571428571428, + 491, + 665.4285714285713 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 318, + 665.4285714285713, + 491, + 679.9999999999999 + ], + "spans": [], + "index": 55 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 308, + 684, + 505, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 308, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 308, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "Figure 2: The plot shows the cumulative distribution", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 307, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 307, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "function (CDF) of the margin for the CIFAR-2 binary", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 308, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 308, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "classification. SD appears to improve the margin con-", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 308, + 712, + 346, + 726 + ], + "spans": [ + { + "bbox": [ + 308, + 712, + 346, + 726 + ], + "score": 1.0, + "content": "siderably.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 57.5 + } + ], + "index": 53.25 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 73, + 217, + 84 + ], + "lines": [ + { + "bbox": [ + 104, + 70, + 218, + 88 + ], + "spans": [ + { + "bbox": [ + 104, + 70, + 218, + 88 + ], + "score": 1.0, + "content": "3.4 Spectral Decoupling", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 87, + 506, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 86, + 506, + 100 + ], + "spans": [ + { + "bbox": [ + 105, + 87, + 435, + 100 + ], + "score": 1.0, + "content": "By tracing back the equations of the previous section, one may realize that the term", + "type": "text" + }, + { + "bbox": [ + 435, + 86, + 470, + 97 + ], + "score": 0.91, + "content": "U ^ { T } S ^ { 2 } U", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 87, + 506, + 100 + ], + "score": 1.0, + "content": "in Eq. 9", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 97, + 506, + 111 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 441, + 111 + ], + "score": 1.0, + "content": "is not diagonal in the general case, and consequently introduces coupling between", + "type": "text" + }, + { + "bbox": [ + 441, + 100, + 452, + 109 + ], + "score": 0.85, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 97, + 506, + 111 + ], + "score": 1.0, + "content": "’s and hence,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 108, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 190, + 122 + ], + "score": 1.0, + "content": "between the features", + "type": "text" + }, + { + "bbox": [ + 190, + 110, + 199, + 120 + ], + "score": 0.84, + "content": "z _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 108, + 506, + 122 + ], + "score": 1.0, + "content": "’s. We would like to discourage solutions that couple features in this way. To", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 119, + 506, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 506, + 133 + ], + "score": 1.0, + "content": "that end, we introduce a simple regularizer: Spectral Decoupling (SD). SD replaces the general L2", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 131, + 473, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 473, + 144 + ], + "score": 1.0, + "content": "weight decay term in Eq. 5 with an L2 penalty exclusively on the network’s logits, yielding", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 86, + 506, + 144 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 148, + 396, + 172 + ], + "lines": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "spans": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "score": 0.93, + "content": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\hat { \\mathbf { y } } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "667d8d75f123706917f09a16b18d21a9cfec7849204eccab3bd7bfc0643fc034.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 216, + 148, + 396, + 172 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Repeating the same analysis steps taken above, but with SD instead of general L2 penalty, the critical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 191, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 144, + 207 + ], + "score": 1.0, + "content": "value for", + "type": "text" + }, + { + "bbox": [ + 144, + 194, + 155, + 204 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 191, + 194, + 207 + ], + "score": 1.0, + "content": "becomes", + "type": "text" + }, + { + "bbox": [ + 195, + 193, + 295, + 207 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\pmb { \\theta } ^ { \\ast } = \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\pmb { Y } \\pmb { \\Phi } _ { 0 } V \\mathbf { S } ^ { - 2 } V ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 191, + 398, + 207 + ], + "score": 1.0, + "content": ". This new expression for", + "type": "text" + }, + { + "bbox": [ + 398, + 194, + 409, + 204 + ], + "score": 0.87, + "content": "\\pmb { \\theta } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 191, + 506, + 207 + ], + "score": 1.0, + "content": "results in the following", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 205, + 197, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 197, + 217 + ], + "score": 1.0, + "content": "modification of Eq. 9,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 182, + 506, + 217 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 167, + 221, + 443, + 249 + ], + "lines": [ + { + "bbox": [ + 167, + 221, + 443, + 249 + ], + "spans": [ + { + "bbox": [ + 167, + 221, + 443, + 249 + ], + "score": 0.95, + "content": "\\dot { \\alpha } = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { S } ^ { - 2 } \\mathbf { U } ^ { T } \\right) = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\right) ,", + "type": "interline_equation", + "image_path": "68a2d032bcac738170f007b41002800aacdfe5bc977cfba3c129ee0055126fc4.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 167, + 221, + 443, + 230.33333333333334 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 167, + 230.33333333333334, + 443, + 239.66666666666669 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 167, + 239.66666666666669, + 443, + 249.00000000000003 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 432, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 430, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 421, + 268 + ], + "score": 1.0, + "content": "where as earlier, log and division are taken element-wise on the coordinates of", + "type": "text" + }, + { + "bbox": [ + 421, + 257, + 430, + 265 + ], + "score": 0.77, + "content": "_ { \\pmb { \\alpha } }", + "type": "inline_equation" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 253, + 430, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 270, + 506, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 376, + 284 + ], + "score": 1.0, + "content": "Note that in contrast to Eq. 9 the matrix multiplication involving", + "type": "text" + }, + { + "bbox": [ + 376, + 271, + 385, + 281 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 271, + 405, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 405, + 271, + 413, + 281 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "in Eq. 18 cancels out,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 138, + 295 + ], + "score": 1.0, + "content": "leaving", + "type": "text" + }, + { + "bbox": [ + 139, + 284, + 150, + 293 + ], + "score": 0.84, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 282, + 238, + 295 + ], + "score": 1.0, + "content": "independent of other", + "type": "text" + }, + { + "bbox": [ + 239, + 283, + 259, + 295 + ], + "score": 0.81, + "content": "\\alpha _ { j \\neq i }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "’s. We point out this is true for any initial coupling, without", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "simplifying assumptions. Thus, a simple penalty on output weights promotes decoupled dynamics", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 216, + 316 + ], + "score": 1.0, + "content": "across the dual parameter", + "type": "text" + }, + { + "bbox": [ + 216, + 305, + 227, + 315 + ], + "score": 0.83, + "content": "\\alpha _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "’s, which track learning dynamics of feature responses (see Eq. 7).", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "Together with Thm. 2, Eq. 18 suggests SD should mitigate GS and promote balanced learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "dynamics across features. We now verify this in numerical experiments. For further intuition, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 337, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 348 + ], + "score": 1.0, + "content": "provide a simple experiment, summarized in Fig. 5, where directly visualizes the primal vs. the dual", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 348, + 407, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 407, + 360 + ], + "score": 1.0, + "content": "dynamics as well as the effect of the proposed spectral decoupling method.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 271, + 506, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 367, + 192, + 380 + ], + "lines": [ + { + "bbox": [ + 104, + 364, + 193, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 364, + 193, + 385 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 383, + 507, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 507, + 396 + ], + "score": 1.0, + "content": "The experiments presented here are designed to outline the presence of GS and its consequences,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "as well as the efficacy of our proposed regularization method to alleviate them. Consequently, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "highlight that achieving state-of-the-art results is not the objective. For more details including the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 416, + 301, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 301, + 429 + ], + "score": 1.0, + "content": "scheme for hyper-parameter tuning, see App. B.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 383, + 507, + 429 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 435, + 301, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 302, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 302, + 448 + ], + "score": 1.0, + "content": "4.1 Two-Moon classification and the margin", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 463 + ], + "score": 1.0, + "content": "Recall the simple 2-D classification task between red and blue data points in Fig. 1. Fig. 1 (c)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "demonstrates the learned decision boundary when SD is used. SD leads to learning a curved decision", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "boundary with a larger margin in the input space. See App. B for additional details and experiments.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 448, + 506, + 485 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 491, + 335, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 490, + 336, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 336, + 505 + ], + "score": 1.0, + "content": "4.2 CIFAR classification and adversarial robustness", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "To study the classification margin in deeper networks, we conduct a classification experiment on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 529 + ], + "score": 1.0, + "content": "CIFAR-10, CIFAR-100, and CIFAR-2 (cats vs dogs of CIFAR-10) [57] using a convolutional network", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 540 + ], + "score": 1.0, + "content": "with ReLU non-linearity. Unlike linear models, the margin to a non-linear decision boundary cannot", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "be computed analytically. Therefore, following the approach in [72], we use \"the norm of input-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "disturbance required to cross the decision boundary\" as a proxy for the margin. The disturbance on", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 560, + 497, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 497, + 573 + ], + "score": 1.0, + "content": "the input is computed by projected gradient descent (PGD) [84], a well-known adversarial attack.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 505, + 506, + 573 + ] + }, + { + "type": "table", + "bbox": [ + 118, + 585, + 288, + 667 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 118, + 585, + 288, + 667 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 585, + 288, + 667 + ], + "spans": [ + { + "bbox": [ + 118, + 585, + 288, + 667 + ], + "score": 0.972, + "html": "
DatasetMethodTrain*Test IIDTest OOD†
Cifar-2w/o SD100.0% ±0.0 95.2%±0.1242.3% ±3.0
w/ SD(a=0.01)100.0%±0.0 95.3%±0.1769.7% ± 2.9
Cifar-10w/o SD99.9% ± 0.0192.8%±0.1530.1% ± 2.1
w/ SD(=0.01)99.9%±0.01 92.9% ±0.1667.7% ± 1.5
Cifar-100w/o SD99.7% ± 0.01 69.2% ±0.2914.3% ± 2.0
w/SD(a=0.05)99.7%±0.0270.5%±0.2624.9% ± 1.9
", + "type": "table", + "image_path": "59ad244bda678ccb8b333279b7223137c9e150f7bbe6db0ba4d75041a0f65e54.jpg" + } + ] + } + ], + "index": 40.5, + "virtual_lines": [ + { + "bbox": [ + 118, + 585, + 288, + 598.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 118, + 598.6666666666666, + 288, + 612.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 118, + 612.3333333333333, + 288, + 625.9999999999999 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 118, + 625.9999999999999, + 288, + 639.6666666666665 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 118, + 639.6666666666665, + 288, + 653.3333333333331 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 118, + 653.3333333333331, + 288, + 666.9999999999998 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 121, + 670, + 207, + 678 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 670, + 207, + 680 + ], + "spans": [ + { + "bbox": [ + 121, + 670, + 207, + 680 + ], + "score": 1.0, + "content": "† Accuracy (± std) for 10 runs.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "table_caption", + "bbox": [ + 106, + 684, + 302, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 684, + 303, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 684, + 303, + 694 + ], + "score": 1.0, + "content": "Table 1: Table compares adversarial robustness of ERM", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 693, + 304, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 304, + 704 + ], + "score": 1.0, + "content": "(vanilla cross-entropy) vs SD with a CNN trained on", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 703, + 303, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 703, + 303, + 715 + ], + "score": 1.0, + "content": "CIFAR-2, 10, and 100 (setup of [72]). SD consistently", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 712, + 241, + 725 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 241, + 725 + ], + "score": 1.0, + "content": "achieves a better OOD performance.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 51.5 + } + ], + "index": 44 + }, + { + "type": "image", + "bbox": [ + 318, + 578, + 491, + 680 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 318, + 578, + 491, + 680 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 318, + 578, + 491, + 680 + ], + "spans": [ + { + "bbox": [ + 318, + 578, + 491, + 680 + ], + "score": 0.97, + "type": "image", + "image_path": "bf195fd7cc5efdd1fa50f433f2b3afcfca326e622b21c20b2e591316e226f770.jpg" + } + ] + } + ], + "index": 49, + "virtual_lines": [ + { + "bbox": [ + 318, + 578, + 491, + 592.5714285714286 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 318, + 592.5714285714286, + 491, + 607.1428571428571 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 318, + 607.1428571428571, + 491, + 621.7142857142857 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 318, + 621.7142857142857, + 491, + 636.2857142857142 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 318, + 636.2857142857142, + 491, + 650.8571428571428 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 318, + 650.8571428571428, + 491, + 665.4285714285713 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 318, + 665.4285714285713, + 491, + 679.9999999999999 + ], + "spans": [], + "index": 55 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 308, + 684, + 505, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 308, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 308, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "Figure 2: The plot shows the cumulative distribution", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 307, + 692, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 307, + 692, + 505, + 705 + ], + "score": 1.0, + "content": "function (CDF) of the margin for the CIFAR-2 binary", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 308, + 703, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 308, + 703, + 506, + 715 + ], + "score": 1.0, + "content": "classification. SD appears to improve the margin con-", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 308, + 712, + 346, + 726 + ], + "spans": [ + { + "bbox": [ + 308, + 712, + 346, + 726 + ], + "score": 1.0, + "content": "siderably.", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 57.5 + } + ], + "index": 53.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 448, + 86 + ], + "score": 1.0, + "content": "Table 1 includes the results for IID (original test set) and OOD (perturbed test set by", + "type": "text" + }, + { + "bbox": [ + 449, + 73, + 501, + 84 + ], + "score": 0.86, + "content": "\\epsilon _ { \\mathrm { P G D } } = 0 . 0 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 72, + 506, + 86 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "Fig. 2 shows the percentange of mis-classifications as the norm of disturbance is increased for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "the Cifar-2 dataset. This plot can be interpreted as the cumulative distribution function (CDF) of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "score": 1.0, + "content": "the margin and hence a lower curve reads as a more robust network with a larger margin. This", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "score": 1.0, + "content": "experiment suggests that when trained with vanilla cross-entropy, even slight disturbances in the input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "deteriorates the network’s classification accuracy. That is while spectral decoupling (SD) improves", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "the margin considerably. Importantly, this improvement in robustness does not seem to compromise", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "the noise-free test performance. It should also be highlighted that SD does not explicitly aim at", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 158, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 104, + 158, + 506, + 174 + ], + "score": 1.0, + "content": "maximizing the margin and the observed improvement is in fact a by-product of decoupled learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "of latent features. See Section 5 for a discussion on why cross-entropy results in a poor margin while", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 182, + 358, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 358, + 195 + ], + "score": 1.0, + "content": "being considered a max-margin classifier in the literature [94].", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 199, + 264, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 266, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 266, + 213 + ], + "score": 1.0, + "content": "4.3 Colored MNIST with color bias", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "We conduct experiments on the Colored MNIST Dataset, proposed in [9]. The task is to predict", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 161, + 237 + ], + "score": 1.0, + "content": "binary labels", + "type": "text" + }, + { + "bbox": [ + 161, + 226, + 194, + 236 + ], + "score": 0.92, + "content": "y = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 225, + 277, + 237 + ], + "score": 1.0, + "content": "for digits 0 to 4 and", + "type": "text" + }, + { + "bbox": [ + 277, + 226, + 309, + 236 + ], + "score": 0.92, + "content": "y = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "for digits 5 to 9. A color channel (red, green) is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 234, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 249 + ], + "score": 1.0, + "content": "artificially added to each example to deliberately impose a spurious correlation between the color and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 246, + 280, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 280, + 259 + ], + "score": 1.0, + "content": "the label. The task has three environments:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 102, + 258, + 464, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 403, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 403, + 272 + ], + "score": 1.0, + "content": "• Training env. 1: Color is correlated with the labels with 0.9 probability.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 270, + 403, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 403, + 283 + ], + "score": 1.0, + "content": "• Training env. 2: Color is correlated with the labels with 0.8 probability.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 466, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 466, + 295 + ], + "score": 1.0, + "content": "• Testing env.: Color is correlated with the labels with 0.1 probability (0.9 reversely corre", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 296, + 502, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Because of the opposite correlation between the color and the label in the test set, only learning to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "classify based on color would be disastrous at testing. For this reason, Empirical Risk Minimization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 318, + 435, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 283, + 331 + ], + "score": 1.0, + "content": "(ERM) performs very poorly on the test set", + "type": "text" + }, + { + "bbox": [ + 283, + 318, + 314, + 329 + ], + "score": 0.81, + "content": "( 2 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 318, + 435, + 331 + ], + "score": 1.0, + "content": "accuracy) as shown in Tab. 2.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "table", + "bbox": [ + 187, + 333, + 421, + 414 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 187, + 333, + 421, + 414 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 333, + 421, + 414 + ], + "spans": [ + { + "bbox": [ + 187, + 333, + 421, + 414 + ], + "score": 0.974, + "html": "
MethodTrain AccuracyTest Accuracy
ERM(Vanilla Cross-Entropy)91.1 % (±0.4)23.7 % (±0.8)
REx[59]71.5 % (±1.0)68.7% (±0.9)
IRM[9]70.5% (±0.6)67.1 % (±1.4)
SD (this work)70.0 % (±0.9)68.4% (±1.2)
Oracle - (grayscale images)73.5 % (±0.2)73.0 % (±0.4)
RandomGuess50%50%
", + "type": "table", + "image_path": "f545e9e1e56bd9753ffa30a0f1940f5e39427e997d76d348e8e8cf7e4edd63c5.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 333, + 421, + 346.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 187, + 346.5, + 421, + 360.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 187, + 360.0, + 421, + 373.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 187, + 373.5, + 421, + 387.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 187, + 387.0, + 421, + 400.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 187, + 400.5, + 421, + 414.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "Table 2: Test accuracy on test examples of the Colored MNIST after training for 1k epochs. The standard", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "deviation over 10 runs is reported in parenthesis. ERM stands for the empirical risk minimization. Oracle is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 296, + 454 + ], + "score": 1.0, + "content": "ERM trained on grayscale images. Note that due to", + "type": "text" + }, + { + "bbox": [ + 297, + 442, + 317, + 452 + ], + "score": 0.85, + "content": "25 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 442, + 484, + 454 + ], + "score": 1.0, + "content": "label noise, a hypothetical optimum achieves", + "type": "text" + }, + { + "bbox": [ + 484, + 442, + 505, + 452 + ], + "score": 0.82, + "content": "75 \\%", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 452, + 209, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 209, + 464 + ], + "score": 1.0, + "content": "accuracy (the upper bound).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 473, + 478 + ], + "score": 1.0, + "content": "Invariant Risk Minimization (IRM) [9] on the other hand, performs well on the test set with", + "type": "text" + }, + { + "bbox": [ + 473, + 465, + 505, + 476 + ], + "score": 0.83, + "content": "( 6 7 . 1 \\%", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "accuracy). However, IRM requires access to multiple (two in this case) separate training environments", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "with varying amount of spurious correlations. IRM uses the variance between environments as a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "signal for learning to be “invariant” to spurious correlations. Risk Extrapolation (REx) [59] is a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "related training method that encourages learning invariant representations. Similar to IRM, it requires", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 520, + 463, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 463, + 532 + ], + "score": 1.0, + "content": "access to multiple training environments in order to quantify the concept of “invariance”.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 536, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 221, + 548 + ], + "score": 1.0, + "content": "SD achieves an accuracy of", + "type": "text" + }, + { + "bbox": [ + 221, + 536, + 252, + 547 + ], + "score": 0.85, + "content": "6 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 536, + 505, + 548 + ], + "score": 1.0, + "content": ". Its performance is remarkable because unlike IRM and REx,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "SD does not require access to multiple environments and yet performs well when trained on a single", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 425, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 425, + 571 + ], + "score": 1.0, + "content": "environment (in this case the aggregation of both of the training environments).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "A natural question that arises is “How does SD learn to ignore the color feature without having", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "access to multiple environments?” The short answer is that it does not! In fact, we argue that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "SD learns the color feature but it also learns other predictive features, i.e., the digit shape features.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 619 + ], + "score": 1.0, + "content": "At test time, the predictions resulting from the shape features prevail over the color feature. To", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "validate this hypothesis, we study a trained model with each of these methods (ERM, IRM, SD)", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "on four variants of the test environment: 1) grayscale-digits: No color channel is provided and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "network should rely on shape features only. 2) colored-digits: Both color and digit are provided", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "score": 1.0, + "content": "however the color is negatively correlated (opposite of the training set) with the label. 3) grayscale-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "blank: All images are grayscale and blank and hence do not provide any information. 4) colored-blank:", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "score": 1.0, + "content": "Digit features are removed and only the color feature is kept, also with reverse label compared to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 683, + 397, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 397, + 696 + ], + "score": 1.0, + "content": "training. Fig. 3 summarizes the results. For more discussions see SM B.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "As a final remark, we should highlight that, by design, this task assumes access to the test environment", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "for hyperparameter tuning for all the reported methods. This is not a valid assumption in general, and", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 52.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 505, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 448, + 86 + ], + "score": 1.0, + "content": "Table 1 includes the results for IID (original test set) and OOD (perturbed test set by", + "type": "text" + }, + { + "bbox": [ + 449, + 73, + 501, + 84 + ], + "score": 0.86, + "content": "\\epsilon _ { \\mathrm { P G D } } = 0 . 0 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 72, + 506, + 86 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "Fig. 2 shows the percentange of mis-classifications as the norm of disturbance is increased for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "the Cifar-2 dataset. This plot can be interpreted as the cumulative distribution function (CDF) of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 118 + ], + "score": 1.0, + "content": "the margin and hence a lower curve reads as a more robust network with a larger margin. This", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 130 + ], + "score": 1.0, + "content": "experiment suggests that when trained with vanilla cross-entropy, even slight disturbances in the input", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 140 + ], + "score": 1.0, + "content": "deteriorates the network’s classification accuracy. That is while spectral decoupling (SD) improves", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "score": 1.0, + "content": "the margin considerably. Importantly, this improvement in robustness does not seem to compromise", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "the noise-free test performance. It should also be highlighted that SD does not explicitly aim at", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 158, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 104, + 158, + 506, + 174 + ], + "score": 1.0, + "content": "maximizing the margin and the observed improvement is in fact a by-product of decoupled learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 183 + ], + "score": 1.0, + "content": "of latent features. See Section 5 for a discussion on why cross-entropy results in a poor margin while", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 182, + 358, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 358, + 195 + ], + "score": 1.0, + "content": "being considered a max-margin classifier in the literature [94].", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 72, + 506, + 195 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 199, + 264, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 199, + 266, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 266, + 213 + ], + "score": 1.0, + "content": "4.3 Colored MNIST with color bias", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 227 + ], + "score": 1.0, + "content": "We conduct experiments on the Colored MNIST Dataset, proposed in [9]. The task is to predict", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 161, + 237 + ], + "score": 1.0, + "content": "binary labels", + "type": "text" + }, + { + "bbox": [ + 161, + 226, + 194, + 236 + ], + "score": 0.92, + "content": "y = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 225, + 277, + 237 + ], + "score": 1.0, + "content": "for digits 0 to 4 and", + "type": "text" + }, + { + "bbox": [ + 277, + 226, + 309, + 236 + ], + "score": 0.92, + "content": "y = + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "for digits 5 to 9. A color channel (red, green) is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 234, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 249 + ], + "score": 1.0, + "content": "artificially added to each example to deliberately impose a spurious correlation between the color and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 246, + 280, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 280, + 259 + ], + "score": 1.0, + "content": "the label. The task has three environments:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 213, + 505, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 258, + 464, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 403, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 403, + 272 + ], + "score": 1.0, + "content": "• Training env. 1: Color is correlated with the labels with 0.9 probability.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 270, + 403, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 403, + 283 + ], + "score": 1.0, + "content": "• Training env. 2: Color is correlated with the labels with 0.8 probability.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 280, + 466, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 466, + 295 + ], + "score": 1.0, + "content": "• Testing env.: Color is correlated with the labels with 0.1 probability (0.9 reversely corre", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 257, + 466, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 296, + 502, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Because of the opposite correlation between the color and the label in the test set, only learning to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "classify based on color would be disastrous at testing. For this reason, Empirical Risk Minimization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 318, + 435, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 283, + 331 + ], + "score": 1.0, + "content": "(ERM) performs very poorly on the test set", + "type": "text" + }, + { + "bbox": [ + 283, + 318, + 314, + 329 + ], + "score": 0.81, + "content": "( 2 3 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 318, + 435, + 331 + ], + "score": 1.0, + "content": "accuracy) as shown in Tab. 2.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 295, + 505, + 331 + ] + }, + { + "type": "table", + "bbox": [ + 187, + 333, + 421, + 414 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 187, + 333, + 421, + 414 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 333, + 421, + 414 + ], + "spans": [ + { + "bbox": [ + 187, + 333, + 421, + 414 + ], + "score": 0.974, + "html": "
MethodTrain AccuracyTest Accuracy
ERM(Vanilla Cross-Entropy)91.1 % (±0.4)23.7 % (±0.8)
REx[59]71.5 % (±1.0)68.7% (±0.9)
IRM[9]70.5% (±0.6)67.1 % (±1.4)
SD (this work)70.0 % (±0.9)68.4% (±1.2)
Oracle - (grayscale images)73.5 % (±0.2)73.0 % (±0.4)
RandomGuess50%50%
", + "type": "table", + "image_path": "f545e9e1e56bd9753ffa30a0f1940f5e39427e997d76d348e8e8cf7e4edd63c5.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 333, + 421, + 346.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 187, + 346.5, + 421, + 360.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 187, + 360.0, + 421, + 373.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 187, + 373.5, + 421, + 387.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 187, + 387.0, + 421, + 400.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 187, + 400.5, + 421, + 414.0 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 434 + ], + "score": 1.0, + "content": "Table 2: Test accuracy on test examples of the Colored MNIST after training for 1k epochs. The standard", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 506, + 445 + ], + "score": 1.0, + "content": "deviation over 10 runs is reported in parenthesis. ERM stands for the empirical risk minimization. Oracle is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 296, + 454 + ], + "score": 1.0, + "content": "ERM trained on grayscale images. Note that due to", + "type": "text" + }, + { + "bbox": [ + 297, + 442, + 317, + 452 + ], + "score": 0.85, + "content": "25 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 442, + 484, + 454 + ], + "score": 1.0, + "content": "label noise, a hypothetical optimum achieves", + "type": "text" + }, + { + "bbox": [ + 484, + 442, + 505, + 452 + ], + "score": 0.82, + "content": "75 \\%", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 452, + 209, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 209, + 464 + ], + "score": 1.0, + "content": "accuracy (the upper bound).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 422, + 506, + 464 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 473, + 478 + ], + "score": 1.0, + "content": "Invariant Risk Minimization (IRM) [9] on the other hand, performs well on the test set with", + "type": "text" + }, + { + "bbox": [ + 473, + 465, + 505, + 476 + ], + "score": 0.83, + "content": "( 6 7 . 1 \\%", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 488 + ], + "score": 1.0, + "content": "accuracy). However, IRM requires access to multiple (two in this case) separate training environments", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "with varying amount of spurious correlations. IRM uses the variance between environments as a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 510 + ], + "score": 1.0, + "content": "signal for learning to be “invariant” to spurious correlations. Risk Extrapolation (REx) [59] is a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "related training method that encourages learning invariant representations. Similar to IRM, it requires", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 520, + 463, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 463, + 532 + ], + "score": 1.0, + "content": "access to multiple training environments in order to quantify the concept of “invariance”.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 465, + 506, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 536, + 504, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 221, + 548 + ], + "score": 1.0, + "content": "SD achieves an accuracy of", + "type": "text" + }, + { + "bbox": [ + 221, + 536, + 252, + 547 + ], + "score": 0.85, + "content": "6 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 536, + 505, + 548 + ], + "score": 1.0, + "content": ". Its performance is remarkable because unlike IRM and REx,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "SD does not require access to multiple environments and yet performs well when trained on a single", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 425, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 425, + 571 + ], + "score": 1.0, + "content": "environment (in this case the aggregation of both of the training environments).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 536, + 505, + 571 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 695 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "A natural question that arises is “How does SD learn to ignore the color feature without having", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "access to multiple environments?” The short answer is that it does not! In fact, we argue that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "SD learns the color feature but it also learns other predictive features, i.e., the digit shape features.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 619 + ], + "score": 1.0, + "content": "At test time, the predictions resulting from the shape features prevail over the color feature. To", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "validate this hypothesis, we study a trained model with each of these methods (ERM, IRM, SD)", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "on four variants of the test environment: 1) grayscale-digits: No color channel is provided and the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "network should rely on shape features only. 2) colored-digits: Both color and digit are provided", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 507, + 664 + ], + "score": 1.0, + "content": "however the color is negatively correlated (opposite of the training set) with the label. 3) grayscale-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "blank: All images are grayscale and blank and hence do not provide any information. 4) colored-blank:", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "score": 1.0, + "content": "Digit features are removed and only the color feature is kept, also with reverse label compared to", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 683, + 397, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 397, + 696 + ], + "score": 1.0, + "content": "training. Fig. 3 summarizes the results. For more discussions see SM B.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 46, + "bbox_fs": [ + 104, + 573, + 507, + 696 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 700, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "As a final remark, we should highlight that, by design, this task assumes access to the test environment", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "for hyperparameter tuning for all the reported methods. This is not a valid assumption in general, and", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "hence the results should be only interpreted as a probe that shows that SD could provide an important", + "type": "text", + "cross_page": true + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 531, + 294, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 294, + 542 + ], + "score": 1.0, + "content": "level of control over what features are learned.", + "type": "text", + "cross_page": true + } + ], + "index": 39 + } + ], + "index": 52.5, + "bbox_fs": [ + 105, + 699, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 127, + 70, + 482, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 70, + 482, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 70, + 482, + 214 + ], + "spans": [ + { + "bbox": [ + 127, + 70, + 482, + 214 + ], + "score": 0.965, + "type": "image", + "image_path": "d0fa5d396174a94eb275513da009f1f33178a40f2dbc241ce7dfa391f7e566f2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 70, + 482, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 118.0, + 482, + 166.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 166.0, + 482, + 214.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 506, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 225, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 107, + 225, + 505, + 235 + ], + "score": 1.0, + "content": "Figure 3: Diagram comparing ERM, SD, and IRM on four different test environments on which we evaluate a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "pre-trained model. Top and bottom rows show the accuracy and the entropy (inverse of confidence), respectively.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 237, + 257 + ], + "score": 1.0, + "content": "Analysis: Compare three values of", + "type": "text" + }, + { + "bbox": [ + 237, + 244, + 264, + 255 + ], + "score": 0.62, + "content": "\\mathfrak { C } \\sharp \\sharp \\sharp \\sharp \\sharp \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 244, + 314, + 257 + ], + "score": 1.0, + "content": ", 9.4 % , and", + "type": "text" + }, + { + "bbox": [ + 315, + 245, + 342, + 255 + ], + "score": 0.85, + "content": "4 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 244, + 506, + 257 + ], + "score": 1.0, + "content": ": Both ERM and SD have learned the color", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 255, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 266 + ], + "score": 1.0, + "content": "feature but since it is inversely correlated with the label, when only the color feature is provided, as expected", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 289, + 278 + ], + "score": 1.0, + "content": "both ERM and SD performs poorly. Now compare", + "type": "text" + }, + { + "bbox": [ + 290, + 265, + 312, + 277 + ], + "score": 0.83, + "content": "\\textcircled { 1 } \\textcircled { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 266, + 327, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 265, + 348, + 277 + ], + "score": 0.8, + "content": "0 . 4 1", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 266, + 506, + 278 + ], + "score": 1.0, + "content": ": Although both ERM and SD have learned", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "the color feature, ERM is much more confident on its predictions (zero entropy). As a consequence, when", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "digit features are provided along with the color feature (colored-digit environment), ERM still performs poorly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 142, + 308 + ], + "score": 0.87, + "content": "( \\overbrace { 2 3 . 9 \\mathrm { ~ \\% ~ } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 297, + 298, + 309 + ], + "score": 1.0, + "content": "but SD achieves significantly better results", + "type": "text" + }, + { + "bbox": [ + 299, + 297, + 332, + 308 + ], + "score": 0.83, + "content": "( 6 7 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "). IRM ignores the color feature altogether but it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 308, + 287, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 287, + 319 + ], + "score": 1.0, + "content": "requires access to multiple training environments.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "image", + "bbox": [ + 114, + 330, + 296, + 430 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 330, + 296, + 430 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 114, + 330, + 296, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 330, + 296, + 430 + ], + "score": 0.969, + "type": "image", + "image_path": "78aab33fb5d05d81db549ed8560e9bd995cca1540e7ae465d6c4ea573f439933.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 114, + 330, + 296, + 342.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 114, + 342.5, + 296, + 355.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 114, + 355.0, + 296, + 367.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 114, + 367.5, + 296, + 380.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 114, + 380.0, + 296, + 392.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 114, + 392.5, + 296, + 405.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 114, + 405.0, + 296, + 417.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 114, + 417.5, + 296, + 430.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 438, + 305, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 438, + 306, + 449 + ], + "spans": [ + { + "bbox": [ + 108, + 438, + 306, + 449 + ], + "score": 1.0, + "content": "Figure 4: CelebA: blond vs dark hair classification.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 108, + 448, + 305, + 459 + ], + "spans": [ + { + "bbox": [ + 108, + 448, + 305, + 459 + ], + "score": 1.0, + "content": "The HairColor and the Gender are spuriously cor-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 108, + 458, + 304, + 469 + ], + "spans": [ + { + "bbox": [ + 108, + 458, + 304, + 469 + ], + "score": 1.0, + "content": "related which leads to poor OOD performance with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 108, + 468, + 306, + 479 + ], + "spans": [ + { + "bbox": [ + 108, + 468, + 306, + 479 + ], + "score": 1.0, + "content": "ERM, however SD significantly improves performance.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 108, + 477, + 304, + 490 + ], + "spans": [ + { + "bbox": [ + 108, + 477, + 304, + 490 + ], + "score": 1.0, + "content": "ERM’s worst group accuracy is significantly lower than", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 108, + 487, + 126, + 498 + ], + "spans": [ + { + "bbox": [ + 108, + 487, + 126, + 498 + ], + "score": 1.0, + "content": "SD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + } + ], + "index": 22.0 + }, + { + "type": "table", + "bbox": [ + 315, + 342, + 496, + 422 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 315, + 342, + 496, + 422 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 315, + 342, + 496, + 422 + ], + "spans": [ + { + "bbox": [ + 315, + 342, + 496, + 422 + ], + "score": 0.96, + "html": "
MethodAverage Acc.Worst Group Acc.
ERM94.61 % (±0.67)40.35 % (±1.68)
SD (this work)91.64 % (±0.61)83.24 % (±2.01)
LfFN/A81.24 % (±1.38)
Group DRO*91.76 % (±0.28)87.78 % (±0.96)
", + "type": "table", + "image_path": "c374bd6f435fa84c2b4dc32d7b178b9b54f70ff37ac53db5fc208f9d9cb4f2f1.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 315, + 342, + 496, + 355.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 315, + 355.3333333333333, + 496, + 368.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 315, + 368.66666666666663, + 496, + 381.99999999999994 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 315, + 381.99999999999994, + 496, + 395.33333333333326 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 315, + 395.33333333333326, + 496, + 408.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 315, + 408.6666666666666, + 496, + 421.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 312, + 438, + 503, + 498 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 311, + 437, + 502, + 449 + ], + "spans": [ + { + "bbox": [ + 311, + 437, + 502, + 449 + ], + "score": 1.0, + "content": "Table 3: CelebA: blond vs dark hair classification", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 311, + 448, + 503, + 460 + ], + "spans": [ + { + "bbox": [ + 311, + 448, + 503, + 460 + ], + "score": 1.0, + "content": "with spurious correlation. We report test performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 311, + 458, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 311, + 458, + 504, + 469 + ], + "score": 1.0, + "content": "over ten runs. SD significantly improves upon ERM.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 311, + 467, + 504, + 480 + ], + "spans": [ + { + "bbox": [ + 311, + 467, + 504, + 480 + ], + "score": 1.0, + "content": "∗Group DRO [89] requires explicit information about", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 311, + 478, + 504, + 490 + ], + "spans": [ + { + "bbox": [ + 311, + 478, + 504, + 490 + ], + "score": 1.0, + "content": "the spurious correlation. LfF [71] requires simultane-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 311, + 488, + 419, + 499 + ], + "spans": [ + { + "bbox": [ + 311, + 488, + 419, + 499 + ], + "score": 1.0, + "content": "ous training of two networks.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "hence the results should be only interpreted as a probe that shows that SD could provide an important", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 531, + 294, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 294, + 542 + ], + "score": 1.0, + "content": "level of control over what features are learned.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 107, + 548, + 235, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 236, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 236, + 562 + ], + "score": 1.0, + "content": "4.4 CelebA with gender bias", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 245, + 575 + ], + "score": 1.0, + "content": "The CelebA dataset [65] contains", + "type": "text" + }, + { + "bbox": [ + 245, + 563, + 267, + 573 + ], + "score": 0.53, + "content": "1 6 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "celebrity faces with binary attributes associated with each", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "image. Following the setup of [89], the task is to classify images with respect to their hair color into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 330, + 597 + ], + "score": 1.0, + "content": "two classes of blond or dark hair. However, the Gender", + "type": "text" + }, + { + "bbox": [ + 331, + 585, + 340, + 595 + ], + "score": 0.58, + "content": "\\in", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "{Male, Female} is spuriously correlated", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 142, + 607 + ], + "score": 1.0, + "content": "with the", + "type": "text" + }, + { + "bbox": [ + 143, + 596, + 263, + 606 + ], + "score": 0.41, + "content": "\\mathtt { H a i r C o l o r } \\in \\{ \\mathtt { B l o n d } , \\mathtt { D a r k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "in the training data. The rarest group which is blond males", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 168, + 618 + ], + "score": 1.0, + "content": "represents only", + "type": "text" + }, + { + "bbox": [ + 168, + 606, + 197, + 617 + ], + "score": 0.85, + "content": "0 . 8 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 606, + 325, + 618 + ], + "score": 1.0, + "content": "of the training data (1387 out of", + "type": "text" + }, + { + "bbox": [ + 325, + 606, + 346, + 617 + ], + "score": 0.34, + "content": "1 6 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "examples). We train a ResNet-50 model", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "[38] on this task. Tab. 3 summarizes the results and compares the performance of several methods. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "model with vanilla cross-entropy (ERM) appears to generalize well on average but fails to generalize", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 639, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 650 + ], + "score": 1.0, + "content": "to the rarest group (blond males) which can be considered as “weakly\" out-of-distribution (OOD).", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "Our proposed SD improves the performance more than twofold. It should be highlighted that for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 660, + 507, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 282, + 675 + ], + "score": 1.0, + "content": "this task, we use a variant of SD in which,", + "type": "text" + }, + { + "bbox": [ + 283, + 660, + 330, + 675 + ], + "score": 0.93, + "content": "\\frac { \\lambda } { 2 } | | \\hat { y } - \\gamma | | _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 660, + 507, + 675 + ], + "score": 1.0, + "content": "is added to the original cross-entropy loss.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 104, + 671, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 196, + 686 + ], + "score": 1.0, + "content": "The hyper-parameters", + "type": "text" + }, + { + "bbox": [ + 196, + 673, + 204, + 682 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 671, + 221, + 686 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 674, + 228, + 684 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 671, + 507, + 686 + ], + "score": 1.0, + "content": "are tuned separately for each class (a total of four hyper-parameters).", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "This variant of SD does provably decouple the dynamics too but appears to perform better than the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 694, + 243, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 243, + 707 + ], + "score": 1.0, + "content": "original SD in Eq. 17 in this task.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 711, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "Other proposed methods presented in Tab. 3 also show significant improvements on the performance", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 54 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 127, + 70, + 482, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 70, + 482, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 70, + 482, + 214 + ], + "spans": [ + { + "bbox": [ + 127, + 70, + 482, + 214 + ], + "score": 0.965, + "type": "image", + "image_path": "d0fa5d396174a94eb275513da009f1f33178a40f2dbc241ce7dfa391f7e566f2.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 127, + 70, + 482, + 118.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 127, + 118.0, + 482, + 166.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 127, + 166.0, + 482, + 214.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 224, + 506, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 225, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 107, + 225, + 505, + 235 + ], + "score": 1.0, + "content": "Figure 3: Diagram comparing ERM, SD, and IRM on four different test environments on which we evaluate a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "pre-trained model. Top and bottom rows show the accuracy and the entropy (inverse of confidence), respectively.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 237, + 257 + ], + "score": 1.0, + "content": "Analysis: Compare three values of", + "type": "text" + }, + { + "bbox": [ + 237, + 244, + 264, + 255 + ], + "score": 0.62, + "content": "\\mathfrak { C } \\sharp \\sharp \\sharp \\sharp \\sharp \\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 244, + 314, + 257 + ], + "score": 1.0, + "content": ", 9.4 % , and", + "type": "text" + }, + { + "bbox": [ + 315, + 245, + 342, + 255 + ], + "score": 0.85, + "content": "4 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 244, + 506, + 257 + ], + "score": 1.0, + "content": ": Both ERM and SD have learned the color", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 255, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 505, + 266 + ], + "score": 1.0, + "content": "feature but since it is inversely correlated with the label, when only the color feature is provided, as expected", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 265, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 289, + 278 + ], + "score": 1.0, + "content": "both ERM and SD performs poorly. Now compare", + "type": "text" + }, + { + "bbox": [ + 290, + 265, + 312, + 277 + ], + "score": 0.83, + "content": "\\textcircled { 1 } \\textcircled { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 266, + 327, + 278 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 265, + 348, + 277 + ], + "score": 0.8, + "content": "0 . 4 1", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 266, + 506, + 278 + ], + "score": 1.0, + "content": ": Although both ERM and SD have learned", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 505, + 288 + ], + "score": 1.0, + "content": "the color feature, ERM is much more confident on its predictions (zero entropy). As a consequence, when", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 299 + ], + "score": 1.0, + "content": "digit features are provided along with the color feature (colored-digit environment), ERM still performs poorly", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 142, + 308 + ], + "score": 0.87, + "content": "( \\overbrace { 2 3 . 9 \\mathrm { ~ \\% ~ } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 297, + 298, + 309 + ], + "score": 1.0, + "content": "but SD achieves significantly better results", + "type": "text" + }, + { + "bbox": [ + 299, + 297, + 332, + 308 + ], + "score": 0.83, + "content": "( 6 7 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "). IRM ignores the color feature altogether but it", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 308, + 287, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 287, + 319 + ], + "score": 1.0, + "content": "requires access to multiple training environments.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + } + ], + "index": 4.0 + }, + { + "type": "image", + "bbox": [ + 114, + 330, + 296, + 430 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 330, + 296, + 430 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 114, + 330, + 296, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 330, + 296, + 430 + ], + "score": 0.969, + "type": "image", + "image_path": "78aab33fb5d05d81db549ed8560e9bd995cca1540e7ae465d6c4ea573f439933.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 114, + 330, + 296, + 342.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 114, + 342.5, + 296, + 355.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 114, + 355.0, + 296, + 367.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 114, + 367.5, + 296, + 380.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 114, + 380.0, + 296, + 392.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 114, + 392.5, + 296, + 405.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 114, + 405.0, + 296, + 417.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 114, + 417.5, + 296, + 430.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 438, + 305, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 438, + 306, + 449 + ], + "spans": [ + { + "bbox": [ + 108, + 438, + 306, + 449 + ], + "score": 1.0, + "content": "Figure 4: CelebA: blond vs dark hair classification.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 108, + 448, + 305, + 459 + ], + "spans": [ + { + "bbox": [ + 108, + 448, + 305, + 459 + ], + "score": 1.0, + "content": "The HairColor and the Gender are spuriously cor-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 108, + 458, + 304, + 469 + ], + "spans": [ + { + "bbox": [ + 108, + 458, + 304, + 469 + ], + "score": 1.0, + "content": "related which leads to poor OOD performance with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 108, + 468, + 306, + 479 + ], + "spans": [ + { + "bbox": [ + 108, + 468, + 306, + 479 + ], + "score": 1.0, + "content": "ERM, however SD significantly improves performance.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 108, + 477, + 304, + 490 + ], + "spans": [ + { + "bbox": [ + 108, + 477, + 304, + 490 + ], + "score": 1.0, + "content": "ERM’s worst group accuracy is significantly lower than", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 108, + 487, + 126, + 498 + ], + "spans": [ + { + "bbox": [ + 108, + 487, + 126, + 498 + ], + "score": 1.0, + "content": "SD.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + } + ], + "index": 22.0 + }, + { + "type": "table", + "bbox": [ + 315, + 342, + 496, + 422 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 315, + 342, + 496, + 422 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 315, + 342, + 496, + 422 + ], + "spans": [ + { + "bbox": [ + 315, + 342, + 496, + 422 + ], + "score": 0.96, + "html": "
MethodAverage Acc.Worst Group Acc.
ERM94.61 % (±0.67)40.35 % (±1.68)
SD (this work)91.64 % (±0.61)83.24 % (±2.01)
LfFN/A81.24 % (±1.38)
Group DRO*91.76 % (±0.28)87.78 % (±0.96)
", + "type": "table", + "image_path": "c374bd6f435fa84c2b4dc32d7b178b9b54f70ff37ac53db5fc208f9d9cb4f2f1.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 315, + 342, + 496, + 355.3333333333333 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 315, + 355.3333333333333, + 496, + 368.66666666666663 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 315, + 368.66666666666663, + 496, + 381.99999999999994 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 315, + 381.99999999999994, + 496, + 395.33333333333326 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 315, + 395.33333333333326, + 496, + 408.6666666666666 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 315, + 408.6666666666666, + 496, + 421.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 312, + 438, + 503, + 498 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 311, + 437, + 502, + 449 + ], + "spans": [ + { + "bbox": [ + 311, + 437, + 502, + 449 + ], + "score": 1.0, + "content": "Table 3: CelebA: blond vs dark hair classification", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 311, + 448, + 503, + 460 + ], + "spans": [ + { + "bbox": [ + 311, + 448, + 503, + 460 + ], + "score": 1.0, + "content": "with spurious correlation. We report test performance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 311, + 458, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 311, + 458, + 504, + 469 + ], + "score": 1.0, + "content": "over ten runs. SD significantly improves upon ERM.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 311, + 467, + 504, + 480 + ], + "spans": [ + { + "bbox": [ + 311, + 467, + 504, + 480 + ], + "score": 1.0, + "content": "∗Group DRO [89] requires explicit information about", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 311, + 478, + 504, + 490 + ], + "spans": [ + { + "bbox": [ + 311, + 478, + 504, + 490 + ], + "score": 1.0, + "content": "the spurious correlation. LfF [71] requires simultane-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 311, + 488, + 419, + 499 + ], + "spans": [ + { + "bbox": [ + 311, + 488, + 419, + 499 + ], + "score": 1.0, + "content": "ous training of two networks.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 34.5 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 542 + ], + "lines": [], + "index": 38.5, + "bbox_fs": [ + 105, + 519, + 505, + 542 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 548, + 235, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 236, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 236, + 562 + ], + "score": 1.0, + "content": "4.4 CelebA with gender bias", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 563, + 506, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 245, + 575 + ], + "score": 1.0, + "content": "The CelebA dataset [65] contains", + "type": "text" + }, + { + "bbox": [ + 245, + 563, + 267, + 573 + ], + "score": 0.53, + "content": "1 6 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 562, + 505, + 575 + ], + "score": 1.0, + "content": "celebrity faces with binary attributes associated with each", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "image. Following the setup of [89], the task is to classify images with respect to their hair color into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 330, + 597 + ], + "score": 1.0, + "content": "two classes of blond or dark hair. However, the Gender", + "type": "text" + }, + { + "bbox": [ + 331, + 585, + 340, + 595 + ], + "score": 0.58, + "content": "\\in", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "{Male, Female} is spuriously correlated", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 595, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 142, + 607 + ], + "score": 1.0, + "content": "with the", + "type": "text" + }, + { + "bbox": [ + 143, + 596, + 263, + 606 + ], + "score": 0.41, + "content": "\\mathtt { H a i r C o l o r } \\in \\{ \\mathtt { B l o n d } , \\mathtt { D a r k } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 595, + 505, + 607 + ], + "score": 1.0, + "content": "in the training data. The rarest group which is blond males", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 606, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 168, + 618 + ], + "score": 1.0, + "content": "represents only", + "type": "text" + }, + { + "bbox": [ + 168, + 606, + 197, + 617 + ], + "score": 0.85, + "content": "0 . 8 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 606, + 325, + 618 + ], + "score": 1.0, + "content": "of the training data (1387 out of", + "type": "text" + }, + { + "bbox": [ + 325, + 606, + 346, + 617 + ], + "score": 0.34, + "content": "1 6 2 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 606, + 506, + 618 + ], + "score": 1.0, + "content": "examples). We train a ResNet-50 model", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "[38] on this task. Tab. 3 summarizes the results and compares the performance of several methods. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "model with vanilla cross-entropy (ERM) appears to generalize well on average but fails to generalize", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 639, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 650 + ], + "score": 1.0, + "content": "to the rarest group (blond males) which can be considered as “weakly\" out-of-distribution (OOD).", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "Our proposed SD improves the performance more than twofold. It should be highlighted that for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 660, + 507, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 282, + 675 + ], + "score": 1.0, + "content": "this task, we use a variant of SD in which,", + "type": "text" + }, + { + "bbox": [ + 283, + 660, + 330, + 675 + ], + "score": 0.93, + "content": "\\frac { \\lambda } { 2 } | | \\hat { y } - \\gamma | | _ { 2 } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 660, + 507, + 675 + ], + "score": 1.0, + "content": "is added to the original cross-entropy loss.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 104, + 671, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 196, + 686 + ], + "score": 1.0, + "content": "The hyper-parameters", + "type": "text" + }, + { + "bbox": [ + 196, + 673, + 204, + 682 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 671, + 221, + 686 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 674, + 228, + 684 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 671, + 507, + 686 + ], + "score": 1.0, + "content": "are tuned separately for each class (a total of four hyper-parameters).", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "This variant of SD does provably decouple the dynamics too but appears to perform better than the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 694, + 243, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 243, + 707 + ], + "score": 1.0, + "content": "original SD in Eq. 17 in this task.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 47, + "bbox_fs": [ + 104, + 562, + 507, + 707 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 711, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "Other proposed methods presented in Tab. 3 also show significant improvements on the performance", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 1.0, + "content": "of the worst group accuracy. The recently proposed “Learning from failure” (LfF) [71] achieves", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 96 + ], + "score": 1.0, + "content": "comparable results to SD, but it requires simultaneous training of two networks. Group DRO [89]", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "is another successful method for this task. However, unlike SD, Group DRO requires explicit", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "information about the spuriously correlated attributes. In most practical tasks, information about the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "spurious correlations is not provided and, dependence on the spurious correlation goes unrecognized.2", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 54, + "bbox_fs": [ + 105, + 709, + 505, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 1.0, + "content": "of the worst group accuracy. The recently proposed “Learning from failure” (LfF) [71] achieves", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 96 + ], + "score": 1.0, + "content": "comparable results to SD, but it requires simultaneous training of two networks. Group DRO [89]", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "is another successful method for this task. However, unlike SD, Group DRO requires explicit", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "information about the spuriously correlated attributes. In most practical tasks, information about the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "spurious correlations is not provided and, dependence on the spurious correlation goes unrecognized.2", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 142, + 276, + 156 + ], + "lines": [ + { + "bbox": [ + 104, + 141, + 277, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 141, + 277, + 158 + ], + "score": 1.0, + "content": "5 Related Work and Discussion", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 168, + 485, + 179 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 485, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 485, + 181 + ], + "score": 1.0, + "content": "Here, we discuss the related work. Due to space constraints, further discussions are in App. A.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "On learning dynamics and Loss Choice. Several works including [90, 91, 1, 60] investigate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "dynamics of deep linear networks trained with squared-error loss. Different decompositions of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "learning process for neural networks have been used: [83, 104, 87, 105] study the learning in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "Fourier domain and show that low-frequency functions are learned earlier than high-frequency ones.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "[90, 2, 32] provide closed-form equations for the dynamics of linear networks in terms of the principal", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "components of the input covariance matrix. More recently, with the introduction of neural tangent", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "kernel (NTK) [52, 62], a new line of research is to study the convergence properties of gradient", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "descent [e.g. 8, 69, 25, 29, 7, 44, 33, 110, 11, 99]. Among them, [12, 106, 18, 22] decompose the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "learning process along the principal components of the NTK. The message in these works is that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "the training process can be decomposed into independent learning dynamics along the orthogonal", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 291, + 151, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 151, + 304 + ], + "score": 1.0, + "content": "directions.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "Most of the studies mentioned above focus on the particular squared-error loss. For a linearized", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "network, the squared-error loss results in linear learning dynamics, which often admit an analytical", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "solution. However, the de-facto loss function for many of the practical applications of neural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "networks is the cross-entropy. Using the cross-entropy as the loss function leads to significantly more", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "complicated and non-linear dynamics, even for a linear neural network. In this work, our focus was", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 362, + 198, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 198, + 375 + ], + "score": 1.0, + "content": "the cross-entropy loss.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "On reliance upon spurious correlations and robustness. In the context of robustness in neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 397, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 506, + 409 + ], + "score": 1.0, + "content": "networks, state-of-the-art neural networks appear to naturally focus on low-level superficial correla-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "tions rather than more abstract and robustly informative features of interest (e.g. [30]). As we argue", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "in this work, Gradient Starvation is likely an important factor contributing to this phenomenon and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "score": 1.0, + "content": "can result in adversarial vulnerability. There is a rich research literature on adversarial attacks and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "neural networks’ vulnerability [96, 34, 48, 67, 5, 47]. Interestingly, [73], [72] and [51] draw a similar", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "conclusion and argue that “an insufficiency of the cross-entropy loss” causes excessive invariances to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "predictive features. Perhaps [92] is the closest to our work in which authors study the simplicity bias", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 1.0, + "content": "(SB) in stochastic gradient descent. They demonstrate that neural networks exhibit extreme bias that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 483, + 261, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 261, + 497 + ], + "score": 1.0, + "content": "could lead to adversarial vulnerability.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "On implicit bias. Despite being highly-overparameterized, modern neural networks seem to gener-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "alize very well [108]. Modern neural networks generalize surprisingly well in numerous machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "tasks. This is despite the fact that neural networks typically contain orders of magnitude more", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "parameters than the number of examples in a training set and have sufficient capacity to fit a totally", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "randomized dataset perfectly [108]. The widespread explanation is that the gradient descent has a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "form of implicit bias towards learning simpler functions that generalize better according to Occam’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "razor. Our exposition of GS reinforces this explanation. In essence, when training and test data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "points are drawn from the same distribution, the top salient features are predictive in both sets. We", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "conjecture that in such a scenario, by not learning the less salient features, GS naturally protects the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "score": 1.0, + "content": "network from overfitting.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 108, + 622, + 503, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "The same phenomenon is referred to as implicit bias, implicit regularization, simplicity bias and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 414, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 414, + 646 + ], + "score": 1.0, + "content": "spectral bias in several works [83, 75, 36, 74, 70, 53, 94, 10, 13, 35, 82, 66].", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "As an active line of research, numerous studies have provided different explanations for this phe-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "nomenon. For example, [70] justifies the implicit bias of neural networks by showing that stochastic", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "gradient descent learns simpler functions first. [15, 78] suggests that a form of implicit regularization", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "is induced by an alignment between NTK’s principal components and only a few task-relevant", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 117, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "2Recall that it took 3 years for the psychologist, Oskar Pfungst, to realize that Clever Hans was not capable", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 711, + 195, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 195, + 723 + ], + "score": 1.0, + "content": "of doing any arithmetic.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 128 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 72, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 142, + 276, + 156 + ], + "lines": [ + { + "bbox": [ + 104, + 141, + 277, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 141, + 277, + 158 + ], + "score": 1.0, + "content": "5 Related Work and Discussion", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 105, + 168, + 485, + 179 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 485, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 485, + 181 + ], + "score": 1.0, + "content": "Here, we discuss the related work. Due to space constraints, further discussions are in App. A.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 167, + 485, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "On learning dynamics and Loss Choice. Several works including [90, 91, 1, 60] investigate the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "dynamics of deep linear networks trained with squared-error loss. Different decompositions of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "learning process for neural networks have been used: [83, 104, 87, 105] study the learning in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 228 + ], + "score": 1.0, + "content": "Fourier domain and show that low-frequency functions are learned earlier than high-frequency ones.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 506, + 239 + ], + "score": 1.0, + "content": "[90, 2, 32] provide closed-form equations for the dynamics of linear networks in terms of the principal", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "components of the input covariance matrix. More recently, with the introduction of neural tangent", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 506, + 261 + ], + "score": 1.0, + "content": "kernel (NTK) [52, 62], a new line of research is to study the convergence properties of gradient", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 505, + 271 + ], + "score": 1.0, + "content": "descent [e.g. 8, 69, 25, 29, 7, 44, 33, 110, 11, 99]. Among them, [12, 106, 18, 22] decompose the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "learning process along the principal components of the NTK. The message in these works is that", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 506, + 294 + ], + "score": 1.0, + "content": "the training process can be decomposed into independent learning dynamics along the orthogonal", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 291, + 151, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 151, + 304 + ], + "score": 1.0, + "content": "directions.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 182, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 308, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "Most of the studies mentioned above focus on the particular squared-error loss. For a linearized", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 331 + ], + "score": 1.0, + "content": "network, the squared-error loss results in linear learning dynamics, which often admit an analytical", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "solution. However, the de-facto loss function for many of the practical applications of neural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "networks is the cross-entropy. Using the cross-entropy as the loss function leads to significantly more", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 365 + ], + "score": 1.0, + "content": "complicated and non-linear dynamics, even for a linear neural network. In this work, our focus was", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 362, + 198, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 198, + 375 + ], + "score": 1.0, + "content": "the cross-entropy loss.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 307, + 505, + 375 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "On reliance upon spurious correlations and robustness. In the context of robustness in neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 397, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 506, + 409 + ], + "score": 1.0, + "content": "networks, state-of-the-art neural networks appear to naturally focus on low-level superficial correla-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 421 + ], + "score": 1.0, + "content": "tions rather than more abstract and robustly informative features of interest (e.g. [30]). As we argue", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "in this work, Gradient Starvation is likely an important factor contributing to this phenomenon and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 505, + 441 + ], + "score": 1.0, + "content": "can result in adversarial vulnerability. There is a rich research literature on adversarial attacks and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "neural networks’ vulnerability [96, 34, 48, 67, 5, 47]. Interestingly, [73], [72] and [51] draw a similar", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "conclusion and argue that “an insufficiency of the cross-entropy loss” causes excessive invariances to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "predictive features. Perhaps [92] is the closest to our work in which authors study the simplicity bias", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 1.0, + "content": "(SB) in stochastic gradient descent. They demonstrate that neural networks exhibit extreme bias that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 483, + 261, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 261, + 497 + ], + "score": 1.0, + "content": "could lead to adversarial vulnerability.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 385, + 506, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 519 + ], + "score": 1.0, + "content": "On implicit bias. Despite being highly-overparameterized, modern neural networks seem to gener-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "alize very well [108]. Modern neural networks generalize surprisingly well in numerous machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "tasks. This is despite the fact that neural networks typically contain orders of magnitude more", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "parameters than the number of examples in a training set and have sufficient capacity to fit a totally", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "randomized dataset perfectly [108]. The widespread explanation is that the gradient descent has a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "form of implicit bias towards learning simpler functions that generalize better according to Occam’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 584 + ], + "score": 1.0, + "content": "razor. Our exposition of GS reinforces this explanation. In essence, when training and test data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "points are drawn from the same distribution, the top salient features are predictive in both sets. We", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "conjecture that in such a scenario, by not learning the less salient features, GS naturally protects the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 210, + 619 + ], + "score": 1.0, + "content": "network from overfitting.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 507, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 622, + 503, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "The same phenomenon is referred to as implicit bias, implicit regularization, simplicity bias and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 414, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 414, + 646 + ], + "score": 1.0, + "content": "spectral bias in several works [83, 75, 36, 74, 70, 53, 94, 10, 13, 35, 82, 66].", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 622, + 505, + 646 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "As an active line of research, numerous studies have provided different explanations for this phe-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "nomenon. For example, [70] justifies the implicit bias of neural networks by showing that stochastic", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "gradient descent learns simpler functions first. [15, 78] suggests that a form of implicit regularization", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "is induced by an alignment between NTK’s principal components and only a few task-relevant", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "directions. Several other works such as [20, 35, 94, 25] recognize the convergence of gradient descent", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "to maximum-margin solution as the essential factor for the generalizability of neural networks. It", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "should be stressed that these work refer to the margin in the hidden space and not in the input space", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "as pointed out in [55]. Indeed, as observed in our experiments, the maximum-margin classifier in the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 116, + 432, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 432, + 129 + ], + "score": 1.0, + "content": "hidden space can be achieved at the expense of a small margin in the input space.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 649, + 506, + 694 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "directions. Several other works such as [20, 35, 94, 25] recognize the convergence of gradient descent", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "to maximum-margin solution as the essential factor for the generalizability of neural networks. It", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "score": 1.0, + "content": "should be stressed that these work refer to the margin in the hidden space and not in the input space", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "as pointed out in [55]. Indeed, as observed in our experiments, the maximum-margin classifier in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 116, + 432, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 432, + 129 + ], + "score": 1.0, + "content": "hidden space can be achieved at the expense of a small margin in the input space.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "On Gradient Starvation and no free lunch theorem. The no free lunch theorem [93, 102] states", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 152, + 507, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 507, + 165 + ], + "score": 1.0, + "content": "that “learning is impossible without making assumptions about training and test distributions”.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "Perhaps, the most commonly used assumption of machine learning is the i.i.d. assumption [98], which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "assumes that training and test data are identically distributed. However, in general, this assumption", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "might not hold, and in many practical applications, there are predictive features in the training set that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "do not generalize to the test set. A natural question that arises is how to favor generalizable features", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "over spurious features? The most common approaches include data augmentation, controlling the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 218, + 490, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 490, + 230 + ], + "score": 1.0, + "content": "inductive biases, using regularizations, and more recently training using multiple environments.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Here, we would like to elaborate on an interesting thought experiment of [79]: Suppose a neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "network is provided with a chess book containing examples of chess games with the best movements", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "score": 1.0, + "content": "indicated by a red arrow. The network can take two approaches: 1) learn how to play chess, or 2)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 267, + 504, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 504, + 279 + ], + "score": 1.0, + "content": "learn just the red arrows. Either of these solutions results in zero training loss on the games in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "book while only the former is generalizable to new games. With no external knowledge, the network", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 289, + 254, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 254, + 301 + ], + "score": 1.0, + "content": "typically learns the simpler solution.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 317 + ], + "score": 1.0, + "content": "Recent work aims to leverage the invariance principle across several environments to improve robust", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "learning. This is akin to present several chess books to a network, each with markings indicating the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "best moves for different sets of games. In several studies [9, 59, 79, 3], methods are developed to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "aggregate information from multiple training environments in a way that favors the generalizable", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "/ domain-agnostic / invariant solution. We argue that even with having access to only one training", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "environment, there is useful information in the training set that fails to be discovered due to Gradient", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "Starvation. The information on how to actually play chess is already available in any of the chess", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "books. Still, as soon as the network learns the red arrows, the network has no incentive for further", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "learning. Therefore, learning the red arrows is not an issue per se, but not learning to play chess is.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "Gradient Starvation: friend or foe? Here, we would like to remind the reader that GS can have", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "both adverse and beneficial consequences. If the learned features are sufficient to generalize to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "test data, gradient starvation can be viewed as an implicit regularizer. Otherwise, Gradient Starvation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "could have an unfavorable effect, which we observe empirically when some predictive features fail to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "be learned. A better understanding and control of Gradient Starvation and its impact on generalization", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "offers promising avenues to address this issue with minimal assumptions. Indeed, our Spectral", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "Decoupling method requires an assumption about feature imbalance but not to pinpoint them exactly,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 349, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 349, + 512 + ], + "score": 1.0, + "content": "relying on modulated learning dynamics to achieve balance.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "GS social impact Modern neural networks are being deployed extensively in numerous machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "learning tasks. Our models are used in critical applications such as autonomous driving, medical", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "prediction, and even justice system where human lives are at stake. However, neural networks appear", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "to base their predictions on superficial biases in the dataset. Unfortunately, biases in datasets could be", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "neglected and pose negative impacts on our society. In fact, our Celeb-A experiment is an example of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "the existence of such a bias in the data. As shown in the paper, the gender-specific bias could lead to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "a superficial high performance and is indeed very hard to detect. Our analysis, although mostly on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "the theory side, could pave the path for researchers to build machine learning systems that are robust", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 618, + 326, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 326, + 630 + ], + "score": 1.0, + "content": "to biases and helps towards fairness in our predictions.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40 + }, + { + "type": "title", + "bbox": [ + 107, + 643, + 183, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 185, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 185, + 659 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "score": 1.0, + "content": "In this paper, we formalized Gradient Starvation (GS) as a phenomenon that emerges when training", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "with cross-entropy loss in neural networks. By analyzing the dynamical system corresponding to the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 507, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 507, + 703 + ], + "score": 1.0, + "content": "learning process in a dual space, we showed that GS could slow down the learning of certain features,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "even if they are present in the training set. We derived spectral decoupling (SD) regularization as a", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 202, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 202, + 723 + ], + "score": 1.0, + "content": "possible remedy to GS.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 742, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 505, + 128 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 73, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 141, + 505, + 229 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 154 + ], + "score": 1.0, + "content": "On Gradient Starvation and no free lunch theorem. The no free lunch theorem [93, 102] states", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 152, + 507, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 507, + 165 + ], + "score": 1.0, + "content": "that “learning is impossible without making assumptions about training and test distributions”.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "Perhaps, the most commonly used assumption of machine learning is the i.i.d. assumption [98], which", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 187 + ], + "score": 1.0, + "content": "assumes that training and test data are identically distributed. However, in general, this assumption", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 185, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 197 + ], + "score": 1.0, + "content": "might not hold, and in many practical applications, there are predictive features in the training set that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "do not generalize to the test set. A natural question that arises is how to favor generalizable features", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "over spurious features? The most common approaches include data augmentation, controlling the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 218, + 490, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 490, + 230 + ], + "score": 1.0, + "content": "inductive biases, using regularizations, and more recently training using multiple environments.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 141, + 507, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Here, we would like to elaborate on an interesting thought experiment of [79]: Suppose a neural", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "network is provided with a chess book containing examples of chess games with the best movements", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 269 + ], + "score": 1.0, + "content": "indicated by a red arrow. The network can take two approaches: 1) learn how to play chess, or 2)", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 267, + 504, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 504, + 279 + ], + "score": 1.0, + "content": "learn just the red arrows. Either of these solutions results in zero training loss on the games in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 290 + ], + "score": 1.0, + "content": "book while only the former is generalizable to new games. With no external knowledge, the network", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 289, + 254, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 254, + 301 + ], + "score": 1.0, + "content": "typically learns the simpler solution.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 234, + 506, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 305, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 306, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 505, + 317 + ], + "score": 1.0, + "content": "Recent work aims to leverage the invariance principle across several environments to improve robust", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "learning. This is akin to present several chess books to a network, each with markings indicating the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "best moves for different sets of games. In several studies [9, 59, 79, 3], methods are developed to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "aggregate information from multiple training environments in a way that favors the generalizable", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "/ domain-agnostic / invariant solution. We argue that even with having access to only one training", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "environment, there is useful information in the training set that fails to be discovered due to Gradient", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "Starvation. The information on how to actually play chess is already available in any of the chess", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 394 + ], + "score": 1.0, + "content": "books. Still, as soon as the network learns the red arrows, the network has no incentive for further", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "learning. Therefore, learning the red arrows is not an issue per se, but not learning to play chess is.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 306, + 506, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "Gradient Starvation: friend or foe? Here, we would like to remind the reader that GS can have", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "both adverse and beneficial consequences. If the learned features are sufficient to generalize to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "test data, gradient starvation can be viewed as an implicit regularizer. Otherwise, Gradient Starvation", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 469 + ], + "score": 1.0, + "content": "could have an unfavorable effect, which we observe empirically when some predictive features fail to", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "score": 1.0, + "content": "be learned. A better understanding and control of Gradient Starvation and its impact on generalization", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "offers promising avenues to address this issue with minimal assumptions. Indeed, our Spectral", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "Decoupling method requires an assumption about feature imbalance but not to pinpoint them exactly,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 500, + 349, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 349, + 512 + ], + "score": 1.0, + "content": "relying on modulated learning dynamics to achieve balance.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 422, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 505, + 543 + ], + "score": 1.0, + "content": "GS social impact Modern neural networks are being deployed extensively in numerous machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 554 + ], + "score": 1.0, + "content": "learning tasks. Our models are used in critical applications such as autonomous driving, medical", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "prediction, and even justice system where human lives are at stake. However, neural networks appear", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "to base their predictions on superficial biases in the dataset. Unfortunately, biases in datasets could be", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "neglected and pose negative impacts on our society. In fact, our Celeb-A experiment is an example of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 597 + ], + "score": 1.0, + "content": "the existence of such a bias in the data. As shown in the paper, the gender-specific bias could lead to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 609 + ], + "score": 1.0, + "content": "a superficial high performance and is indeed very hard to detect. Our analysis, although mostly on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "the theory side, could pave the path for researchers to build machine learning systems that are robust", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 618, + 326, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 326, + 630 + ], + "score": 1.0, + "content": "to biases and helps towards fairness in our predictions.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 530, + 506, + 630 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 643, + 183, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 642, + 185, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 185, + 659 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "score": 1.0, + "content": "In this paper, we formalized Gradient Starvation (GS) as a phenomenon that emerges when training", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "with cross-entropy loss in neural networks. By analyzing the dynamical system corresponding to the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 687, + 507, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 507, + 703 + ], + "score": 1.0, + "content": "learning process in a dual space, we showed that GS could slow down the learning of certain features,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 714 + ], + "score": 1.0, + "content": "even if they are present in the training set. We derived spectral decoupling (SD) regularization as a", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 711, + 202, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 202, + 723 + ], + "score": 1.0, + "content": "possible remedy to GS.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 665, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 70, + 339, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 69, + 341, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 341, + 88 + ], + "score": 1.0, + "content": "Acknowledgments and Disclosure of Funding", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 96, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 95, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 506, + 108 + ], + "score": 1.0, + "content": "The authors are grateful to Samsung Electronics Co., Ldt., CIFAR, and IVADO for their funding and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "Calcul Québec and Compute Canada for providing us with the computing resources. We would further", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "like to acknowledge the significance of discussions and supports from Reyhane Askari Hemmat and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "Faruk Ahmed. MP would like to thank Aristide Baratin, Kostiantyn Lapchevskyi, Seyed Mohammad", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "Mehdi Ahmadpanah, Milad Aghajohari, Kartik Ahuja, Shagun Sodhani, and Emmanuel Bengio for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 193, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 193, + 163 + ], + "score": 1.0, + "content": "their invaluable help.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 107, + 177, + 163, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 165, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 165, + 192 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 110, + 195, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "[1] Madhu S Advani and Andrew M Saxe. High-dimensional dynamics of generalization error in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 131, + 208, + 366, + 221 + ], + "spans": [ + { + "bbox": [ + 131, + 208, + 366, + 221 + ], + "score": 1.0, + "content": "neural networks. arXiv preprint arXiv:1710.03667, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "[2] Madhu S Advani, Andrew M Saxe, and Haim Sompolinsky. High-dimensional dynamics of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 131, + 236, + 392, + 251 + ], + "spans": [ + { + "bbox": [ + 131, + 236, + 392, + 251 + ], + "score": 1.0, + "content": "generalization error in neural networks. Neural Networks, 2020.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "[3] Kartik Ahuja, Karthikeyan Shanmugam, and Amit Dhurandhar. Linear regression games:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "Convergence guarantees to approximate out-of-distribution solutions. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 132, + 278, + 236, + 290 + ], + "spans": [ + { + "bbox": [ + 132, + 278, + 236, + 290 + ], + "score": 1.0, + "content": "arXiv:2010.15234, 2020.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "[4] Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 133, + 308, + 382, + 321 + ], + "spans": [ + { + "bbox": [ + 133, + 308, + 382, + 321 + ], + "score": 1.0, + "content": "minimization games. arXiv preprint arXiv:2002.04692, 2020.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "[5] Naveed Akhtar and Ajmal Mian. Threat of adversarial attacks on deep learning in computer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 132, + 338, + 353, + 351 + ], + "spans": [ + { + "bbox": [ + 132, + 338, + 353, + 351 + ], + "score": 1.0, + "content": "vision: A survey. IEEE Access, 6:14410–14430, 2018.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "[6] Adelin Albert and John A Anderson. On the existence of maximum likelihood estimates in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 131, + 367, + 367, + 381 + ], + "spans": [ + { + "bbox": [ + 131, + 367, + 367, + 381 + ], + "score": 1.0, + "content": "logistic regression models. Biometrika, 71(1):1–10, 1984.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 506, + 400 + ], + "score": 1.0, + "content": "[7] Zeyuan Allen-Zhu, Yuanzhi Li, and Yingyu Liang. Learning and generalization in overpa-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 132, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 132, + 397, + 504, + 410 + ], + "score": 1.0, + "content": "rameterized neural networks, going beyond two layers. In Advances in neural information", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 131, + 408, + 314, + 421 + ], + "spans": [ + { + "bbox": [ + 131, + 408, + 314, + 421 + ], + "score": 1.0, + "content": "processing systems, pages 6158–6169, 2019.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[8] Zeyuan Allen-Zhu, Yuanzhi Li, and Zhao Song. A convergence theory for deep learning via", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 131, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 131, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "over-parameterization. In International Conference on Machine Learning, pages 242–252.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 448, + 191, + 461 + ], + "spans": [ + { + "bbox": [ + 132, + 448, + 191, + 461 + ], + "score": 1.0, + "content": "PMLR, 2019.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 467, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 507, + 482 + ], + "score": 1.0, + "content": "[9] Martin Arjovsky, Léon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk mini-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 131, + 478, + 336, + 491 + ], + "spans": [ + { + "bbox": [ + 131, + 478, + 336, + 491 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1907.02893, 2019.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 109, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 109, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "[10] Sanjeev Arora, Nadav Cohen, Wei Hu, and Yuping Luo. Implicit regularization in deep matrix", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 131, + 507, + 507, + 522 + ], + "spans": [ + { + "bbox": [ + 131, + 507, + 507, + 522 + ], + "score": 1.0, + "content": "factorization. In Advances in Neural Information Processing Systems, pages 7413–7424, 2019.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 109, + 524, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 109, + 524, + 507, + 542 + ], + "score": 1.0, + "content": "[11] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 132, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 132, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "On exact computation with an infinitely wide neural net. In Advances in Neural Information", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 132, + 549, + 316, + 561 + ], + "spans": [ + { + "bbox": [ + 132, + 549, + 316, + 561 + ], + "score": 1.0, + "content": "Processing Systems, pages 8141–8150, 2019.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 110, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "[12] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, and Ruosong Wang. Fine-grained analysis", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 132, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 132, + 578, + 506, + 593 + ], + "score": 1.0, + "content": "of optimization and generalization for overparameterized two-layer neural networks. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 131, + 589, + 271, + 602 + ], + "spans": [ + { + "bbox": [ + 131, + 589, + 271, + 602 + ], + "score": 1.0, + "content": "preprint arXiv:1901.08584, 2019.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 110, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "[13] Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 131, + 617, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 131, + 617, + 507, + 633 + ], + "score": 1.0, + "content": "Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 132, + 630, + 483, + 643 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 483, + 643 + ], + "score": 1.0, + "content": "closer look at memorization in deep networks. arXiv preprint arXiv:1706.05394, 2017.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 110, + 648, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 506, + 663 + ], + "score": 1.0, + "content": "[14] Nicholas Baker, Hongjing Lu, Gennady Erlikhman, and Philip J Kellman. Deep convolu-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 131, + 658, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 131, + 658, + 506, + 675 + ], + "score": 1.0, + "content": "tional networks do not classify based on global object shape. PLoS computational biology,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 132, + 670, + 231, + 683 + ], + "spans": [ + { + "bbox": [ + 132, + 670, + 231, + 683 + ], + "score": 1.0, + "content": "14(12):e1006613, 2018.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 110, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 110, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "[15] Aristide Baratin, Thomas George, César Laurent, R Devon Hjelm, Guillaume Lajoie, Pascal", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 131, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 131, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Vincent, and Simon Lacoste-Julien. Implicit regularization in deep learning: A view from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 131, + 711, + 360, + 725 + ], + "spans": [ + { + "bbox": [ + 131, + 711, + 360, + 725 + ], + "score": 1.0, + "content": "function space. arXiv preprint arXiv:2008.00938, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 26.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 70, + 339, + 85 + ], + "lines": [ + { + "bbox": [ + 105, + 69, + 341, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 341, + 88 + ], + "score": 1.0, + "content": "Acknowledgments and Disclosure of Funding", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 96, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 106, + 95, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 506, + 108 + ], + "score": 1.0, + "content": "The authors are grateful to Samsung Electronics Co., Ldt., CIFAR, and IVADO for their funding and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 506, + 119 + ], + "score": 1.0, + "content": "Calcul Québec and Compute Canada for providing us with the computing resources. We would further", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "like to acknowledge the significance of discussions and supports from Reyhane Askari Hemmat and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 140 + ], + "score": 1.0, + "content": "Faruk Ahmed. MP would like to thank Aristide Baratin, Kostiantyn Lapchevskyi, Seyed Mohammad", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 506, + 152 + ], + "score": 1.0, + "content": "Mehdi Ahmadpanah, Milad Aghajohari, Kartik Ahuja, Shagun Sodhani, and Emmanuel Bengio for", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 193, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 193, + 163 + ], + "score": 1.0, + "content": "their invaluable help.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 95, + 506, + 163 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 177, + 163, + 190 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 165, + 192 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 165, + 192 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "list", + "bbox": [ + 110, + 195, + 507, + 724 + ], + "lines": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 115, + 196, + 506, + 210 + ], + "score": 1.0, + "content": "[1] Madhu S Advani and Andrew M Saxe. High-dimensional dynamics of generalization error in", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 208, + 366, + 221 + ], + "spans": [ + { + "bbox": [ + 131, + 208, + 366, + 221 + ], + "score": 1.0, + "content": "neural networks. arXiv preprint arXiv:1710.03667, 2017.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "[2] Madhu S Advani, Andrew M Saxe, and Haim Sompolinsky. High-dimensional dynamics of", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 236, + 392, + 251 + ], + "spans": [ + { + "bbox": [ + 131, + 236, + 392, + 251 + ], + "score": 1.0, + "content": "generalization error in neural networks. Neural Networks, 2020.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 257, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 257, + 506, + 270 + ], + "score": 1.0, + "content": "[3] Kartik Ahuja, Karthikeyan Shanmugam, and Amit Dhurandhar. Linear regression games:", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 132, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "Convergence guarantees to approximate out-of-distribution solutions. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 132, + 278, + 236, + 290 + ], + "spans": [ + { + "bbox": [ + 132, + 278, + 236, + 290 + ], + "score": 1.0, + "content": "arXiv:2010.15234, 2020.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 116, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "[4] Kartik Ahuja, Karthikeyan Shanmugam, Kush Varshney, and Amit Dhurandhar. Invariant risk", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 133, + 308, + 382, + 321 + ], + "spans": [ + { + "bbox": [ + 133, + 308, + 382, + 321 + ], + "score": 1.0, + "content": "minimization games. arXiv preprint arXiv:2002.04692, 2020.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "[5] Naveed Akhtar and Ajmal Mian. Threat of adversarial attacks on deep learning in computer", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 338, + 353, + 351 + ], + "spans": [ + { + "bbox": [ + 132, + 338, + 353, + 351 + ], + "score": 1.0, + "content": "vision: A survey. IEEE Access, 6:14410–14430, 2018.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "[6] Adelin Albert and John A Anderson. On the existence of maximum likelihood estimates in", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 367, + 367, + 381 + ], + "spans": [ + { + "bbox": [ + 131, + 367, + 367, + 381 + ], + "score": 1.0, + "content": "logistic regression models. Biometrika, 71(1):1–10, 1984.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 385, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 506, + 400 + ], + "score": 1.0, + "content": "[7] Zeyuan Allen-Zhu, Yuanzhi Li, and Yingyu Liang. Learning and generalization in overpa-", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 132, + 397, + 504, + 410 + ], + "score": 1.0, + "content": "rameterized neural networks, going beyond two layers. In Advances in neural information", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 131, + 408, + 314, + 421 + ], + "spans": [ + { + "bbox": [ + 131, + 408, + 314, + 421 + ], + "score": 1.0, + "content": "processing systems, pages 6158–6169, 2019.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[8] Zeyuan Allen-Zhu, Yuanzhi Li, and Zhao Song. A convergence theory for deep learning via", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 131, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "over-parameterization. In International Conference on Machine Learning, pages 242–252.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 448, + 191, + 461 + ], + "spans": [ + { + "bbox": [ + 132, + 448, + 191, + 461 + ], + "score": 1.0, + "content": "PMLR, 2019.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 115, + 467, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 507, + 482 + ], + "score": 1.0, + "content": "[9] Martin Arjovsky, Léon Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk mini-", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 478, + 336, + 491 + ], + "spans": [ + { + "bbox": [ + 131, + 478, + 336, + 491 + ], + "score": 1.0, + "content": "mization. arXiv preprint arXiv:1907.02893, 2019.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 496, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 109, + 496, + 506, + 511 + ], + "score": 1.0, + "content": "[10] Sanjeev Arora, Nadav Cohen, Wei Hu, and Yuping Luo. Implicit regularization in deep matrix", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 507, + 507, + 522 + ], + "spans": [ + { + "bbox": [ + 131, + 507, + 507, + 522 + ], + "score": 1.0, + "content": "factorization. In Advances in Neural Information Processing Systems, pages 7413–7424, 2019.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 109, + 524, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 109, + 524, + 507, + 542 + ], + "score": 1.0, + "content": "[11] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang.", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 132, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "On exact computation with an infinitely wide neural net. In Advances in Neural Information", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 132, + 549, + 316, + 561 + ], + "spans": [ + { + "bbox": [ + 132, + 549, + 316, + 561 + ], + "score": 1.0, + "content": "Processing Systems, pages 8141–8150, 2019.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 567, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 506, + 582 + ], + "score": 1.0, + "content": "[12] Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, and Ruosong Wang. Fine-grained analysis", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 578, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 132, + 578, + 506, + 593 + ], + "score": 1.0, + "content": "of optimization and generalization for overparameterized two-layer neural networks. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 131, + 589, + 271, + 602 + ], + "spans": [ + { + "bbox": [ + 131, + 589, + 271, + 602 + ], + "score": 1.0, + "content": "preprint arXiv:1901.08584, 2019.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 607, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 110, + 607, + 506, + 622 + ], + "score": 1.0, + "content": "[13] Devansh Arpit, Stanisław Jastrz˛ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio,", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 617, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 131, + 617, + 507, + 633 + ], + "score": 1.0, + "content": "Maxinder S Kanwal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 132, + 630, + 483, + 643 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 483, + 643 + ], + "score": 1.0, + "content": "closer look at memorization in deep networks. arXiv preprint arXiv:1706.05394, 2017.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 648, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 110, + 648, + 506, + 663 + ], + "score": 1.0, + "content": "[14] Nicholas Baker, Hongjing Lu, Gennady Erlikhman, and Philip J Kellman. Deep convolu-", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 658, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 131, + 658, + 506, + 675 + ], + "score": 1.0, + "content": "tional networks do not classify based on global object shape. PLoS computational biology,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 132, + 670, + 231, + 683 + ], + "spans": [ + { + "bbox": [ + 132, + 670, + 231, + 683 + ], + "score": 1.0, + "content": "14(12):e1006613, 2018.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 110, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "[15] Aristide Baratin, Thomas George, César Laurent, R Devon Hjelm, Guillaume Lajoie, Pascal", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 699, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 131, + 699, + 506, + 714 + ], + "score": 1.0, + "content": "Vincent, and Simon Lacoste-Julien. Implicit regularization in deep learning: A view from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 131, + 711, + 360, + 725 + ], + "spans": [ + { + "bbox": [ + 131, + 711, + 360, + 725 + ], + "score": 1.0, + "content": "function space. arXiv preprint arXiv:2008.00938, 2020.", + "type": "text" + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[16] Sara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. In Proceedings", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 83, + 456, + 97 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 456, + 97 + ], + "score": 1.0, + "content": "of the European Conference on Computer Vision (ECCV), pages 456–473, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 110, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "[17] Yonatan Belinkov and Yonatan Bisk. Synthetic and natural noise both break neural machine", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 113, + 345, + 127 + ], + "spans": [ + { + "bbox": [ + 131, + 113, + 345, + 127 + ], + "score": 1.0, + "content": "translation. arXiv preprint arXiv:1711.02173, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "[18] Alberto Bietti and Julien Mairal. On the inductive bias of neural tangent kernels. In Advances", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 144, + 416, + 158 + ], + "spans": [ + { + "bbox": [ + 131, + 144, + 416, + 158 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pages 12893–12904, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 162, + 507, + 177 + ], + "spans": [ + { + "bbox": [ + 108, + 162, + 507, + 177 + ], + "score": 1.0, + "content": "[19] Wieland Brendel and Matthias Bethge. Approximating cnns with bag-of-local-features models", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 173, + 447, + 187 + ], + "spans": [ + { + "bbox": [ + 131, + 173, + 447, + 187 + ], + "score": 1.0, + "content": "works surprisingly well on imagenet. arXiv preprint arXiv:1904.00760, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 192, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 111, + 192, + 507, + 206 + ], + "score": 1.0, + "content": "[20] Alon Brutzkus, Amir Globerson, Eran Malach, and Shai Shalev-Shwartz. Sgd learns over-", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 203, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 132, + 203, + 506, + 218 + ], + "score": 1.0, + "content": "parameterized networks that provably generalize on linearly separable data. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 132, + 215, + 236, + 227 + ], + "spans": [ + { + "bbox": [ + 132, + 215, + 236, + 227 + ], + "score": 1.0, + "content": "arXiv:1710.10174, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 233, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 111, + 233, + 506, + 247 + ], + "score": 1.0, + "content": "[21] Christopher JC Burges and David J Crisp. Uniqueness of the svm solution. Advances in neural", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 244, + 343, + 258 + ], + "spans": [ + { + "bbox": [ + 130, + 244, + 343, + 258 + ], + "score": 1.0, + "content": "information processing systems, 12:223–229, 2000.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 111, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "[22] Yuan Cao, Zhiying Fang, Yue Wu, Ding-Xuan Zhou, and Quanquan Gu. Towards understand-", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 274, + 448, + 288 + ], + "spans": [ + { + "bbox": [ + 130, + 274, + 448, + 288 + ], + "score": 1.0, + "content": "ing the spectral bias of deep learning. arXiv preprint arXiv:1912.01198, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 111, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "[23] Yuan Cao and Quanquan Gu. Generalization bounds of stochastic gradient descent for wide", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 302, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 130, + 302, + 507, + 320 + ], + "score": 1.0, + "content": "and deep neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 316, + 216, + 328 + ], + "spans": [ + { + "bbox": [ + 132, + 316, + 216, + 328 + ], + "score": 1.0, + "content": "10836–10846, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 334, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 111, + 334, + 505, + 348 + ], + "score": 1.0, + "content": "[24] Zixiang Chen, Yuan Cao, Quanquan Gu, and Tong Zhang. A generalized neural tangent kernel", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 345, + 453, + 359 + ], + "spans": [ + { + "bbox": [ + 132, + 345, + 453, + 359 + ], + "score": 1.0, + "content": "analysis for two-layer neural networks. arXiv preprint arXiv:2002.04026, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 363, + 507, + 379 + ], + "spans": [ + { + "bbox": [ + 110, + 363, + 507, + 379 + ], + "score": 1.0, + "content": "[25] Lenaic Chizat and Francis Bach. A note on lazy training in supervised differentiable program-", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 375, + 333, + 388 + ], + "spans": [ + { + "bbox": [ + 130, + 375, + 333, + 388 + ], + "score": 1.0, + "content": "ming. arXiv preprint arXiv:1812.07956, 1, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 111, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "[26] Remi Tachet des Combes, Mohammad Pezeshki, Samira Shabanian, Aaron Courville, and", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 405, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 131, + 405, + 506, + 420 + ], + "score": 1.0, + "content": "Yoshua Bengio. On the learning dynamics of deep neural networks. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 132, + 417, + 237, + 429 + ], + "spans": [ + { + "bbox": [ + 132, + 417, + 237, + 429 + ], + "score": 1.0, + "content": "arXiv:1809.06848, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 110, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "[27] Thomas M Cover. Geometrical and statistical properties of systems of linear inequalities with", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 445, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 130, + 445, + 507, + 460 + ], + "score": 1.0, + "content": "applications in pattern recognition. IEEE transactions on electronic computers, 0(3):326–334,", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 457, + 158, + 470 + ], + "spans": [ + { + "bbox": [ + 132, + 457, + 158, + 470 + ], + "score": 1.0, + "content": "1965.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 476, + 507, + 490 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 507, + 490 + ], + "score": 1.0, + "content": "[28] Simon S Du, Wei Hu, and Jason D Lee. Algorithmic regularization in learning deep homo-", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 132, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "geneous models: Layers are automatically balanced. In Advances in Neural Information", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 131, + 498, + 308, + 512 + ], + "spans": [ + { + "bbox": [ + 131, + 498, + 308, + 512 + ], + "score": 1.0, + "content": "Processing Systems, pages 384–395, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 517, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 111, + 517, + 505, + 531 + ], + "score": 1.0, + "content": "[29] Simon S Du, Xiyu Zhai, Barnabas Poczos, and Aarti Singh. Gradient descent provably", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 528, + 486, + 541 + ], + "spans": [ + { + "bbox": [ + 132, + 528, + 486, + 541 + ], + "score": 1.0, + "content": "optimizes over-parameterized neural networks. arXiv preprint arXiv:1810.02054, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 547, + 507, + 561 + ], + "spans": [ + { + "bbox": [ + 110, + 547, + 507, + 561 + ], + "score": 1.0, + "content": "[30] Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel,", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 132, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 130, + 568, + 271, + 582 + ], + "spans": [ + { + "bbox": [ + 130, + 568, + 271, + 582 + ], + "score": 1.0, + "content": "preprint arXiv:2004.07780, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 110, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "[31] Thomas George. Nngeometry: Easy and fast fisher information matrices and neural tangent", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 600, + 246, + 612 + ], + "spans": [ + { + "bbox": [ + 132, + 600, + 246, + 612 + ], + "score": 1.0, + "content": "kernels in pytorch. 0, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 618, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 111, + 618, + 505, + 632 + ], + "score": 1.0, + "content": "[32] Gauthier Gidel, Francis Bach, and Simon Lacoste-Julien. Implicit regularization of discrete", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 628, + 507, + 644 + ], + "spans": [ + { + "bbox": [ + 131, + 628, + 507, + 644 + ], + "score": 1.0, + "content": "gradient dynamics in linear neural networks. In Advances in Neural Information Processing", + "type": "text", + "cross_page": true + } + ], + "index": 39 + }, + { + "bbox": [ + 131, + 639, + 270, + 653 + ], + "spans": [ + { + "bbox": [ + 131, + 639, + 270, + 653 + ], + "score": 1.0, + "content": "Systems, pages 3202–3211, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 111, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "[33] Sebastian Goldt, Madhu Advani, Andrew M Saxe, Florent Krzakala, and Lenka Zdeborová.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 132, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "Dynamics of stochastic gradient descent for two-layer neural networks in the teacher-student", + "type": "text", + "cross_page": true + } + ], + "index": 42 + }, + { + "bbox": [ + 132, + 681, + 485, + 695 + ], + "spans": [ + { + "bbox": [ + 132, + 681, + 485, + 695 + ], + "score": 1.0, + "content": "setup. In Advances in Neural Information Processing Systems, pages 6981–6991, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "score": 1.0, + "content": "[34] Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adver-", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 711, + 359, + 725 + ], + "spans": [ + { + "bbox": [ + 132, + 711, + 359, + 725 + ], + "score": 1.0, + "content": "sarial examples. arXiv preprint arXiv:1412.6572, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 110, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[35] Suriya Gunasekar, Jason D Lee, Daniel Soudry, and Nati Srebro. Implicit bias of gradient", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 81, + 506, + 99 + ], + "spans": [ + { + "bbox": [ + 130, + 81, + 506, + 99 + ], + "score": 1.0, + "content": "descent on linear convolutional networks. In Advances in Neural Information Processing", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 131, + 94, + 270, + 108 + ], + "spans": [ + { + "bbox": [ + 131, + 94, + 270, + 108 + ], + "score": 1.0, + "content": "Systems, pages 9461–9471, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 110, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "[36] Suriya Gunasekar, Blake E Woodworth, Srinadh Bhojanapalli, Behnam Neyshabur, and Nati", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 123, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 132, + 123, + 505, + 138 + ], + "score": 1.0, + "content": "Srebro. Implicit regularization in matrix factorization. In Advances in Neural Information", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 136, + 317, + 150 + ], + "spans": [ + { + "bbox": [ + 132, + 136, + 317, + 150 + ], + "score": 1.0, + "content": "Processing Systems, pages 6151–6159, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 155, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 506, + 167 + ], + "score": 1.0, + "content": "[37] Suchin Gururangan, Swabha Swayamdipta, Omer Levy, Roy Schwartz, Samuel R Bowman,", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 131, + 164, + 506, + 180 + ], + "score": 1.0, + "content": "and Noah A Smith. Annotation artifacts in natural language inference data. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 132, + 177, + 236, + 189 + ], + "spans": [ + { + "bbox": [ + 132, + 177, + 236, + 189 + ], + "score": 1.0, + "content": "arXiv:1803.02324, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 110, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "[38] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 207, + 507, + 221 + ], + "spans": [ + { + "bbox": [ + 132, + 207, + 507, + 221 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 132, + 216, + 223, + 231 + ], + "spans": [ + { + "bbox": [ + 132, + 216, + 223, + 231 + ], + "score": 1.0, + "content": "pages 770–778, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 111, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "[39] Christina Heinze-Deml and Nicolai Meinshausen. Conditional variance penalties and domain", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 246, + 363, + 261 + ], + "spans": [ + { + "bbox": [ + 131, + 246, + 363, + 261 + ], + "score": 1.0, + "content": "shift robustness. arXiv preprint arXiv:1710.11469, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[40] Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 277, + 419, + 290 + ], + "spans": [ + { + "bbox": [ + 131, + 277, + 419, + 290 + ], + "score": 1.0, + "content": "corruptions and perturbations. arXiv preprint arXiv:1903.12261, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 111, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "[41] Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 307, + 464, + 321 + ], + "spans": [ + { + "bbox": [ + 132, + 307, + 464, + 321 + ], + "score": 1.0, + "content": "distribution examples in neural networks. arXiv preprint arXiv:1610.02136, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 110, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "[42] Katherine L Hermann and Andrew K Lampinen. What shapes feature representations?", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 337, + 483, + 352 + ], + "spans": [ + { + "bbox": [ + 132, + 337, + 483, + 352 + ], + "score": 1.0, + "content": "exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 355, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 110, + 355, + 506, + 370 + ], + "score": 1.0, + "content": "[43] Cho-Jui Hsieh, Kai-Wei Chang, Chih-Jen Lin, S Sathiya Keerthi, and Sellamanickam Sun-", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 367, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 132, + 367, + 506, + 382 + ], + "score": 1.0, + "content": "dararajan. A dual coordinate descent method for large-scale linear svm. In Proceedings of the", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 132, + 378, + 432, + 392 + ], + "spans": [ + { + "bbox": [ + 132, + 378, + 432, + 392 + ], + "score": 1.0, + "content": "25th international conference on Machine learning, pages 408–415, 2008.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 397, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 110, + 397, + 506, + 411 + ], + "score": 1.0, + "content": "[44] Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 407, + 339, + 421 + ], + "spans": [ + { + "bbox": [ + 131, + 407, + 339, + 421 + ], + "score": 1.0, + "content": "hierarchy. arXiv preprint arXiv:1909.08156, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 110, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[45] Kaixuan Huang, Yuqing Wang, Molei Tao, and Tuo Zhao. Why do deep residual networks", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 437, + 508, + 453 + ], + "spans": [ + { + "bbox": [ + 130, + 437, + 508, + 453 + ], + "score": 1.0, + "content": "generalize better than deep feedforward networks?—a neural tangent kernel perspective.", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 450, + 386, + 462 + ], + "spans": [ + { + "bbox": [ + 132, + 450, + 386, + 462 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 111, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "[46] Like Hui and Mikhail Belkin. Evaluation of neural architectures trained with square loss vs", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 478, + 443, + 493 + ], + "spans": [ + { + "bbox": [ + 132, + 478, + 443, + 493 + ], + "score": 1.0, + "content": "cross-entropy in classification tasks. arXiv preprint arXiv:2006.07322, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 110, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "[47] Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 509, + 448, + 522 + ], + "spans": [ + { + "bbox": [ + 131, + 509, + 448, + 522 + ], + "score": 1.0, + "content": "with limited queries and information. arXiv preprint arXiv:1804.08598, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 110, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "[48] Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 132, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "Aleksander Madry. Adversarial examples are not bugs, they are features. In Advances in", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 550, + 386, + 564 + ], + "spans": [ + { + "bbox": [ + 131, + 550, + 386, + 564 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pages 125–136, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 567, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 507, + 584 + ], + "score": 1.0, + "content": "[49] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 579, + 441, + 593 + ], + "spans": [ + { + "bbox": [ + 131, + 579, + 441, + 593 + ], + "score": 1.0, + "content": "by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 111, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "[50] Tommi S Jaakkola and David Haussler. Probabilistic kernel regression models. In AISTATS,", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 609, + 160, + 624 + ], + "spans": [ + { + "bbox": [ + 131, + 609, + 160, + 624 + ], + "score": 1.0, + "content": "1999.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 110, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "[51] Jörn-Henrik Jacobsen, Jens Behrmann, Richard Zemel, and Matthias Bethge. Excessive", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 639, + 471, + 654 + ], + "spans": [ + { + "bbox": [ + 130, + 639, + 471, + 654 + ], + "score": 1.0, + "content": "invariance causes adversarial vulnerability. arXiv preprint arXiv:1811.00401, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 111, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "[52] Arthur Jacot, Franck Gabriel, and Clément Hongler. Neural tangent kernel: Convergence and", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 669, + 508, + 685 + ], + "spans": [ + { + "bbox": [ + 130, + 669, + 508, + 685 + ], + "score": 1.0, + "content": "generalization in neural networks. In Advances in neural information processing systems,", + "type": "text", + "cross_page": true + } + ], + "index": 42 + }, + { + "bbox": [ + 131, + 681, + 234, + 694 + ], + "spans": [ + { + "bbox": [ + 131, + 681, + 234, + 694 + ], + "score": 1.0, + "content": "pages 8571–8580, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "score": 1.0, + "content": "[53] Ziwei Ji and Matus Telgarsky. The implicit bias of gradient descent on nonseparable data. In", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 710, + 366, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 710, + 366, + 724 + ], + "score": 1.0, + "content": "Conference on Learning Theory, pages 1772–1798, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 73, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 110, + 73, + 506, + 87 + ], + "score": 1.0, + "content": "[54] Jason Jo and Yoshua Bengio. Measuring the tendency of cnns to learn surface statistical", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 84, + 346, + 97 + ], + "spans": [ + { + "bbox": [ + 131, + 84, + 346, + 97 + ], + "score": 1.0, + "content": "regularities. arXiv preprint arXiv:1711.11561, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 102, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 111, + 102, + 507, + 116 + ], + "score": 1.0, + "content": "[55] Alexia Jolicoeur-Martineau and Ioannis Mitliagkas. Connections between support vector", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 113, + 507, + 127 + ], + "spans": [ + { + "bbox": [ + 131, + 113, + 507, + 127 + ], + "score": 1.0, + "content": "machines, wasserstein distance and gradient-penalty gans. arXiv preprint arXiv:1910.06922,", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 131, + 123, + 161, + 137 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 161, + 137 + ], + "score": 1.0, + "content": "2019.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "[56] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 130, + 153, + 265, + 166 + ], + "spans": [ + { + "bbox": [ + 130, + 153, + 265, + 166 + ], + "score": 1.0, + "content": "preprint arXiv:1412.6980, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 169, + 507, + 187 + ], + "spans": [ + { + "bbox": [ + 109, + 169, + 507, + 187 + ], + "score": 1.0, + "content": "[57] Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 183, + 169, + 195 + ], + "spans": [ + { + "bbox": [ + 132, + 183, + 169, + 195 + ], + "score": 1.0, + "content": "0, 2009.", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 200, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 506, + 214 + ], + "score": 1.0, + "content": "[58] Anders Krogh and John A Hertz. A simple weight decay can improve generalization. In", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 210, + 430, + 225 + ], + "spans": [ + { + "bbox": [ + 131, + 210, + 430, + 225 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pages 950–957, 1992.", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 228, + 507, + 243 + ], + "spans": [ + { + "bbox": [ + 109, + 228, + 507, + 243 + ], + "score": 1.0, + "content": "[59] David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 240, + 507, + 255 + ], + "spans": [ + { + "bbox": [ + 131, + 240, + 507, + 255 + ], + "score": 1.0, + "content": "Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (rex).", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 131, + 251, + 295, + 265 + ], + "spans": [ + { + "bbox": [ + 131, + 251, + 295, + 265 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2003.00688, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 270, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 110, + 270, + 506, + 284 + ], + "score": 1.0, + "content": "[60] Andrew K Lampinen and Surya Ganguli. An analytic theory of generalization dynamics and", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 281, + 462, + 293 + ], + "spans": [ + { + "bbox": [ + 132, + 281, + 462, + 293 + ], + "score": 1.0, + "content": "transfer learning in deep linear networks. arXiv preprint arXiv:1809.10374, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 109, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "[61] Sebastian Lapuschkin, Stephan Wäldchen, Alexander Binder, Grégoire Montavon, Wojciech", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 311, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 132, + 311, + 505, + 322 + ], + "score": 1.0, + "content": "Samek, and Klaus-Robert Müller. Unmasking clever hans predictors and assessing what", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 133, + 321, + 393, + 333 + ], + "spans": [ + { + "bbox": [ + 133, + 321, + 393, + 333 + ], + "score": 1.0, + "content": "machines really learn. Nature communications, 10(1):1–8, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 110, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "[62] Jaehoon Lee, Lechao Xiao, Samuel Schoenholz, Yasaman Bahri, Roman Novak, Jascha", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 132, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 131, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 131, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "models under gradient descent. In Advances in neural information processing systems, pages", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 131, + 369, + 210, + 385 + ], + "spans": [ + { + "bbox": [ + 131, + 369, + 210, + 385 + ], + "score": 1.0, + "content": "8570–8581, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 389, + 507, + 403 + ], + "spans": [ + { + "bbox": [ + 110, + 389, + 507, + 403 + ], + "score": 1.0, + "content": "[63] Kimin Lee, Kibok Lee, Honglak Lee, and Jinwoo Shin. A simple unified framework for de-", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 401, + 507, + 415 + ], + "spans": [ + { + "bbox": [ + 132, + 401, + 507, + 415 + ], + "score": 1.0, + "content": "tecting out-of-distribution samples and adversarial attacks. In Advances in Neural Information", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 131, + 412, + 316, + 426 + ], + "spans": [ + { + "bbox": [ + 131, + 412, + 316, + 426 + ], + "score": 1.0, + "content": "Processing Systems, pages 7167–7177, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 111, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "[64] Shiyu Liang, Yixuan Li, and Rayadurgam Srikant. Enhancing the reliability of out-of-", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 441, + 490, + 455 + ], + "spans": [ + { + "bbox": [ + 131, + 441, + 490, + 455 + ], + "score": 1.0, + "content": "distribution image detection in neural networks. arXiv preprint arXiv:1706.02690, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 110, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "[65] Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 131, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "wild. In Proceedings of International Conference on Computer Vision (ICCV), December", + "type": "text", + "cross_page": true + } + ], + "index": 29 + }, + { + "bbox": [ + 131, + 480, + 160, + 495 + ], + "spans": [ + { + "bbox": [ + 131, + 480, + 160, + 495 + ], + "score": 1.0, + "content": "2015.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 111, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "[66] Cong Ma, Kaizheng Wang, Yuejie Chi, and Yuxin Chen. Implicit regularization in nonconvex", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 132, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "statistical estimation: Gradient descent converges linearly for phase retrieval and matrix", + "type": "text", + "cross_page": true + } + ], + "index": 32 + }, + { + "bbox": [ + 131, + 521, + 507, + 535 + ], + "spans": [ + { + "bbox": [ + 131, + 521, + 507, + 535 + ], + "score": 1.0, + "content": "completion. In International Conference on Machine Learning, pages 3345–3354. PMLR,", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 531, + 160, + 546 + ], + "spans": [ + { + "bbox": [ + 131, + 531, + 160, + 546 + ], + "score": 1.0, + "content": "2018.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 111, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "[67] Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 560, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 131, + 560, + 507, + 576 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. arXiv preprint arXiv:1706.06083,", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 131, + 571, + 160, + 586 + ], + "spans": [ + { + "bbox": [ + 131, + 571, + 160, + 586 + ], + "score": 1.0, + "content": "2017.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 590, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 109, + 590, + 506, + 605 + ], + "score": 1.0, + "content": "[68] R Thomas McCoy, Ellie Pavlick, and Tal Linzen. Right for the wrong reasons: Diagnosing", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 600, + 498, + 616 + ], + "spans": [ + { + "bbox": [ + 131, + 600, + 498, + 616 + ], + "score": 1.0, + "content": "syntactic heuristics in natural language inference. arXiv preprint arXiv:1902.01007, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 39 + }, + { + "bbox": [ + 111, + 620, + 507, + 632 + ], + "spans": [ + { + "bbox": [ + 111, + 620, + 507, + 632 + ], + "score": 1.0, + "content": "[69] Song Mei and Andrea Montanari. The generalization error of random features regression:", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 630, + 483, + 644 + ], + "spans": [ + { + "bbox": [ + 131, + 630, + 483, + 644 + ], + "score": 1.0, + "content": "Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 110, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "[70] Preetum Nakkiran, Gal Kaplun, Dimitris Kalimeris, Tristan Yang, Benjamin L Edelman, Fred", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 658, + 507, + 674 + ], + "spans": [ + { + "bbox": [ + 131, + 658, + 507, + 674 + ], + "score": 1.0, + "content": "Zhang, and Boaz Barak. Sgd on neural networks learns functions of increasing complexity.", + "type": "text", + "cross_page": true + } + ], + "index": 43 + }, + { + "bbox": [ + 131, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 131, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.11604, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 110, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[71] Junhyun Nam, Hyuntak Cha, Sungsoo Ahn, Jaeho Lee, and Jinwoo Shin. Learning from", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 131, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "failure: Training debiased classifier from biased classifier. arXiv preprint arXiv:2007.02561,", + "type": "text", + "cross_page": true + } + ], + "index": 46 + }, + { + "bbox": [ + 131, + 709, + 161, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 709, + 161, + 724 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 47, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 70, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 108, + 70, + 507, + 88 + ], + "score": 1.0, + "content": "[72] Kamil Nar, Orhan Ocal, S Shankar Sastry, and Kannan Ramchandran. Cross-entropy", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 82, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 131, + 82, + 506, + 98 + ], + "score": 1.0, + "content": "loss and low-rank features have responsibility for adversarial examples. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 132, + 95, + 235, + 107 + ], + "spans": [ + { + "bbox": [ + 132, + 95, + 235, + 107 + ], + "score": 1.0, + "content": "arXiv:1901.08360, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 111, + 508, + 127 + ], + "spans": [ + { + "bbox": [ + 109, + 111, + 508, + 127 + ], + "score": 1.0, + "content": "[73] Kamil Nar and S Shankar Sastry. Persistency of excitation for robustness of neural networks.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 123, + 297, + 137 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 297, + 137 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.01043, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 143, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 111, + 143, + 506, + 155 + ], + "score": 1.0, + "content": "[74] Behnam Neyshabur, Ryota Tomioka, Ruslan Salakhutdinov, and Nathan Srebro. Geometry of", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 154, + 507, + 166 + ], + "spans": [ + { + "bbox": [ + 132, + 154, + 507, + 166 + ], + "score": 1.0, + "content": "optimization and implicit regularization in deep learning. arXiv preprint arXiv:1705.03071,", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 163, + 160, + 178 + ], + "spans": [ + { + "bbox": [ + 131, + 163, + 160, + 178 + ], + "score": 1.0, + "content": "2017.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 182, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 182, + 507, + 196 + ], + "score": 1.0, + "content": "[75] Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. In search of the real inductive bias:", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 193, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 132, + 193, + 507, + 208 + ], + "score": 1.0, + "content": "On the role of implicit regularization in deep learning. arXiv preprint arXiv:1412.6614, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 109, + 210, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 109, + 210, + 506, + 227 + ], + "score": 1.0, + "content": "[76] Timothy Niven and Hung-Yu Kao. Probing neural network comprehension of natural language", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 223, + 343, + 235 + ], + "spans": [ + { + "bbox": [ + 131, + 223, + 343, + 235 + ], + "score": 1.0, + "content": "arguments. arXiv preprint arXiv:1907.07355, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 240, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 110, + 240, + 506, + 254 + ], + "score": 1.0, + "content": "[77] Luke Oakden-Rayner, Jared Dunnmon, Gustavo Carneiro, and Christopher Ré. Hidden", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 252, + 507, + 266 + ], + "spans": [ + { + "bbox": [ + 132, + 252, + 507, + 266 + ], + "score": 1.0, + "content": "stratification causes clinically meaningful failures in machine learning for medical imaging.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 131, + 261, + 508, + 277 + ], + "spans": [ + { + "bbox": [ + 131, + 261, + 508, + 277 + ], + "score": 1.0, + "content": "In Proceedings of the ACM Conference on Health, Inference, and Learning, pages 151–159,", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 131, + 272, + 159, + 287 + ], + "spans": [ + { + "bbox": [ + 131, + 272, + 159, + 287 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 291, + 507, + 305 + ], + "spans": [ + { + "bbox": [ + 110, + 291, + 507, + 305 + ], + "score": 1.0, + "content": "[78] Samet Oymak, Zalan Fabian, Mingchen Li, and Mahdi Soltanolkotabi. Generalization guaran-", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 302, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 131, + 302, + 506, + 317 + ], + "score": 1.0, + "content": "tees for neural networks via harnessing the low-rank structure of the jacobian. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 132, + 314, + 236, + 326 + ], + "spans": [ + { + "bbox": [ + 132, + 314, + 236, + 326 + ], + "score": 1.0, + "content": "arXiv:1906.05392, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 110, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "[79] Giambattista Parascandolo, Alexander Neitz, Antonio Orvieto, Luigi Gresele, and Bernhard", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 342, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 132, + 342, + 507, + 356 + ], + "score": 1.0, + "content": "Schölkopf. Learning explanations that are hard to vary. arXiv preprint arXiv:2009.00329,", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 132, + 353, + 159, + 366 + ], + "spans": [ + { + "bbox": [ + 132, + 353, + 159, + 366 + ], + "score": 1.0, + "content": "2020.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 371, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 110, + 371, + 507, + 385 + ], + "score": 1.0, + "content": "[80] Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 382, + 507, + 397 + ], + "spans": [ + { + "bbox": [ + 132, + 382, + 507, + 397 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 131, + 394, + 308, + 407 + ], + "spans": [ + { + "bbox": [ + 131, + 394, + 308, + 407 + ], + "score": 1.0, + "content": "pytorch. openreview id=BJJsrmfCZ, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 411, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 507, + 426 + ], + "score": 1.0, + "content": "[81] Oskar Pfungst. Clever Hans:(the horse of Mr. Von Osten.) a contribution to experimental", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 423, + 401, + 437 + ], + "spans": [ + { + "bbox": [ + 131, + 423, + 401, + 437 + ], + "score": 1.0, + "content": "animal and human psychology. Holt, Rinehart and Winston, 1911.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 442, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 111, + 442, + 506, + 454 + ], + "score": 1.0, + "content": "[82] Tomaso Poggio, Kenji Kawaguchi, Qianli Liao, Brando Miranda, Lorenzo Rosasco, Xavier", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 131, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "Boix, Jack Hidary, and Hrushikesh Mhaskar. Theory of deep learning iii: explaining the", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 463, + 389, + 477 + ], + "spans": [ + { + "bbox": [ + 132, + 463, + 389, + 477 + ], + "score": 1.0, + "content": "non-overfitting puzzle. arXiv preprint arXiv:1801.00173, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 480, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 110, + 480, + 507, + 495 + ], + "score": 1.0, + "content": "[83] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht,", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 492, + 507, + 506 + ], + "spans": [ + { + "bbox": [ + 132, + 492, + 507, + 506 + ], + "score": 1.0, + "content": "Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 132, + 503, + 403, + 517 + ], + "spans": [ + { + "bbox": [ + 132, + 503, + 403, + 517 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 5301–5310. PMLR, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 522, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 111, + 522, + 507, + 533 + ], + "score": 1.0, + "content": "[84] Jonas Rauber, Wieland Brendel, and Matthias Bethge. Foolbox: A python toolbox to bench-", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 531, + 494, + 545 + ], + "spans": [ + { + "bbox": [ + 132, + 531, + 494, + 545 + ], + "score": 1.0, + "content": "mark the robustness of machine learning models. arXiv preprint arXiv:1707.04131, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 110, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 110, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "[85] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. \" why should i trust you?\" explaining", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 561, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 132, + 561, + 507, + 575 + ], + "score": 1.0, + "content": "the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 132, + 572, + 448, + 586 + ], + "spans": [ + { + "bbox": [ + 132, + 572, + 448, + 586 + ], + "score": 1.0, + "content": "conference on knowledge discovery and data mining, pages 1135–1144, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 590, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 110, + 590, + 507, + 604 + ], + "score": 1.0, + "content": "[86] Michael Roberts. Machine learning for covid-19 diagnosis: Promising, but still too flawed,", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 601, + 178, + 615 + ], + "spans": [ + { + "bbox": [ + 132, + 601, + 178, + 615 + ], + "score": 1.0, + "content": "Mar 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 110, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "[87] Basri Ronen, David Jacobs, Yoni Kasten, and Shira Kritchman. The convergence rate of neural", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "networks for learned functions of different frequencies. In Advances in Neural Information", + "type": "text", + "cross_page": true + } + ], + "index": 41 + }, + { + "bbox": [ + 132, + 641, + 316, + 655 + ], + "spans": [ + { + "bbox": [ + 132, + 641, + 316, + 655 + ], + "score": 1.0, + "content": "Processing Systems, pages 4761–4771, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 110, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "[88] Amir Rosenfeld, Richard Zemel, and John K Tsotsos. The elephant in the room. arXiv preprint", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 131, + 671, + 237, + 684 + ], + "spans": [ + { + "bbox": [ + 131, + 671, + 237, + 684 + ], + "score": 1.0, + "content": "arXiv:1808.03305, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 110, + 688, + 506, + 703 + ], + "score": 1.0, + "content": "[89] Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally", + "type": "text", + "cross_page": true + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 132, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "robust neural networks for group shifts: On the importance of regularization for worst-case", + "type": "text", + "cross_page": true + } + ], + "index": 46 + }, + { + "bbox": [ + 131, + 711, + 357, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 711, + 357, + 724 + ], + "score": 1.0, + "content": "generalization. arXiv preprint arXiv:1911.08731, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 47, + "is_list_end_line": true + } + ], + "index": 26.5, + "bbox_fs": [ + 109, + 196, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 46, + 507, + 726 + ], + "lines": [ + { + "bbox": [ + 109, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 109, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[16] Sara Beery, Grant Van Horn, and Pietro Perona. Recognition in terra incognita. In Proceedings", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 83, + 456, + 97 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 456, + 97 + ], + "score": 1.0, + "content": "of the European Conference on Computer Vision (ECCV), pages 456–473, 2018.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 110, + 102, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 110, + 102, + 506, + 117 + ], + "score": 1.0, + "content": "[17] Yonatan Belinkov and Yonatan Bisk. Synthetic and natural noise both break neural machine", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 131, + 113, + 345, + 127 + ], + "spans": [ + { + "bbox": [ + 131, + 113, + 345, + 127 + ], + "score": 1.0, + "content": "translation. arXiv preprint arXiv:1711.02173, 2017.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "[18] Alberto Bietti and Julien Mairal. On the inductive bias of neural tangent kernels. In Advances", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 131, + 144, + 416, + 158 + ], + "spans": [ + { + "bbox": [ + 131, + 144, + 416, + 158 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, pages 12893–12904, 2019.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 108, + 162, + 507, + 177 + ], + "spans": [ + { + "bbox": [ + 108, + 162, + 507, + 177 + ], + "score": 1.0, + "content": "[19] Wieland Brendel and Matthias Bethge. Approximating cnns with bag-of-local-features models", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 173, + 447, + 187 + ], + "spans": [ + { + "bbox": [ + 131, + 173, + 447, + 187 + ], + "score": 1.0, + "content": "works surprisingly well on imagenet. arXiv preprint arXiv:1904.00760, 2019.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 111, + 192, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 111, + 192, + 507, + 206 + ], + "score": 1.0, + "content": "[20] Alon Brutzkus, Amir Globerson, Eran Malach, and Shai Shalev-Shwartz. Sgd learns over-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 132, + 203, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 132, + 203, + 506, + 218 + ], + "score": 1.0, + "content": "parameterized networks that provably generalize on linearly separable data. arXiv preprint", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 132, + 215, + 236, + 227 + ], + "spans": [ + { + "bbox": [ + 132, + 215, + 236, + 227 + ], + "score": 1.0, + "content": "arXiv:1710.10174, 2017.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 111, + 233, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 111, + 233, + 506, + 247 + ], + "score": 1.0, + "content": "[21] Christopher JC Burges and David J Crisp. Uniqueness of the svm solution. Advances in neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 130, + 244, + 343, + 258 + ], + "spans": [ + { + "bbox": [ + 130, + 244, + 343, + 258 + ], + "score": 1.0, + "content": "information processing systems, 12:223–229, 2000.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 111, + 263, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 111, + 263, + 507, + 277 + ], + "score": 1.0, + "content": "[22] Yuan Cao, Zhiying Fang, Yue Wu, Ding-Xuan Zhou, and Quanquan Gu. Towards understand-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 130, + 274, + 448, + 288 + ], + "spans": [ + { + "bbox": [ + 130, + 274, + 448, + 288 + ], + "score": 1.0, + "content": "ing the spectral bias of deep learning. arXiv preprint arXiv:1912.01198, 2019.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 111, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 111, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "[23] Yuan Cao and Quanquan Gu. Generalization bounds of stochastic gradient descent for wide", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 130, + 302, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 130, + 302, + 507, + 320 + ], + "score": 1.0, + "content": "and deep neural networks. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 316, + 216, + 328 + ], + "spans": [ + { + "bbox": [ + 132, + 316, + 216, + 328 + ], + "score": 1.0, + "content": "10836–10846, 2019.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 111, + 334, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 111, + 334, + 505, + 348 + ], + "score": 1.0, + "content": "[24] Zixiang Chen, Yuan Cao, Quanquan Gu, and Tong Zhang. A generalized neural tangent kernel", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 345, + 453, + 359 + ], + "spans": [ + { + "bbox": [ + 132, + 345, + 453, + 359 + ], + "score": 1.0, + "content": "analysis for two-layer neural networks. arXiv preprint arXiv:2002.04026, 2020.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 363, + 507, + 379 + ], + "spans": [ + { + "bbox": [ + 110, + 363, + 507, + 379 + ], + "score": 1.0, + "content": "[25] Lenaic Chizat and Francis Bach. A note on lazy training in supervised differentiable program-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 130, + 375, + 333, + 388 + ], + "spans": [ + { + "bbox": [ + 130, + 375, + 333, + 388 + ], + "score": 1.0, + "content": "ming. arXiv preprint arXiv:1812.07956, 1, 2018.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 111, + 394, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 111, + 394, + 506, + 408 + ], + "score": 1.0, + "content": "[26] Remi Tachet des Combes, Mohammad Pezeshki, Samira Shabanian, Aaron Courville, and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 131, + 405, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 131, + 405, + 506, + 420 + ], + "score": 1.0, + "content": "Yoshua Bengio. On the learning dynamics of deep neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 132, + 417, + 237, + 429 + ], + "spans": [ + { + "bbox": [ + 132, + 417, + 237, + 429 + ], + "score": 1.0, + "content": "arXiv:1809.06848, 2018.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 110, + 435, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 110, + 435, + 506, + 448 + ], + "score": 1.0, + "content": "[27] Thomas M Cover. Geometrical and statistical properties of systems of linear inequalities with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 130, + 445, + 507, + 460 + ], + "spans": [ + { + "bbox": [ + 130, + 445, + 507, + 460 + ], + "score": 1.0, + "content": "applications in pattern recognition. IEEE transactions on electronic computers, 0(3):326–334,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 457, + 158, + 470 + ], + "spans": [ + { + "bbox": [ + 132, + 457, + 158, + 470 + ], + "score": 1.0, + "content": "1965.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 110, + 476, + 507, + 490 + ], + "spans": [ + { + "bbox": [ + 110, + 476, + 507, + 490 + ], + "score": 1.0, + "content": "[28] Simon S Du, Wei Hu, and Jason D Lee. Algorithmic regularization in learning deep homo-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 132, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "geneous models: Layers are automatically balanced. In Advances in Neural Information", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 131, + 498, + 308, + 512 + ], + "spans": [ + { + "bbox": [ + 131, + 498, + 308, + 512 + ], + "score": 1.0, + "content": "Processing Systems, pages 384–395, 2018.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 111, + 517, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 111, + 517, + 505, + 531 + ], + "score": 1.0, + "content": "[29] Simon S Du, Xiyu Zhai, Barnabas Poczos, and Aarti Singh. Gradient descent provably", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 132, + 528, + 486, + 541 + ], + "spans": [ + { + "bbox": [ + 132, + 528, + 486, + 541 + ], + "score": 1.0, + "content": "optimizes over-parameterized neural networks. arXiv preprint arXiv:1810.02054, 2018.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 110, + 547, + 507, + 561 + ], + "spans": [ + { + "bbox": [ + 110, + 547, + 507, + 561 + ], + "score": 1.0, + "content": "[30] Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 132, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 132, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. arXiv", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 130, + 568, + 271, + 582 + ], + "spans": [ + { + "bbox": [ + 130, + 568, + 271, + 582 + ], + "score": 1.0, + "content": "preprint arXiv:2004.07780, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 110, + 588, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 110, + 588, + 506, + 602 + ], + "score": 1.0, + "content": "[31] Thomas George. Nngeometry: Easy and fast fisher information matrices and neural tangent", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 132, + 600, + 246, + 612 + ], + "spans": [ + { + "bbox": [ + 132, + 600, + 246, + 612 + ], + "score": 1.0, + "content": "kernels in pytorch. 0, 2020.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 111, + 618, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 111, + 618, + 505, + 632 + ], + "score": 1.0, + "content": "[32] Gauthier Gidel, Francis Bach, and Simon Lacoste-Julien. Implicit regularization of discrete", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 131, + 628, + 507, + 644 + ], + "spans": [ + { + "bbox": [ + 131, + 628, + 507, + 644 + ], + "score": 1.0, + "content": "gradient dynamics in linear neural networks. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 131, + 639, + 270, + 653 + ], + "spans": [ + { + "bbox": [ + 131, + 639, + 270, + 653 + ], + "score": 1.0, + "content": "Systems, pages 3202–3211, 2019.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 111, + 659, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 111, + 659, + 506, + 671 + ], + "score": 1.0, + "content": "[33] Sebastian Goldt, Madhu Advani, Andrew M Saxe, Florent Krzakala, and Lenka Zdeborová.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 132, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 132, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "Dynamics of stochastic gradient descent for two-layer neural networks in the teacher-student", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 132, + 681, + 485, + 695 + ], + "spans": [ + { + "bbox": [ + 132, + 681, + 485, + 695 + ], + "score": 1.0, + "content": "setup. In Advances in Neural Information Processing Systems, pages 6981–6991, 2019.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "score": 1.0, + "content": "[34] Ian J Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adver-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 132, + 711, + 359, + 725 + ], + "spans": [ + { + "bbox": [ + 132, + 711, + 359, + 725 + ], + "score": 1.0, + "content": "sarial examples. arXiv preprint arXiv:1412.6572, 2014.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 108, + 46, + 507, + 726 + ], + "lines": [], + "index": 22.5, + "bbox_fs": [ + 108, + 72, + 507, + 725 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 110, + 39, + 507, + 728 + ], + "lines": [ + { + "bbox": [ + 110, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 110, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[35] Suriya Gunasekar, Jason D Lee, Daniel Soudry, and Nati Srebro. Implicit bias of gradient", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 130, + 81, + 506, + 99 + ], + "spans": [ + { + "bbox": [ + 130, + 81, + 506, + 99 + ], + "score": 1.0, + "content": "descent on linear convolutional networks. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 131, + 94, + 270, + 108 + ], + "spans": [ + { + "bbox": [ + 131, + 94, + 270, + 108 + ], + "score": 1.0, + "content": "Systems, pages 9461–9471, 2018.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 110, + 113, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 110, + 113, + 506, + 127 + ], + "score": 1.0, + "content": "[36] Suriya Gunasekar, Blake E Woodworth, Srinadh Bhojanapalli, Behnam Neyshabur, and Nati", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 132, + 123, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 132, + 123, + 505, + 138 + ], + "score": 1.0, + "content": "Srebro. Implicit regularization in matrix factorization. In Advances in Neural Information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 136, + 317, + 150 + ], + "spans": [ + { + "bbox": [ + 132, + 136, + 317, + 150 + ], + "score": 1.0, + "content": "Processing Systems, pages 6151–6159, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 155, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 506, + 167 + ], + "score": 1.0, + "content": "[37] Suchin Gururangan, Swabha Swayamdipta, Omer Levy, Roy Schwartz, Samuel R Bowman,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 164, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 131, + 164, + 506, + 180 + ], + "score": 1.0, + "content": "and Noah A Smith. Annotation artifacts in natural language inference data. arXiv preprint", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 132, + 177, + 236, + 189 + ], + "spans": [ + { + "bbox": [ + 132, + 177, + 236, + 189 + ], + "score": 1.0, + "content": "arXiv:1803.02324, 2018.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 110, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "[38] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 132, + 207, + 507, + 221 + ], + "spans": [ + { + "bbox": [ + 132, + 207, + 507, + 221 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 132, + 216, + 223, + 231 + ], + "spans": [ + { + "bbox": [ + 132, + 216, + 223, + 231 + ], + "score": 1.0, + "content": "pages 770–778, 2016.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 237, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 111, + 237, + 506, + 249 + ], + "score": 1.0, + "content": "[39] Christina Heinze-Deml and Nicolai Meinshausen. Conditional variance penalties and domain", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 131, + 246, + 363, + 261 + ], + "spans": [ + { + "bbox": [ + 131, + 246, + 363, + 261 + ], + "score": 1.0, + "content": "shift robustness. arXiv preprint arXiv:1710.11469, 2017.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 110, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "[40] Dan Hendrycks and Thomas Dietterich. Benchmarking neural network robustness to common", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 131, + 277, + 419, + 290 + ], + "spans": [ + { + "bbox": [ + 131, + 277, + 419, + 290 + ], + "score": 1.0, + "content": "corruptions and perturbations. arXiv preprint arXiv:1903.12261, 2019.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 111, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 111, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "[41] Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 307, + 464, + 321 + ], + "spans": [ + { + "bbox": [ + 132, + 307, + 464, + 321 + ], + "score": 1.0, + "content": "distribution examples in neural networks. arXiv preprint arXiv:1610.02136, 2016.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 110, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 110, + 326, + 506, + 340 + ], + "score": 1.0, + "content": "[42] Katherine L Hermann and Andrew K Lampinen. What shapes feature representations?", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 337, + 483, + 352 + ], + "spans": [ + { + "bbox": [ + 132, + 337, + 483, + 352 + ], + "score": 1.0, + "content": "exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 110, + 355, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 110, + 355, + 506, + 370 + ], + "score": 1.0, + "content": "[43] Cho-Jui Hsieh, Kai-Wei Chang, Chih-Jen Lin, S Sathiya Keerthi, and Sellamanickam Sun-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 132, + 367, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 132, + 367, + 506, + 382 + ], + "score": 1.0, + "content": "dararajan. A dual coordinate descent method for large-scale linear svm. In Proceedings of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 132, + 378, + 432, + 392 + ], + "spans": [ + { + "bbox": [ + 132, + 378, + 432, + 392 + ], + "score": 1.0, + "content": "25th international conference on Machine learning, pages 408–415, 2008.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 397, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 110, + 397, + 506, + 411 + ], + "score": 1.0, + "content": "[44] Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 131, + 407, + 339, + 421 + ], + "spans": [ + { + "bbox": [ + 131, + 407, + 339, + 421 + ], + "score": 1.0, + "content": "hierarchy. arXiv preprint arXiv:1909.08156, 2019.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 110, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 110, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "[45] Kaixuan Huang, Yuqing Wang, Molei Tao, and Tuo Zhao. Why do deep residual networks", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 130, + 437, + 508, + 453 + ], + "spans": [ + { + "bbox": [ + 130, + 437, + 508, + 453 + ], + "score": 1.0, + "content": "generalize better than deep feedforward networks?—a neural tangent kernel perspective.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 450, + 386, + 462 + ], + "spans": [ + { + "bbox": [ + 132, + 450, + 386, + 462 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 33, 2020.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 111, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 111, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "[46] Like Hui and Mikhail Belkin. Evaluation of neural architectures trained with square loss vs", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 478, + 443, + 493 + ], + "spans": [ + { + "bbox": [ + 132, + 478, + 443, + 493 + ], + "score": 1.0, + "content": "cross-entropy in classification tasks. arXiv preprint arXiv:2006.07322, 2020.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 110, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 110, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "[47] Andrew Ilyas, Logan Engstrom, Anish Athalye, and Jessy Lin. Black-box adversarial attacks", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 131, + 509, + 448, + 522 + ], + "spans": [ + { + "bbox": [ + 131, + 509, + 448, + 522 + ], + "score": 1.0, + "content": "with limited queries and information. arXiv preprint arXiv:1804.08598, 2018.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 110, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 110, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "[48] Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 132, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 132, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "Aleksander Madry. Adversarial examples are not bugs, they are features. In Advances in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 550, + 386, + 564 + ], + "spans": [ + { + "bbox": [ + 131, + 550, + 386, + 564 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pages 125–136, 2019.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 110, + 567, + 507, + 584 + ], + "spans": [ + { + "bbox": [ + 110, + 567, + 507, + 584 + ], + "score": 1.0, + "content": "[49] Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 131, + 579, + 441, + 593 + ], + "spans": [ + { + "bbox": [ + 131, + 579, + 441, + 593 + ], + "score": 1.0, + "content": "by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 111, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 111, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "[50] Tommi S Jaakkola and David Haussler. Probabilistic kernel regression models. In AISTATS,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 131, + 609, + 160, + 624 + ], + "spans": [ + { + "bbox": [ + 131, + 609, + 160, + 624 + ], + "score": 1.0, + "content": "1999.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 110, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 110, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "[51] Jörn-Henrik Jacobsen, Jens Behrmann, Richard Zemel, and Matthias Bethge. Excessive", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 130, + 639, + 471, + 654 + ], + "spans": [ + { + "bbox": [ + 130, + 639, + 471, + 654 + ], + "score": 1.0, + "content": "invariance causes adversarial vulnerability. arXiv preprint arXiv:1811.00401, 2018.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 111, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 111, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "[52] Arthur Jacot, Franck Gabriel, and Clément Hongler. Neural tangent kernel: Convergence and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 130, + 669, + 508, + 685 + ], + "spans": [ + { + "bbox": [ + 130, + 669, + 508, + 685 + ], + "score": 1.0, + "content": "generalization in neural networks. In Advances in neural information processing systems,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 131, + 681, + 234, + 694 + ], + "spans": [ + { + "bbox": [ + 131, + 681, + 234, + 694 + ], + "score": 1.0, + "content": "pages 8571–8580, 2018.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 110, + 700, + 506, + 714 + ], + "score": 1.0, + "content": "[53] Ziwei Ji and Matus Telgarsky. The implicit bias of gradient descent on nonseparable data. In", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 131, + 710, + 366, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 710, + 366, + 724 + ], + "score": 1.0, + "content": "Conference on Learning Theory, pages 1772–1798, 2019.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 110, + 39, + 507, + 728 + ], + "lines": [], + "index": 22.5, + "bbox_fs": [ + 110, + 72, + 508, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 42, + 507, + 722 + ], + "lines": [ + { + "bbox": [ + 110, + 73, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 110, + 73, + 506, + 87 + ], + "score": 1.0, + "content": "[54] Jason Jo and Yoshua Bengio. Measuring the tendency of cnns to learn surface statistical", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 131, + 84, + 346, + 97 + ], + "spans": [ + { + "bbox": [ + 131, + 84, + 346, + 97 + ], + "score": 1.0, + "content": "regularities. arXiv preprint arXiv:1711.11561, 2017.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 102, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 111, + 102, + 507, + 116 + ], + "score": 1.0, + "content": "[55] Alexia Jolicoeur-Martineau and Ioannis Mitliagkas. Connections between support vector", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 131, + 113, + 507, + 127 + ], + "spans": [ + { + "bbox": [ + 131, + 113, + 507, + 127 + ], + "score": 1.0, + "content": "machines, wasserstein distance and gradient-penalty gans. arXiv preprint arXiv:1910.06922,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 131, + 123, + 161, + 137 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 161, + 137 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 110, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "[56] Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 130, + 153, + 265, + 166 + ], + "spans": [ + { + "bbox": [ + 130, + 153, + 265, + 166 + ], + "score": 1.0, + "content": "preprint arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 109, + 169, + 507, + 187 + ], + "spans": [ + { + "bbox": [ + 109, + 169, + 507, + 187 + ], + "score": 1.0, + "content": "[57] Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 132, + 183, + 169, + 195 + ], + "spans": [ + { + "bbox": [ + 132, + 183, + 169, + 195 + ], + "score": 1.0, + "content": "0, 2009.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 110, + 200, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 110, + 200, + 506, + 214 + ], + "score": 1.0, + "content": "[58] Anders Krogh and John A Hertz. A simple weight decay can improve generalization. In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 131, + 210, + 430, + 225 + ], + "spans": [ + { + "bbox": [ + 131, + 210, + 430, + 225 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pages 950–957, 1992.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 109, + 228, + 507, + 243 + ], + "spans": [ + { + "bbox": [ + 109, + 228, + 507, + 243 + ], + "score": 1.0, + "content": "[59] David Krueger, Ethan Caballero, Joern-Henrik Jacobsen, Amy Zhang, Jonathan Binas, Remi Le", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 131, + 240, + 507, + 255 + ], + "spans": [ + { + "bbox": [ + 131, + 240, + 507, + 255 + ], + "score": 1.0, + "content": "Priol, and Aaron Courville. Out-of-distribution generalization via risk extrapolation (rex).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 131, + 251, + 295, + 265 + ], + "spans": [ + { + "bbox": [ + 131, + 251, + 295, + 265 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2003.00688, 2020.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 270, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 110, + 270, + 506, + 284 + ], + "score": 1.0, + "content": "[60] Andrew K Lampinen and Surya Ganguli. An analytic theory of generalization dynamics and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 132, + 281, + 462, + 293 + ], + "spans": [ + { + "bbox": [ + 132, + 281, + 462, + 293 + ], + "score": 1.0, + "content": "transfer learning in deep linear networks. arXiv preprint arXiv:1809.10374, 2018.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 109, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 109, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "[61] Sebastian Lapuschkin, Stephan Wäldchen, Alexander Binder, Grégoire Montavon, Wojciech", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 311, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 132, + 311, + 505, + 322 + ], + "score": 1.0, + "content": "Samek, and Klaus-Robert Müller. Unmasking clever hans predictors and assessing what", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 133, + 321, + 393, + 333 + ], + "spans": [ + { + "bbox": [ + 133, + 321, + 393, + 333 + ], + "score": 1.0, + "content": "machines really learn. Nature communications, 10(1):1–8, 2019.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 110, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 110, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "[62] Jaehoon Lee, Lechao Xiao, Samuel Schoenholz, Yasaman Bahri, Roman Novak, Jascha", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 132, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 132, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 131, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 131, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "models under gradient descent. In Advances in neural information processing systems, pages", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 131, + 369, + 210, + 385 + ], + "spans": [ + { + "bbox": [ + 131, + 369, + 210, + 385 + ], + "score": 1.0, + "content": "8570–8581, 2019.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 389, + 507, + 403 + ], + "spans": [ + { + "bbox": [ + 110, + 389, + 507, + 403 + ], + "score": 1.0, + "content": "[63] Kimin Lee, Kibok Lee, Honglak Lee, and Jinwoo Shin. A simple unified framework for de-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 132, + 401, + 507, + 415 + ], + "spans": [ + { + "bbox": [ + 132, + 401, + 507, + 415 + ], + "score": 1.0, + "content": "tecting out-of-distribution samples and adversarial attacks. In Advances in Neural Information", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 131, + 412, + 316, + 426 + ], + "spans": [ + { + "bbox": [ + 131, + 412, + 316, + 426 + ], + "score": 1.0, + "content": "Processing Systems, pages 7167–7177, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 111, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 111, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "[64] Shiyu Liang, Yixuan Li, and Rayadurgam Srikant. Enhancing the reliability of out-of-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 131, + 441, + 490, + 455 + ], + "spans": [ + { + "bbox": [ + 131, + 441, + 490, + 455 + ], + "score": 1.0, + "content": "distribution image detection in neural networks. arXiv preprint arXiv:1706.02690, 2017.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 110, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 110, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "[65] Ziwei Liu, Ping Luo, Xiaogang Wang, and Xiaoou Tang. Deep learning face attributes in the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 131, + 470, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 131, + 470, + 506, + 484 + ], + "score": 1.0, + "content": "wild. In Proceedings of International Conference on Computer Vision (ICCV), December", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 131, + 480, + 160, + 495 + ], + "spans": [ + { + "bbox": [ + 131, + 480, + 160, + 495 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 111, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 111, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "[66] Cong Ma, Kaizheng Wang, Yuejie Chi, and Yuxin Chen. Implicit regularization in nonconvex", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 132, + 510, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 132, + 510, + 506, + 524 + ], + "score": 1.0, + "content": "statistical estimation: Gradient descent converges linearly for phase retrieval and matrix", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 131, + 521, + 507, + 535 + ], + "spans": [ + { + "bbox": [ + 131, + 521, + 507, + 535 + ], + "score": 1.0, + "content": "completion. In International Conference on Machine Learning, pages 3345–3354. PMLR,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 531, + 160, + 546 + ], + "spans": [ + { + "bbox": [ + 131, + 531, + 160, + 546 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 111, + 551, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 111, + 551, + 506, + 563 + ], + "score": 1.0, + "content": "[67] Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 131, + 560, + 507, + 576 + ], + "spans": [ + { + "bbox": [ + 131, + 560, + 507, + 576 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. arXiv preprint arXiv:1706.06083,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 131, + 571, + 160, + 586 + ], + "spans": [ + { + "bbox": [ + 131, + 571, + 160, + 586 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 109, + 590, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 109, + 590, + 506, + 605 + ], + "score": 1.0, + "content": "[68] R Thomas McCoy, Ellie Pavlick, and Tal Linzen. Right for the wrong reasons: Diagnosing", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 131, + 600, + 498, + 616 + ], + "spans": [ + { + "bbox": [ + 131, + 600, + 498, + 616 + ], + "score": 1.0, + "content": "syntactic heuristics in natural language inference. arXiv preprint arXiv:1902.01007, 2019.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 111, + 620, + 507, + 632 + ], + "spans": [ + { + "bbox": [ + 111, + 620, + 507, + 632 + ], + "score": 1.0, + "content": "[69] Song Mei and Andrea Montanari. The generalization error of random features regression:", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 131, + 630, + 483, + 644 + ], + "spans": [ + { + "bbox": [ + 131, + 630, + 483, + 644 + ], + "score": 1.0, + "content": "Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 110, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 110, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "[70] Preetum Nakkiran, Gal Kaplun, Dimitris Kalimeris, Tristan Yang, Benjamin L Edelman, Fred", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 131, + 658, + 507, + 674 + ], + "spans": [ + { + "bbox": [ + 131, + 658, + 507, + 674 + ], + "score": 1.0, + "content": "Zhang, and Boaz Barak. Sgd on neural networks learns functions of increasing complexity.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 131, + 670, + 296, + 684 + ], + "spans": [ + { + "bbox": [ + 131, + 670, + 296, + 684 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.11604, 2019.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 110, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 110, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[71] Junhyun Nam, Hyuntak Cha, Sungsoo Ahn, Jaeho Lee, and Jinwoo Shin. Learning from", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 131, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 131, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "failure: Training debiased classifier from biased classifier. arXiv preprint arXiv:2007.02561,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 131, + 709, + 161, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 709, + 161, + 724 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 23.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 109, + 42, + 507, + 722 + ], + "lines": [], + "index": 23.5, + "bbox_fs": [ + 109, + 73, + 507, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 44, + 507, + 722 + ], + "lines": [ + { + "bbox": [ + 108, + 70, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 108, + 70, + 507, + 88 + ], + "score": 1.0, + "content": "[72] Kamil Nar, Orhan Ocal, S Shankar Sastry, and Kannan Ramchandran. Cross-entropy", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 131, + 82, + 506, + 98 + ], + "spans": [ + { + "bbox": [ + 131, + 82, + 506, + 98 + ], + "score": 1.0, + "content": "loss and low-rank features have responsibility for adversarial examples. arXiv preprint", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 132, + 95, + 235, + 107 + ], + "spans": [ + { + "bbox": [ + 132, + 95, + 235, + 107 + ], + "score": 1.0, + "content": "arXiv:1901.08360, 2019.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 111, + 508, + 127 + ], + "spans": [ + { + "bbox": [ + 109, + 111, + 508, + 127 + ], + "score": 1.0, + "content": "[73] Kamil Nar and S Shankar Sastry. Persistency of excitation for robustness of neural networks.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 131, + 123, + 297, + 137 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 297, + 137 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.01043, 2019.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 143, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 111, + 143, + 506, + 155 + ], + "score": 1.0, + "content": "[74] Behnam Neyshabur, Ryota Tomioka, Ruslan Salakhutdinov, and Nathan Srebro. Geometry of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 154, + 507, + 166 + ], + "spans": [ + { + "bbox": [ + 132, + 154, + 507, + 166 + ], + "score": 1.0, + "content": "optimization and implicit regularization in deep learning. arXiv preprint arXiv:1705.03071,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 163, + 160, + 178 + ], + "spans": [ + { + "bbox": [ + 131, + 163, + 160, + 178 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 182, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 182, + 507, + 196 + ], + "score": 1.0, + "content": "[75] Behnam Neyshabur, Ryota Tomioka, and Nathan Srebro. In search of the real inductive bias:", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 132, + 193, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 132, + 193, + 507, + 208 + ], + "score": 1.0, + "content": "On the role of implicit regularization in deep learning. arXiv preprint arXiv:1412.6614, 2014.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 109, + 210, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 109, + 210, + 506, + 227 + ], + "score": 1.0, + "content": "[76] Timothy Niven and Hung-Yu Kao. Probing neural network comprehension of natural language", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 131, + 223, + 343, + 235 + ], + "spans": [ + { + "bbox": [ + 131, + 223, + 343, + 235 + ], + "score": 1.0, + "content": "arguments. arXiv preprint arXiv:1907.07355, 2019.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 240, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 110, + 240, + 506, + 254 + ], + "score": 1.0, + "content": "[77] Luke Oakden-Rayner, Jared Dunnmon, Gustavo Carneiro, and Christopher Ré. Hidden", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 252, + 507, + 266 + ], + "spans": [ + { + "bbox": [ + 132, + 252, + 507, + 266 + ], + "score": 1.0, + "content": "stratification causes clinically meaningful failures in machine learning for medical imaging.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 131, + 261, + 508, + 277 + ], + "spans": [ + { + "bbox": [ + 131, + 261, + 508, + 277 + ], + "score": 1.0, + "content": "In Proceedings of the ACM Conference on Health, Inference, and Learning, pages 151–159,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 131, + 272, + 159, + 287 + ], + "spans": [ + { + "bbox": [ + 131, + 272, + 159, + 287 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 291, + 507, + 305 + ], + "spans": [ + { + "bbox": [ + 110, + 291, + 507, + 305 + ], + "score": 1.0, + "content": "[78] Samet Oymak, Zalan Fabian, Mingchen Li, and Mahdi Soltanolkotabi. Generalization guaran-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 131, + 302, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 131, + 302, + 506, + 317 + ], + "score": 1.0, + "content": "tees for neural networks via harnessing the low-rank structure of the jacobian. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 132, + 314, + 236, + 326 + ], + "spans": [ + { + "bbox": [ + 132, + 314, + 236, + 326 + ], + "score": 1.0, + "content": "arXiv:1906.05392, 2019.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 110, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 110, + 331, + 506, + 345 + ], + "score": 1.0, + "content": "[79] Giambattista Parascandolo, Alexander Neitz, Antonio Orvieto, Luigi Gresele, and Bernhard", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 132, + 342, + 507, + 356 + ], + "spans": [ + { + "bbox": [ + 132, + 342, + 507, + 356 + ], + "score": 1.0, + "content": "Schölkopf. Learning explanations that are hard to vary. arXiv preprint arXiv:2009.00329,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 132, + 353, + 159, + 366 + ], + "spans": [ + { + "bbox": [ + 132, + 353, + 159, + 366 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 371, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 110, + 371, + 507, + 385 + ], + "score": 1.0, + "content": "[80] Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary DeVito,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 132, + 382, + 507, + 397 + ], + "spans": [ + { + "bbox": [ + 132, + 382, + 507, + 397 + ], + "score": 1.0, + "content": "Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 131, + 394, + 308, + 407 + ], + "spans": [ + { + "bbox": [ + 131, + 394, + 308, + 407 + ], + "score": 1.0, + "content": "pytorch. openreview id=BJJsrmfCZ, 2017.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 109, + 411, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 507, + 426 + ], + "score": 1.0, + "content": "[81] Oskar Pfungst. Clever Hans:(the horse of Mr. Von Osten.) a contribution to experimental", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 131, + 423, + 401, + 437 + ], + "spans": [ + { + "bbox": [ + 131, + 423, + 401, + 437 + ], + "score": 1.0, + "content": "animal and human psychology. Holt, Rinehart and Winston, 1911.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 111, + 442, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 111, + 442, + 506, + 454 + ], + "score": 1.0, + "content": "[82] Tomaso Poggio, Kenji Kawaguchi, Qianli Liao, Brando Miranda, Lorenzo Rosasco, Xavier", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 131, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 131, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "Boix, Jack Hidary, and Hrushikesh Mhaskar. Theory of deep learning iii: explaining the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 463, + 389, + 477 + ], + "spans": [ + { + "bbox": [ + 132, + 463, + 389, + 477 + ], + "score": 1.0, + "content": "non-overfitting puzzle. arXiv preprint arXiv:1801.00173, 2017.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 110, + 480, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 110, + 480, + 507, + 495 + ], + "score": 1.0, + "content": "[83] Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred Hamprecht,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 132, + 492, + 507, + 506 + ], + "spans": [ + { + "bbox": [ + 132, + 492, + 507, + 506 + ], + "score": 1.0, + "content": "Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks. In International", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 132, + 503, + 403, + 517 + ], + "spans": [ + { + "bbox": [ + 132, + 503, + 403, + 517 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pages 5301–5310. PMLR, 2019.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 111, + 522, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 111, + 522, + 507, + 533 + ], + "score": 1.0, + "content": "[84] Jonas Rauber, Wieland Brendel, and Matthias Bethge. Foolbox: A python toolbox to bench-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 132, + 531, + 494, + 545 + ], + "spans": [ + { + "bbox": [ + 132, + 531, + 494, + 545 + ], + "score": 1.0, + "content": "mark the robustness of machine learning models. arXiv preprint arXiv:1707.04131, 2017.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 110, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 110, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "[85] Marco Tulio Ribeiro, Sameer Singh, and Carlos Guestrin. \" why should i trust you?\" explaining", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 132, + 561, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 132, + 561, + 507, + 575 + ], + "score": 1.0, + "content": "the predictions of any classifier. In Proceedings of the 22nd ACM SIGKDD international", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 132, + 572, + 448, + 586 + ], + "spans": [ + { + "bbox": [ + 132, + 572, + 448, + 586 + ], + "score": 1.0, + "content": "conference on knowledge discovery and data mining, pages 1135–1144, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 110, + 590, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 110, + 590, + 507, + 604 + ], + "score": 1.0, + "content": "[86] Michael Roberts. Machine learning for covid-19 diagnosis: Promising, but still too flawed,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 132, + 601, + 178, + 615 + ], + "spans": [ + { + "bbox": [ + 132, + 601, + 178, + 615 + ], + "score": 1.0, + "content": "Mar 2021.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 110, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 110, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "[87] Basri Ronen, David Jacobs, Yoni Kasten, and Shira Kritchman. The convergence rate of neural", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 132, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 132, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "networks for learned functions of different frequencies. In Advances in Neural Information", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 132, + 641, + 316, + 655 + ], + "spans": [ + { + "bbox": [ + 132, + 641, + 316, + 655 + ], + "score": 1.0, + "content": "Processing Systems, pages 4761–4771, 2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 110, + 659, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 110, + 659, + 506, + 673 + ], + "score": 1.0, + "content": "[88] Amir Rosenfeld, Richard Zemel, and John K Tsotsos. The elephant in the room. arXiv preprint", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 131, + 671, + 237, + 684 + ], + "spans": [ + { + "bbox": [ + 131, + 671, + 237, + 684 + ], + "score": 1.0, + "content": "arXiv:1808.03305, 2018.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 110, + 688, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 110, + 688, + 506, + 703 + ], + "score": 1.0, + "content": "[89] Shiori Sagawa, Pang Wei Koh, Tatsunori B Hashimoto, and Percy Liang. Distributionally", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 132, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 132, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "robust neural networks for group shifts: On the importance of regularization for worst-case", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 131, + 711, + 357, + 724 + ], + "spans": [ + { + "bbox": [ + 131, + 711, + 357, + 724 + ], + "score": 1.0, + "content": "generalization. arXiv preprint arXiv:1911.08731, 2019.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 23.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 109, + 44, + 507, + 722 + ], + "lines": [], + "index": 23.5, + "bbox_fs": [ + 108, + 70, + 508, + 724 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 72, + 505, + 96 + ], + "lines": [ + { + "bbox": [ + 111, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 111, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "[90] Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 83, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 504, + 96 + ], + "score": 1.0, + "content": "dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 111, + 103, + 504, + 137 + ], + "lines": [ + { + "bbox": [ + 110, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 110, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "[91] Andrew M Saxe, James L McClelland, and Surya Ganguli. A mathematical theory of semantic", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 132, + 114, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 132, + 114, + 507, + 128 + ], + "score": 1.0, + "content": "development in deep neural networks. Proceedings of the National Academy of Sciences,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 133, + 126, + 252, + 138 + ], + "spans": [ + { + "bbox": [ + 133, + 126, + 252, + 138 + ], + "score": 1.0, + "content": "116(23):11537–11546, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 110, + 145, + 502, + 169 + ], + "lines": [ + { + "bbox": [ + 111, + 145, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 504, + 158 + ], + "score": 1.0, + "content": "[92] Harshay Shah, Kaustav Tamuly, Aditi Raghunathan, Prateek Jain, and Praneeth Netrapalli.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 156, + 495, + 169 + ], + "spans": [ + { + "bbox": [ + 132, + 156, + 495, + 169 + ], + "score": 1.0, + "content": "The pitfalls of simplicity bias in neural networks. arXiv preprint arXiv:2006.07710, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 111, + 176, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 111, + 175, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 175, + 506, + 191 + ], + "score": 1.0, + "content": "[93] Shai Shalev-Shwartz and Shai Ben-David. Understanding machine learning: From theory to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 132, + 187, + 321, + 201 + ], + "spans": [ + { + "bbox": [ + 132, + 187, + 321, + 201 + ], + "score": 1.0, + "content": "algorithms. Cambridge university press, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 111, + 207, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 111, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 111, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "[94] Daniel Soudry, Elad Hoffer, Mor Shpigel Nacson, Suriya Gunasekar, and Nathan Srebro. The", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 132, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 132, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "implicit bias of gradient descent on separable data. The Journal of Machine Learning Research,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 133, + 230, + 232, + 242 + ], + "spans": [ + { + "bbox": [ + 133, + 230, + 232, + 242 + ], + "score": 1.0, + "content": "19(1):2822–2878, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 110, + 249, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 111, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 111, + 249, + 506, + 263 + ], + "score": 1.0, + "content": "[95] Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 262, + 504, + 274 + ], + "spans": [ + { + "bbox": [ + 132, + 262, + 504, + 274 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The journal of machine", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 133, + 272, + 308, + 284 + ], + "spans": [ + { + "bbox": [ + 133, + 272, + 308, + 284 + ], + "score": 1.0, + "content": "learning research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 111, + 291, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 110, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 110, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "[96] Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 132, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 132, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 314, + 231, + 325 + ], + "spans": [ + { + "bbox": [ + 132, + 314, + 231, + 325 + ], + "score": 1.0, + "content": "arXiv:1312.6199, 2013.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 110, + 333, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 111, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 111, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "[97] Guillermo Valle-Pérez, Chico Q Camargo, and Ard A Louis. Deep learning generalizes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 132, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "because the parameter-function map is biased towards simple functions. arXiv preprint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 132, + 356, + 236, + 368 + ], + "spans": [ + { + "bbox": [ + 132, + 356, + 236, + 368 + ], + "score": 1.0, + "content": "arXiv:1805.08522, 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 110, + 375, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 110, + 375, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 110, + 375, + 506, + 389 + ], + "score": 1.0, + "content": "[98] Vladimir Vapnik and Vlamimir Vapnik. Statistical learning theory wiley. New York, 1:624,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 131, + 386, + 159, + 399 + ], + "spans": [ + { + "bbox": [ + 131, + 386, + 159, + 399 + ], + "score": 1.0, + "content": "1998.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 110, + 407, + 504, + 441 + ], + "lines": [ + { + "bbox": [ + 110, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 110, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "[99] Santosh Vempala and John Wilmes. Gradient descent for one-hidden-layer neural networks:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 131, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 131, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "Polynomial convergence and sq lower bounds. In Conference on Learning Theory, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 132, + 428, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 132, + 428, + 208, + 442 + ], + "score": 1.0, + "content": "3115–3117, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "[100] Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 460, + 451, + 473 + ], + "spans": [ + { + "bbox": [ + 132, + 460, + 451, + 473 + ], + "score": 1.0, + "content": "by projecting superficial statistics out. arXiv preprint arXiv:1903.06256, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 479, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "[101] Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why pinns fail to train: A neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 491, + 465, + 504 + ], + "spans": [ + { + "bbox": [ + 132, + 491, + 465, + 504 + ], + "score": 1.0, + "content": "tangent kernel perspective. Journal of Computational Physics, page 110768, 2021.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 504, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "[102] David H Wolpert. The lack of a priori distinctions between learning algorithms. Neural", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 132, + 523, + 281, + 534 + ], + "spans": [ + { + "bbox": [ + 132, + 523, + 281, + 534 + ], + "score": 1.0, + "content": "computation, 8(7):1341–1390, 1996.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "[103] Xin Xu and Eibe Frank. Logistic regression and boosting for labeled bags of instances. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 131, + 552, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 131, + 552, + 506, + 567 + ], + "score": 1.0, + "content": "Pacific-Asia conference on knowledge discovery and data mining, pages 272–281. Springer,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 563, + 159, + 577 + ], + "spans": [ + { + "bbox": [ + 131, + 563, + 159, + 577 + ], + "score": 1.0, + "content": "2004.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "[104] Zhi-Qin John Xu, Yaoyu Zhang, Tao Luo, Yanyang Xiao, and Zheng Ma. Frequency principle:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 132, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 132, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "Fourier analysis sheds light on deep neural networks. arXiv preprint arXiv:1901.06523, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "[105] Zhi-Qin John Xu, Yaoyu Zhang, and Yanyang Xiao. Training behavior of deep neural network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 131, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 131, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "in frequency domain. In International Conference on Neural Information Processing, pages", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 132, + 637, + 237, + 650 + ], + "spans": [ + { + "bbox": [ + 132, + 637, + 237, + 650 + ], + "score": 1.0, + "content": "264–274. Springer, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 104, + 657, + 505, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "[106] Greg Yang and Hadi Salman. A fine-grained spectral perspective on neural networks. arXiv", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 131, + 669, + 271, + 681 + ], + "spans": [ + { + "bbox": [ + 131, + 669, + 271, + 681 + ], + "score": 1.0, + "content": "preprint arXiv:1907.10599, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 506, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[107] John R Zech, Marcus A Badgeley, Manway Liu, Anthony B Costa, Joseph J Titano, and Eric K", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 132, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 132, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "Oermann. Confounding variables can degrade generalization performance of radiological deep", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 133, + 711, + 365, + 723 + ], + "spans": [ + { + "bbox": [ + 133, + 711, + 365, + 723 + ], + "score": 1.0, + "content": "learning models. arXiv preprint arXiv:1807.00431, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 72, + 505, + 96 + ], + "lines": [ + { + "bbox": [ + 111, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 111, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "[90] Andrew M Saxe, James L McClelland, and Surya Ganguli. Exact solutions to the nonlinear", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 83, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 504, + 96 + ], + "score": 1.0, + "content": "dynamics of learning in deep linear neural networks. arXiv preprint arXiv:1312.6120, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 111, + 72, + 505, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 103, + 504, + 137 + ], + "lines": [ + { + "bbox": [ + 110, + 103, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 110, + 103, + 505, + 116 + ], + "score": 1.0, + "content": "[91] Andrew M Saxe, James L McClelland, and Surya Ganguli. A mathematical theory of semantic", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 132, + 114, + 507, + 128 + ], + "spans": [ + { + "bbox": [ + 132, + 114, + 507, + 128 + ], + "score": 1.0, + "content": "development in deep neural networks. Proceedings of the National Academy of Sciences,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 133, + 126, + 252, + 138 + ], + "spans": [ + { + "bbox": [ + 133, + 126, + 252, + 138 + ], + "score": 1.0, + "content": "116(23):11537–11546, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 110, + 103, + 507, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 145, + 502, + 169 + ], + "lines": [ + { + "bbox": [ + 111, + 145, + 504, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 504, + 158 + ], + "score": 1.0, + "content": "[92] Harshay Shah, Kaustav Tamuly, Aditi Raghunathan, Prateek Jain, and Praneeth Netrapalli.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 156, + 495, + 169 + ], + "spans": [ + { + "bbox": [ + 132, + 156, + 495, + 169 + ], + "score": 1.0, + "content": "The pitfalls of simplicity bias in neural networks. arXiv preprint arXiv:2006.07710, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 111, + 145, + 504, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 176, + 504, + 200 + ], + "lines": [ + { + "bbox": [ + 111, + 175, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 175, + 506, + 191 + ], + "score": 1.0, + "content": "[93] Shai Shalev-Shwartz and Shai Ben-David. Understanding machine learning: From theory to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 132, + 187, + 321, + 201 + ], + "spans": [ + { + "bbox": [ + 132, + 187, + 321, + 201 + ], + "score": 1.0, + "content": "algorithms. Cambridge university press, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 111, + 175, + 506, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 207, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 111, + 207, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 111, + 207, + 505, + 221 + ], + "score": 1.0, + "content": "[94] Daniel Soudry, Elad Hoffer, Mor Shpigel Nacson, Suriya Gunasekar, and Nathan Srebro. The", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 132, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 132, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "implicit bias of gradient descent on separable data. The Journal of Machine Learning Research,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 133, + 230, + 232, + 242 + ], + "spans": [ + { + "bbox": [ + 133, + 230, + 232, + 242 + ], + "score": 1.0, + "content": "19(1):2822–2878, 2018.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 111, + 207, + 506, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 249, + 504, + 284 + ], + "lines": [ + { + "bbox": [ + 111, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 111, + 249, + 506, + 263 + ], + "score": 1.0, + "content": "[95] Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 262, + 504, + 274 + ], + "spans": [ + { + "bbox": [ + 132, + 262, + 504, + 274 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The journal of machine", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 133, + 272, + 308, + 284 + ], + "spans": [ + { + "bbox": [ + 133, + 272, + 308, + 284 + ], + "score": 1.0, + "content": "learning research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 111, + 249, + 506, + 284 + ] + }, + { + "type": "text", + "bbox": [ + 111, + 291, + 504, + 326 + ], + "lines": [ + { + "bbox": [ + 110, + 291, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 110, + 291, + 506, + 305 + ], + "score": 1.0, + "content": "[96] Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 132, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 132, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 132, + 314, + 231, + 325 + ], + "spans": [ + { + "bbox": [ + 132, + 314, + 231, + 325 + ], + "score": 1.0, + "content": "arXiv:1312.6199, 2013.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 110, + 291, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 333, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 111, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 111, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "[97] Guillermo Valle-Pérez, Chico Q Camargo, and Ard A Louis. Deep learning generalizes", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 132, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "because the parameter-function map is biased towards simple functions. arXiv preprint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 132, + 356, + 236, + 368 + ], + "spans": [ + { + "bbox": [ + 132, + 356, + 236, + 368 + ], + "score": 1.0, + "content": "arXiv:1805.08522, 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 111, + 333, + 505, + 368 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 375, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 110, + 375, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 110, + 375, + 506, + 389 + ], + "score": 1.0, + "content": "[98] Vladimir Vapnik and Vlamimir Vapnik. Statistical learning theory wiley. New York, 1:624,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 131, + 386, + 159, + 399 + ], + "spans": [ + { + "bbox": [ + 131, + 386, + 159, + 399 + ], + "score": 1.0, + "content": "1998.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 110, + 375, + 506, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 407, + 504, + 441 + ], + "lines": [ + { + "bbox": [ + 110, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 110, + 406, + 506, + 420 + ], + "score": 1.0, + "content": "[99] Santosh Vempala and John Wilmes. Gradient descent for one-hidden-layer neural networks:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 131, + 417, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 131, + 417, + 506, + 432 + ], + "score": 1.0, + "content": "Polynomial convergence and sq lower bounds. In Conference on Learning Theory, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 132, + 428, + 208, + 442 + ], + "spans": [ + { + "bbox": [ + 132, + 428, + 208, + 442 + ], + "score": 1.0, + "content": "3115–3117, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 110, + 406, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 448, + 504, + 472 + ], + "lines": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 462 + ], + "score": 1.0, + "content": "[100] Haohan Wang, Zexue He, Zachary C Lipton, and Eric P Xing. Learning robust representations", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 132, + 460, + 451, + 473 + ], + "spans": [ + { + "bbox": [ + 132, + 460, + 451, + 473 + ], + "score": 1.0, + "content": "by projecting superficial statistics out. arXiv preprint arXiv:1903.06256, 2019.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 449, + 505, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 479, + 503, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "[101] Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why pinns fail to train: A neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 132, + 491, + 465, + 504 + ], + "spans": [ + { + "bbox": [ + 132, + 491, + 465, + 504 + ], + "score": 1.0, + "content": "tangent kernel perspective. Journal of Computational Physics, page 110768, 2021.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 480, + 505, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 504, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "[102] David H Wolpert. The lack of a priori distinctions between learning algorithms. Neural", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 132, + 523, + 281, + 534 + ], + "spans": [ + { + "bbox": [ + 132, + 523, + 281, + 534 + ], + "score": 1.0, + "content": "computation, 8(7):1341–1390, 1996.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 511, + 505, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "[103] Xin Xu and Eibe Frank. Logistic regression and boosting for labeled bags of instances. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 131, + 552, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 131, + 552, + 506, + 567 + ], + "score": 1.0, + "content": "Pacific-Asia conference on knowledge discovery and data mining, pages 272–281. Springer,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 131, + 563, + 159, + 577 + ], + "spans": [ + { + "bbox": [ + 131, + 563, + 159, + 577 + ], + "score": 1.0, + "content": "2004.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 542, + 506, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 584, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 506, + 597 + ], + "score": 1.0, + "content": "[104] Zhi-Qin John Xu, Yaoyu Zhang, Tao Luo, Yanyang Xiao, and Zheng Ma. Frequency principle:", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 132, + 595, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 132, + 595, + 506, + 608 + ], + "score": 1.0, + "content": "Fourier analysis sheds light on deep neural networks. arXiv preprint arXiv:1901.06523, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 585, + 506, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 504, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "[105] Zhi-Qin John Xu, Yaoyu Zhang, and Yanyang Xiao. Training behavior of deep neural network", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 131, + 626, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 131, + 626, + 506, + 641 + ], + "score": 1.0, + "content": "in frequency domain. In International Conference on Neural Information Processing, pages", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 132, + 637, + 237, + 650 + ], + "spans": [ + { + "bbox": [ + 132, + 637, + 237, + 650 + ], + "score": 1.0, + "content": "264–274. Springer, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 615, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 657, + 505, + 680 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 670 + ], + "score": 1.0, + "content": "[106] Greg Yang and Hadi Salman. A fine-grained spectral perspective on neural networks. arXiv", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 131, + 669, + 271, + 681 + ], + "spans": [ + { + "bbox": [ + 131, + 669, + 271, + 681 + ], + "score": 1.0, + "content": "preprint arXiv:1907.10599, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 657, + 505, + 681 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 689, + 506, + 723 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "[107] John R Zech, Marcus A Badgeley, Manway Liu, Anthony B Costa, Joseph J Titano, and Eric K", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 132, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 132, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "Oermann. Confounding variables can degrade generalization performance of radiological deep", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 133, + 711, + 365, + 723 + ], + "spans": [ + { + "bbox": [ + 133, + 711, + 365, + 723 + ], + "score": 1.0, + "content": "learning models. arXiv preprint arXiv:1807.00431, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 688, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 85 + ], + "score": 1.0, + "content": "[108] Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Under-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "standing deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 132, + 92, + 159, + 107 + ], + "spans": [ + { + "bbox": [ + 132, + 92, + 159, + 107 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "[109] Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, and Kai-Wei Chang. Men also like", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 133, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 133, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "shopping: Reducing gender bias amplification using corpus-level constraints. arXiv preprint", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 135, + 236, + 146 + ], + "spans": [ + { + "bbox": [ + 132, + 135, + 236, + 146 + ], + "score": 1.0, + "content": "arXiv:1707.09457, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "[110] Difan Zou, Yuan Cao, Dongruo Zhou, and Quanquan Gu. Gradient descent optimizes over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 164, + 447, + 178 + ], + "spans": [ + { + "bbox": [ + 131, + 164, + 447, + 178 + ], + "score": 1.0, + "content": "parameterized deep relu networks. Machine Learning, 109(3):467–492, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 85 + ], + "score": 1.0, + "content": "[108] Chiyuan Zhang, Samy Bengio, Moritz Hardt, Benjamin Recht, and Oriol Vinyals. Under-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "standing deep learning requires rethinking generalization. arXiv preprint arXiv:1611.03530,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 132, + 92, + 159, + 107 + ], + "spans": [ + { + "bbox": [ + 132, + 92, + 159, + 107 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 72, + 507, + 107 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "[109] Jieyu Zhao, Tianlu Wang, Mark Yatskar, Vicente Ordonez, and Kai-Wei Chang. Men also like", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 133, + 124, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 133, + 124, + 505, + 137 + ], + "score": 1.0, + "content": "shopping: Reducing gender bias amplification using corpus-level constraints. arXiv preprint", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 132, + 135, + 236, + 146 + ], + "spans": [ + { + "bbox": [ + 132, + 135, + 236, + 146 + ], + "score": 1.0, + "content": "arXiv:1707.09457, 2017.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 113, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "[110] Difan Zou, Yuan Cao, Dongruo Zhou, and Quanquan Gu. Gradient descent optimizes over-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 131, + 164, + 447, + 178 + ], + "spans": [ + { + "bbox": [ + 131, + 164, + 447, + 178 + ], + "score": 1.0, + "content": "parameterized deep relu networks. Machine Learning, 109(3):467–492, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 153, + 506, + 178 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/aExAsh1UHZo/aExAsh1UHZo_model.json b/parse/train/aExAsh1UHZo/aExAsh1UHZo_model.json new file mode 100644 index 0000000000000000000000000000000000000000..68da17a87b2a230a3a57980eac9263d5430dd765 --- /dev/null +++ b/parse/train/aExAsh1UHZo/aExAsh1UHZo_model.json @@ -0,0 +1,20545 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 809, + 1304, + 809, + 1304, + 1204, + 398, + 1204 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1588, + 1405, + 1588, + 1405, + 1983, + 298, + 1983 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1329, + 1404, + 1329, + 1404, + 1575, + 298, + 1575 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 416, + 271, + 1283, + 271, + 1283, + 384, + 416, + 384 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 299, + 1261, + 530, + 1261, + 530, + 1298, + 299, + 1298 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 787, + 738, + 913, + 738, + 913, + 775, + 787, + 775 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 298, + 2032, + 1070, + 2032, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.784 + }, + { + "category_id": 1, + "poly": [ + 398, + 494, + 1302, + 494, + 1302, + 663, + 398, + 663 + ], + "score": 0.474 + }, + { + "category_id": 2, + "poly": [ + 298, + 2032, + 1070, + 2032, + 1070, + 2062, + 298, + 2062 + ], + "score": 0.14 + }, + { + "category_id": 15, + "poly": [ + 633.0, + 267.0, + 1076.0, + 267.0, + 1076.0, + 327.0, + 633.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 322.0, + 1286.0, + 322.0, + 1286.0, + 387.0, + 411.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1257.0, + 536.0, + 1257.0, + 536.0, + 1304.0, + 292.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 738.0, + 918.0, + 738.0, + 918.0, + 777.0, + 783.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2067.0, + 294.0, + 2067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 807.0, + 1305.0, + 807.0, + 1305.0, + 845.0, + 395.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 839.0, + 1305.0, + 839.0, + 1305.0, + 874.0, + 393.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 872.0, + 1304.0, + 872.0, + 1304.0, + 904.0, + 395.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1303.0, + 900.0, + 1303.0, + 932.0, + 394.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 930.0, + 1305.0, + 930.0, + 1305.0, + 964.0, + 394.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 963.0, + 1303.0, + 963.0, + 1303.0, + 995.0, + 394.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 993.0, + 1305.0, + 993.0, + 1305.0, + 1025.0, + 395.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1020.0, + 1306.0, + 1020.0, + 1306.0, + 1057.0, + 392.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1052.0, + 1307.0, + 1052.0, + 1307.0, + 1086.0, + 393.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1083.0, + 1307.0, + 1083.0, + 1307.0, + 1118.0, + 393.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1113.0, + 1305.0, + 1113.0, + 1305.0, + 1147.0, + 394.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1144.0, + 1307.0, + 1144.0, + 1307.0, + 1176.0, + 394.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1173.0, + 1076.0, + 1173.0, + 1076.0, + 1209.0, + 393.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1617.0, + 1408.0, + 1617.0, + 1408.0, + 1654.0, + 293.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1651.0, + 1405.0, + 1651.0, + 1405.0, + 1684.0, + 296.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1678.0, + 1404.0, + 1678.0, + 1404.0, + 1713.0, + 295.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 1407.0, + 1770.0, + 1407.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1836.0, + 295.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1831.0, + 1406.0, + 1831.0, + 1406.0, + 1867.0, + 295.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1900.0, + 292.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1927.0, + 295.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1957.0, + 295.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1953.0, + 452.0, + 1953.0, + 452.0, + 1987.0, + 296.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1359.0, + 1404.0, + 1359.0, + 1404.0, + 1396.0, + 293.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1424.0, + 294.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1422.0, + 1406.0, + 1422.0, + 1406.0, + 1454.0, + 293.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1405.0, + 1514.0, + 1405.0, + 1544.0, + 294.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 968.0, + 1543.0, + 968.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2067.0, + 294.0, + 2067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 499.0, + 727.0, + 499.0, + 727.0, + 529.0, + 433.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 498.0, + 1030.0, + 498.0, + 1030.0, + 531.0, + 748.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 498.0, + 1269.0, + 498.0, + 1269.0, + 532.0, + 1051.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 539.0, + 675.0, + 539.0, + 675.0, + 570.0, + 444.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 537.0, + 987.0, + 537.0, + 987.0, + 574.0, + 763.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 537.0, + 1282.0, + 537.0, + 1282.0, + 573.0, + 1036.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 582.0, + 1291.0, + 582.0, + 1291.0, + 625.0, + 409.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 630.0, + 1302.0, + 630.0, + 1302.0, + 666.0, + 397.0, + 666.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1322, + 1405, + 1322, + 1405, + 1658, + 297, + 1658 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1671, + 1403, + 1671, + 1403, + 1854, + 298, + 1854 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 316, + 203, + 1381, + 203, + 1381, + 490, + 316, + 490 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 369, + 845, + 1403, + 845, + 1403, + 1102, + 369, + 1102 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 506, + 1405, + 506, + 1405, + 758, + 296, + 758 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 301, + 1123, + 1405, + 1123, + 1405, + 1215, + 301, + 1215 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 297, + 1944, + 1399, + 1944, + 1399, + 2007, + 297, + 2007 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 298, + 1255, + 910, + 1255, + 910, + 1294, + 298, + 1294 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1888, + 805, + 1888, + 805, + 1922, + 300, + 1922 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 300, + 811, + 727, + 811, + 727, + 841, + 300, + 841 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.733 + }, + { + "category_id": 13, + "poly": [ + 304, + 563, + 397, + 563, + 397, + 590, + 304, + 590 + ], + "score": 0.86, + "latex": "\\Delta = \\mathrm { 0 . 1 }" + }, + { + "category_id": 13, + "poly": [ + 945, + 677, + 972, + 677, + 972, + 701, + 945, + 701 + ], + "score": 0.85, + "latex": "z _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 550, + 706, + 577, + 706, + 577, + 728, + 550, + 728 + ], + "score": 0.83, + "latex": "z _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 677, + 1301, + 677, + 1301, + 701, + 1276, + 701 + ], + "score": 0.82, + "latex": "z _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 754, + 706, + 779, + 706, + 779, + 728, + 754, + 728 + ], + "score": 0.82, + "latex": "z _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 216.0, + 1282.0, + 216.0, + 1282.0, + 240.0, + 1255.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 223.0, + 1260.0, + 223.0, + 1260.0, + 233.0, + 1251.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 239.0, + 1132.0, + 239.0, + 1132.0, + 414.0, + 1102.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 258.0, + 1359.0, + 258.0, + 1359.0, + 282.0, + 1331.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 262.0, + 1334.0, + 262.0, + 1334.0, + 282.0, + 1295.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 290.0, + 1147.0, + 290.0, + 1147.0, + 304.0, + 1139.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 278.0, + 1362.0, + 278.0, + 1362.0, + 304.0, + 1296.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 309.0, + 1159.0, + 309.0, + 1159.0, + 374.0, + 1131.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 319.0, + 1284.0, + 319.0, + 1284.0, + 338.0, + 1259.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 359.0, + 1041.0, + 359.0, + 1041.0, + 374.0, + 1024.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 360.0, + 1050.0, + 360.0, + 1050.0, + 374.0, + 1040.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 363.0, + 1062.0, + 363.0, + 1062.0, + 373.0, + 1052.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 373.0, + 1055.0, + 373.0, + 1055.0, + 401.0, + 1031.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 386.0, + 1283.0, + 386.0, + 1283.0, + 406.0, + 1257.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 461.0, + 449.0, + 461.0, + 449.0, + 489.0, + 325.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 471.0, + 517.0, + 471.0, + 517.0, + 483.0, + 455.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 457.0, + 698.0, + 457.0, + 698.0, + 492.0, + 585.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 460.0, + 1038.0, + 460.0, + 1038.0, + 492.0, + 852.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 459.0, + 1177.0, + 459.0, + 1177.0, + 493.0, + 1136.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 464.0, + 1314.0, + 464.0, + 1314.0, + 487.0, + 1225.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.25, + 229.0, + 720.25, + 229.0, + 720.25, + 269.0, + 621.25, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 283.5, + 1030.0, + 283.5, + 1030.0, + 325.0, + 976.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 244.0, + 1229.0, + 244.0, + 1229.0, + 271.0, + 1132.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 322.5, + 1188.0, + 322.5, + 1188.0, + 336.5, + 1158.0, + 336.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 339.0, + 704.0, + 339.0, + 704.0, + 370.0, + 640.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 392.0, + 1073.0, + 392.0, + 1073.0, + 446.0, + 954.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 506.0, + 1407.0, + 506.0, + 1407.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 537.0, + 1403.0, + 537.0, + 1403.0, + 567.0, + 295.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 561.0, + 303.0, + 561.0, + 303.0, + 594.0, + 294.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 561.0, + 1406.0, + 561.0, + 1406.0, + 594.0, + 398.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 589.0, + 1406.0, + 589.0, + 1406.0, + 625.0, + 293.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 620.0, + 1406.0, + 620.0, + 1406.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 644.0, + 1402.0, + 644.0, + 1402.0, + 675.0, + 295.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 675.0, + 944.0, + 675.0, + 944.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 675.0, + 1275.0, + 675.0, + 1275.0, + 705.0, + 973.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 675.0, + 1406.0, + 675.0, + 1406.0, + 705.0, + 1302.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 549.0, + 703.0, + 549.0, + 733.0, + 295.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 703.0, + 753.0, + 703.0, + 753.0, + 733.0, + 578.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 733.0, + 780.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 729.0, + 1046.0, + 729.0, + 1046.0, + 762.0, + 294.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1249.0, + 913.0, + 1249.0, + 913.0, + 1303.0, + 290.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1885.0, + 809.0, + 1885.0, + 809.0, + 1926.0, + 292.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1359.0, + 295.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 1405.0, + 1352.0, + 1405.0, + 1388.0, + 294.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1383.0, + 1407.0, + 1383.0, + 1407.0, + 1418.0, + 295.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1417.0, + 1403.0, + 1417.0, + 1403.0, + 1448.0, + 296.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 1405.0, + 1443.0, + 1405.0, + 1480.0, + 294.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1474.0, + 1403.0, + 1474.0, + 1403.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1536.0, + 1405.0, + 1536.0, + 1405.0, + 1571.0, + 294.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1566.0, + 1403.0, + 1566.0, + 1403.0, + 1600.0, + 295.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 1403.0, + 1595.0, + 1403.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1627.0, + 1147.0, + 1627.0, + 1147.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1704.0, + 294.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1737.0, + 293.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1732.0, + 1405.0, + 1732.0, + 1405.0, + 1768.0, + 294.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1405.0, + 1759.0, + 1405.0, + 1800.0, + 293.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1404.0, + 1795.0, + 1404.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 498.0, + 1824.0, + 498.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 877.0, + 370.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 873.0, + 1028.0, + 873.0, + 1028.0, + 909.0, + 392.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 904.0, + 1405.0, + 904.0, + 1405.0, + 946.0, + 385.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 939.0, + 1257.0, + 939.0, + 1257.0, + 972.0, + 393.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 972.0, + 1406.0, + 972.0, + 1406.0, + 1011.0, + 382.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1002.0, + 1192.0, + 1002.0, + 1192.0, + 1039.0, + 392.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1037.0, + 1406.0, + 1037.0, + 1406.0, + 1074.0, + 382.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1064.0, + 1409.0, + 1064.0, + 1409.0, + 1107.0, + 392.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1120.0, + 1405.0, + 1120.0, + 1405.0, + 1159.0, + 292.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1155.0, + 1405.0, + 1155.0, + 1405.0, + 1188.0, + 296.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1182.0, + 842.0, + 1182.0, + 842.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2014.0, + 293.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 729.0, + 810.0, + 729.0, + 843.0, + 295.0, + 843.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 946, + 1405, + 946, + 1405, + 1079, + 297, + 1079 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 642, + 1406, + 642, + 1406, + 887, + 296, + 887 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 380, + 1404, + 380, + 1404, + 564, + 297, + 564 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1831, + 1405, + 1831, + 1405, + 1957, + 298, + 1957 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1202, + 1404, + 1202, + 1404, + 1301, + 297, + 1301 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 296, + 1315, + 1404, + 1315, + 1404, + 1443, + 296, + 1443 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1531, + 1404, + 1531, + 1404, + 1655, + 297, + 1655 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1730, + 1406, + 1730, + 1406, + 1824, + 298, + 1824 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 277, + 1405, + 277, + 1405, + 369, + 298, + 369 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 663, + 1454, + 1035, + 1454, + 1035, + 1523, + 663, + 1523 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 564, + 1092, + 1137, + 1092, + 1137, + 1187, + 564, + 1187 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 297, + 202, + 1401, + 202, + 1401, + 264, + 297, + 264 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 713, + 1970, + 983, + 1970, + 983, + 2008, + 713, + 2008 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 749, + 1666, + 947, + 1666, + 947, + 1704, + 749, + 1704 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 297, + 906, + 962, + 906, + 962, + 939, + 297, + 939 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 589, + 625, + 589, + 625, + 627, + 299, + 627 + ], + "score": 0.928 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1125, + 1400, + 1125, + 1400, + 1156, + 1366, + 1156 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1475, + 1400, + 1475, + 1400, + 1505, + 1366, + 1505 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1670, + 1400, + 1670, + 1400, + 1700, + 1366, + 1700 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1977, + 1401, + 1977, + 1401, + 2007, + 1366, + 2007 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.657 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.562 + }, + { + "category_id": 14, + "poly": [ + 660, + 1453, + 1039, + 1453, + 1039, + 1522, + 660, + 1522 + ], + "score": 0.94, + "latex": "\\Phi \\left( \\mathbf { X } , \\theta \\right) = \\frac { \\partial \\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\theta \\right) } { \\partial \\theta } \\in \\mathbb { R } ^ { n \\times m } ." + }, + { + "category_id": 14, + "poly": [ + 562, + 1091, + 1136, + 1091, + 1136, + 1190, + 562, + 1190 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\left\\{ \\begin{array} { l l } { \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\mathbf { W } ^ { ( l ) } h ^ { ( l - 1 ) } ( \\mathbf { x } _ { i } ) } \\\\ { h ^ { ( l ) } ( \\mathbf { x } _ { i } ) = \\sqrt { \\frac { \\gamma } { d _ { l } } } \\boldsymbol { \\xi } ( \\boldsymbol { f } ^ { ( l ) } ( \\mathbf { x } _ { i } ) ) } \\end{array} \\right. , l \\in \\{ 0 , 1 , . . . , L \\} , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 560, + 1592, + 748, + 1592, + 748, + 1626, + 560, + 1626 + ], + "score": 0.93, + "latex": "\\Phi _ { 0 } \\equiv \\Phi \\left( \\mathbf { X } , \\pmb { \\theta } _ { 0 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 379, + 1861, + 566, + 1861, + 566, + 1895, + 379, + 1895 + ], + "score": 0.93, + "latex": "\\mathbf { Y } \\Phi _ { 0 } = \\mathbf { U } \\mathbf { S } \\mathbf { V } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 360, + 1044, + 515, + 1044, + 515, + 1081, + 360, + 1081 + ], + "score": 0.93, + "latex": "h ^ { ( l ) } ( x ) \\in \\mathbf { \\bar { \\mathbb { R } } } ^ { d _ { l } }" + }, + { + "category_id": 13, + "poly": [ + 939, + 1205, + 1027, + 1205, + 1027, + 1239, + 939, + 1239 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , \\bf { I } )" + }, + { + "category_id": 13, + "poly": [ + 345, + 946, + 496, + 946, + 496, + 980, + 345, + 980 + ], + "score": 0.92, + "latex": "{ \\mathcal { D } } = \\{ { \\bf X } , { \\bf y } \\}" + }, + { + "category_id": 13, + "poly": [ + 902, + 980, + 1080, + 980, + 1080, + 1015, + 902, + 1015 + ], + "score": 0.92, + "latex": "\\mathbf { y } \\in \\{ - 1 , + 1 \\} ^ { n }" + }, + { + "category_id": 14, + "poly": [ + 749, + 1666, + 950, + 1666, + 950, + 1704, + 749, + 1704 + ], + "score": 0.92, + "latex": "\\hat { \\mathbf { y } } \\left( \\mathbf { X } , \\pmb { \\theta } \\right) = \\Phi _ { 0 } \\pmb { \\theta } ." + }, + { + "category_id": 13, + "poly": [ + 341, + 1315, + 754, + 1315, + 754, + 1355, + 341, + 1355 + ], + "score": 0.92, + "latex": "\\pmb \\theta = \\mathrm { c o n c a t } \\big ( \\cup _ { l = 1 } ^ { L } \\mathrm { v e c } ( \\mathbf W ^ { ( l ) } ) \\big ) \\in \\mathbb { R } ^ { m }" + }, + { + "category_id": 14, + "poly": [ + 713, + 1969, + 985, + 1969, + 985, + 2009, + 713, + 2009 + ], + "score": 0.92, + "latex": "\\mathbf { z } : = \\mathbf { U } ^ { T } \\mathbf { Y } \\hat { \\mathbf { y } } = \\mathbf { S } \\mathbf { V } ^ { T } \\pmb { \\theta } ." + }, + { + "category_id": 13, + "poly": [ + 1151, + 1861, + 1228, + 1861, + 1228, + 1897, + 1151, + 1897 + ], + "score": 0.91, + "latex": "( \\mathbf { \\dot { V } } ^ { T } ) _ { j . }" + }, + { + "category_id": 13, + "poly": [ + 400, + 1202, + 595, + 1202, + 595, + 1234, + 400, + 1234 + ], + "score": 0.91, + "latex": "\\mathbf { W } ^ { ( l ) } \\in \\mathbb { R } ^ { d _ { l } \\times d _ { l - 1 } }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1894, + 782, + 1894, + 782, + 1928, + 655, + 1928 + ], + "score": 0.91, + "latex": "s _ { j } = ( \\mathbf { S } ) _ { j j }" + }, + { + "category_id": 13, + "poly": [ + 497, + 1236, + 569, + 1236, + 569, + 1268, + 497, + 1268 + ], + "score": 0.9, + "latex": "\\boldsymbol { h } ^ { ( l - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1269, + 342, + 1269, + 342, + 1303, + 298, + 1303 + ], + "score": 0.9, + "latex": "\\xi ( . )" + }, + { + "category_id": 13, + "poly": [ + 298, + 982, + 523, + 982, + 523, + 1014, + 298, + 1014 + ], + "score": 0.9, + "latex": "[ \\mathbf { x } _ { 1 } , . . . , \\mathbf { x } _ { n } ] \\in \\mathbb { R } ^ { n \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1183, + 978, + 1401, + 978, + 1401, + 1015, + 1183, + 1015 + ], + "score": 0.9, + "latex": "\\hat { \\mathbf { y } } ( \\mathbf { X } ) : = f ^ { ( L ) } ( \\mathbf { X } ) :" + }, + { + "category_id": 13, + "poly": [ + 298, + 1013, + 443, + 1013, + 443, + 1042, + 298, + 1042 + ], + "score": 0.89, + "latex": "\\mathbb { R } ^ { n \\times d } \\to \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 674, + 1763, + 711, + 1763, + 711, + 1793, + 674, + 1793 + ], + "score": 0.89, + "latex": "\\Phi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 864, + 1895, + 930, + 1895, + 930, + 1927, + 864, + 1927 + ], + "score": 0.87, + "latex": "( \\mathbf { U } ) _ { \\cdot j }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1593, + 459, + 1593, + 459, + 1623, + 428, + 1623 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 973, + 1624, + 1006, + 1624, + 1006, + 1655, + 973, + 1655 + ], + "score": 0.86, + "latex": "{ \\bf \\delta _ { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1624, + 1091, + 1624, + 1091, + 1655, + 1056, + 1655 + ], + "score": 0.86, + "latex": "\\hat { \\mathbf { y } } _ { 0 , }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1927, + 1057, + 1927, + 1057, + 1958, + 1029, + 1958 + ], + "score": 0.86, + "latex": "z _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 948, + 1405, + 948, + 1405, + 978, + 1340, + 978 + ], + "score": 0.85, + "latex": "\\mathbf { X } =" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1210, + 1098, + 1210, + 1098, + 1238, + 1077, + 1238 + ], + "score": 0.83, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 884, + 1928, + 900, + 1928, + 900, + 1956, + 884, + 1956 + ], + "score": 0.8, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1085, + 949, + 1104, + 949, + 1104, + 975, + 1085, + 975 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 298, + 1356, + 325, + 1356, + 325, + 1377, + 298, + 1377 + ], + "score": 0.72, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 874, + 954, + 895, + 954, + 895, + 975, + 874, + 975 + ], + "score": 0.71, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 656, + 1864, + 816, + 1864, + 816, + 1895, + 656, + 1895 + ], + "score": 0.7, + "latex": "\\mathbf { Y } = d i a g \\left( \\mathbf { y } \\right)" + }, + { + "category_id": 13, + "poly": [ + 733, + 1016, + 754, + 1016, + 754, + 1043, + 733, + 1043 + ], + "score": 0.29, + "latex": "\\mathrm { L }" + }, + { + "category_id": 13, + "poly": [ + 476, + 856, + 544, + 856, + 544, + 885, + 476, + 885 + ], + "score": 0.27, + "latex": "\\mathbf { S M C }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 905.0, + 962.0, + 905.0, + 962.0, + 944.0, + 293.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 586.0, + 629.0, + 586.0, + 629.0, + 634.0, + 290.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 942.0, + 344.0, + 942.0, + 344.0, + 985.0, + 291.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 942.0, + 873.0, + 942.0, + 873.0, + 985.0, + 497.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 942.0, + 1084.0, + 942.0, + 1084.0, + 985.0, + 896.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 942.0, + 1339.0, + 942.0, + 1339.0, + 985.0, + 1105.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 297.0, + 976.0, + 297.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 976.0, + 901.0, + 976.0, + 901.0, + 1017.0, + 524.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 976.0, + 1182.0, + 976.0, + 1182.0, + 1017.0, + 1081.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 976.0, + 1407.0, + 976.0, + 1407.0, + 1017.0, + 1402.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1006.0, + 297.0, + 1006.0, + 297.0, + 1053.0, + 291.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1006.0, + 732.0, + 1006.0, + 732.0, + 1053.0, + 444.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1006.0, + 1407.0, + 1006.0, + 1407.0, + 1053.0, + 755.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1044.0, + 359.0, + 1044.0, + 359.0, + 1083.0, + 296.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1044.0, + 762.0, + 1044.0, + 762.0, + 1083.0, + 516.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1408.0, + 642.0, + 1408.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 706.0, + 1406.0, + 706.0, + 1406.0, + 739.0, + 294.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 1406.0, + 732.0, + 1406.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 762.0, + 1407.0, + 762.0, + 1407.0, + 802.0, + 291.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 796.0, + 1406.0, + 796.0, + 1406.0, + 829.0, + 294.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 823.0, + 1407.0, + 823.0, + 1407.0, + 864.0, + 291.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 854.0, + 475.0, + 854.0, + 475.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 854.0, + 555.0, + 854.0, + 555.0, + 887.0, + 545.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 416.0, + 295.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 411.0, + 1406.0, + 411.0, + 1406.0, + 447.0, + 295.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 436.0, + 1405.0, + 436.0, + 1405.0, + 481.0, + 292.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 472.0, + 1405.0, + 472.0, + 1405.0, + 506.0, + 295.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 502.0, + 1404.0, + 502.0, + 1404.0, + 534.0, + 295.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 533.0, + 1218.0, + 533.0, + 1218.0, + 567.0, + 292.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1829.0, + 1406.0, + 1829.0, + 1406.0, + 1869.0, + 292.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1857.0, + 378.0, + 1857.0, + 378.0, + 1900.0, + 291.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1857.0, + 655.0, + 1857.0, + 655.0, + 1900.0, + 567.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1857.0, + 1150.0, + 1857.0, + 1150.0, + 1900.0, + 817.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1857.0, + 1406.0, + 1857.0, + 1406.0, + 1900.0, + 1229.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1894.0, + 654.0, + 1894.0, + 654.0, + 1930.0, + 295.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1894.0, + 863.0, + 1894.0, + 863.0, + 1930.0, + 783.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1894.0, + 1406.0, + 1894.0, + 1406.0, + 1930.0, + 931.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 883.0, + 1922.0, + 883.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1922.0, + 1028.0, + 1922.0, + 1028.0, + 1959.0, + 901.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1922.0, + 1139.0, + 1922.0, + 1139.0, + 1959.0, + 1058.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1198.0, + 399.0, + 1198.0, + 399.0, + 1244.0, + 291.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1198.0, + 938.0, + 1198.0, + 938.0, + 1244.0, + 596.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1198.0, + 1076.0, + 1198.0, + 1076.0, + 1244.0, + 1028.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1198.0, + 1406.0, + 1198.0, + 1406.0, + 1244.0, + 1099.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1232.0, + 496.0, + 1232.0, + 496.0, + 1276.0, + 291.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1232.0, + 1408.0, + 1232.0, + 1408.0, + 1276.0, + 570.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1270.0, + 954.0, + 1270.0, + 954.0, + 1305.0, + 343.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1315.0, + 340.0, + 1315.0, + 340.0, + 1354.0, + 291.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1354.0, + 755.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1348.0, + 297.0, + 1348.0, + 297.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1385.0, + 326.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 874.0, + 1410.0, + 874.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1530.0, + 1407.0, + 1530.0, + 1407.0, + 1567.0, + 292.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1563.0, + 1402.0, + 1563.0, + 1402.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 427.0, + 1593.0, + 427.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1593.0, + 559.0, + 1593.0, + 559.0, + 1629.0, + 460.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1593.0, + 1405.0, + 1593.0, + 1405.0, + 1629.0, + 749.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 972.0, + 1620.0, + 972.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1620.0, + 1055.0, + 1620.0, + 1055.0, + 1660.0, + 1007.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1620.0, + 1191.0, + 1620.0, + 1191.0, + 1660.0, + 1092.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1766.0, + 293.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 673.0, + 1762.0, + 673.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1762.0, + 1408.0, + 1762.0, + 1408.0, + 1796.0, + 712.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 829.0, + 1790.0, + 829.0, + 1826.0, + 295.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 277.0, + 1405.0, + 277.0, + 1405.0, + 311.0, + 296.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 309.0, + 1403.0, + 309.0, + 1403.0, + 342.0, + 296.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 336.0, + 1206.0, + 336.0, + 1206.0, + 372.0, + 295.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 199.0, + 1406.0, + 199.0, + 1406.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 234.0, + 805.0, + 234.0, + 805.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 824, + 1405, + 824, + 1405, + 978, + 296, + 978 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1246, + 1405, + 1246, + 1405, + 1375, + 297, + 1375 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1035, + 1404, + 1035, + 1404, + 1160, + 296, + 1160 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 202, + 1405, + 202, + 1405, + 325, + 297, + 325 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 296, + 331, + 1404, + 331, + 1404, + 435, + 296, + 435 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 300, + 453, + 1403, + 453, + 1403, + 545, + 300, + 545 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1634, + 1407, + 1634, + 1407, + 1728, + 297, + 1728 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 565, + 1556, + 1132, + 1556, + 1132, + 1625, + 565, + 1625 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 559, + 1174, + 1142, + 1174, + 1142, + 1240, + 559, + 1240 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 599, + 649, + 1098, + 649, + 1098, + 711, + 599, + 711 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1480, + 1408, + 1480, + 1408, + 1544, + 297, + 1544 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 298, + 1740, + 1399, + 1740, + 1399, + 1835, + 298, + 1835 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 526, + 1386, + 1169, + 1386, + 1169, + 1459, + 526, + 1459 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 601, + 1845, + 1094, + 1845, + 1094, + 1916, + 601, + 1916 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 608, + 987, + 1093, + 987, + 1093, + 1027, + 608, + 1027 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 298, + 565, + 591, + 565, + 591, + 599, + 298, + 599 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 300, + 605, + 1127, + 605, + 1127, + 638, + 300, + 638 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 1924, + 1032, + 1924, + 1032, + 1959, + 297, + 1959 + ], + "score": 0.928 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1865, + 1400, + 1865, + 1400, + 1895, + 1351, + 1895 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 666, + 1400, + 666, + 1400, + 696, + 1366, + 696 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1406, + 1400, + 1406, + 1400, + 1436, + 1366, + 1436 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 992, + 1400, + 992, + 1400, + 1021, + 1366, + 1021 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1575, + 1400, + 1575, + 1400, + 1605, + 1366, + 1605 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1192, + 1400, + 1192, + 1400, + 1220, + 1369, + 1220 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 332, + 1976, + 917, + 1976, + 917, + 2010, + 332, + 2010 + ], + "score": 0.856 + }, + { + "category_id": 1, + "poly": [ + 297, + 719, + 1406, + 719, + 1406, + 811, + 297, + 811 + ], + "score": 0.813 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.783 + }, + { + "category_id": 13, + "poly": [ + 298, + 1121, + 455, + 1121, + 455, + 1166, + 298, + 1166 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\pmb { \\alpha } ^ { * } = \\frac { \\bar { { \\partial \\mathcal { L } } } } { \\partial ( \\mathbf { Y } \\hat { \\mathbf { y } } ) ^ { T } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 600, + 645, + 1096, + 645, + 1096, + 713, + 600, + 713 + ], + "score": 0.94, + "latex": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } ," + }, + { + "category_id": 14, + "poly": [ + 558, + 1171, + 1141, + 1171, + 1141, + 1241, + 558, + 1241 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m i n } _ { \\pmb { \\theta } } \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\pmb { \\alpha } \\mathbf { Y } \\hat { \\mathbf { y } } + \\frac { \\lambda } { 2 } \\| \\pmb { \\theta } \\| ^ { 2 } \\right) ," + }, + { + "category_id": 14, + "poly": [ + 602, + 1843, + 1096, + 1843, + 1096, + 1918, + 602, + 1918 + ], + "score": 0.94, + "latex": "\\dot { \\boldsymbol { \\alpha } } \\approx \\eta \\left( - \\log \\boldsymbol { \\alpha } - \\frac { 1 } { \\lambda } \\boldsymbol { \\alpha } \\mathbf { U } \\left( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } \\right) \\mathbf { U } ^ { T } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 371, + 1739, + 461, + 1739, + 461, + 1776, + 371, + 1776 + ], + "score": 0.94, + "latex": "\\lambda \\ll s _ { k } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 481, + 1307, + 666, + 1307, + 666, + 1349, + 481, + 1349 + ], + "score": 0.93, + "latex": "\\pmb { \\theta } _ { . } ^ { \\ast T } = \\triangleq \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 }" + }, + { + "category_id": 14, + "poly": [ + 565, + 1552, + 1131, + 1552, + 1131, + 1629, + 565, + 1629 + ], + "score": 0.93, + "latex": "\\dot { \\pmb { \\alpha } } = \\eta \\left( - \\log \\pmb { \\alpha } + \\log \\left( \\mathbf { 1 } - \\pmb { \\alpha } \\right) - \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 1054, + 749, + 1180, + 749, + 1180, + 783, + 1054, + 783 + ], + "score": 0.93, + "latex": "\\lambda \\in [ 0 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 743, + 1666, + 867, + 1666, + 867, + 1699, + 743, + 1699 + ], + "score": 0.93, + "latex": "\\alpha _ { i } \\in ( 0 , 1 )" + }, + { + "category_id": 14, + "poly": [ + 525, + 1383, + 1171, + 1383, + 1171, + 1460, + 525, + 1460 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { \\pmb { \\theta } } \\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\operatorname* { m a x } _ { \\pmb { \\alpha } } \\left( \\mathbf { 1 } \\cdot H ( \\pmb { \\alpha } ) - \\frac { 1 } { 2 \\lambda } \\pmb { \\alpha } \\mathbf { Y } \\pmb { \\Phi } _ { 0 } \\pmb { \\Phi } _ { 0 } ^ { T } \\mathbf { Y } ^ { T } \\pmb { \\alpha } ^ { T } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 296, + 1065, + 373, + 1065, + 373, + 1096, + 296, + 1096 + ], + "score": 0.92, + "latex": "( 0 , 1 ) ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 751, + 232, + 812, + 232, + 812, + 265, + 751, + 265 + ], + "score": 0.91, + "latex": "( \\mathbf { U } ^ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1297, + 1664, + 1396, + 1664, + 1396, + 1695, + 1297, + 1695 + ], + "score": 0.91, + "latex": "\\mathbf { U S ^ { 2 } U } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 376, + 1035, + 886, + 1035, + 886, + 1070, + 376, + 1070 + ], + "score": 0.9, + "latex": "H ( \\pmb { \\alpha } ) = - \\left[ \\pmb { \\alpha } \\log \\pmb { \\alpha } + ( 1 - \\pmb { \\alpha } ) \\log \\left( 1 - \\pmb { \\alpha } \\right) \\right]" + }, + { + "category_id": 13, + "poly": [ + 768, + 1976, + 907, + 1976, + 907, + 2011, + 768, + 2011 + ], + "score": 0.9, + "latex": "\\nabla _ { \\pmb { \\theta } } \\mathcal { L } ( \\pmb { \\theta } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 399, + 489, + 399, + 489, + 438, + 297, + 438 + ], + "score": 0.9, + "latex": "i f d z _ { j } ^ { * } / d ( s _ { i } ^ { 2 } ) < 0" + }, + { + "category_id": 14, + "poly": [ + 604, + 987, + 1091, + 987, + 1091, + 1025, + 604, + 1025 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] \\geq H ( \\alpha ) - \\alpha \\odot \\mathbf { Y } \\hat { \\mathbf { y } } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1244, + 335, + 1274, + 335, + 1274, + 371, + 1244, + 371 + ], + "score": 0.88, + "latex": "z _ { j } ^ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 856, + 367, + 899, + 367, + 899, + 397, + 856, + 397 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } ^ { * 1 }" + }, + { + "category_id": 13, + "poly": [ + 1187, + 204, + 1249, + 204, + 1249, + 235, + 1187, + 235 + ], + "score": 0.85, + "latex": "( \\mathbf { Y } \\hat { \\mathbf { y } } )" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1067, + 1117, + 1067, + 1117, + 1092, + 1091, + 1092 + ], + "score": 0.84, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 649, + 206, + 665, + 206, + 665, + 236, + 649, + 236 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 550, + 487, + 566, + 487, + 566, + 516, + 550, + 516 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 989, + 1342, + 1115, + 1342, + 1115, + 1376, + 989, + 1376 + ], + "score": 0.83, + "latex": "\\operatorname* { m i n } _ { \\theta } { \\mathcal { L } } \\left( \\theta \\right)" + }, + { + "category_id": 13, + "poly": [ + 1172, + 235, + 1237, + 235, + 1237, + 268, + 1172, + 268 + ], + "score": 0.82, + "latex": "( \\mathbf { U } ) _ { \\cdot j }" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1039, + 1403, + 1039, + 1403, + 1067, + 1343, + 1067 + ], + "score": 0.82, + "latex": "\\alpha \\in" + }, + { + "category_id": 13, + "poly": [ + 369, + 1641, + 388, + 1641, + 388, + 1668, + 369, + 1668 + ], + "score": 0.81, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 548, + 1743, + 568, + 1743, + 568, + 1769, + 548, + 1769 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 800, + 1279, + 819, + 1279, + 819, + 1305, + 800, + 1305 + ], + "score": 0.79, + "latex": "\\pmb \\theta" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1097, + 1236, + 1097, + 1236, + 1120, + 1212, + 1120 + ], + "score": 0.79, + "latex": "_ \\alpha" + }, + { + "category_id": 13, + "poly": [ + 734, + 1518, + 756, + 1518, + 756, + 1540, + 734, + 1540 + ], + "score": 0.78, + "latex": "_ { \\pmb { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 605, + 725, + 626, + 725, + 626, + 747, + 605, + 747 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 608, + 372, + 624, + 372, + 624, + 402, + 608, + 402 + ], + "score": 0.75, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1385, + 372, + 1401, + 372, + 1401, + 402, + 1385, + 402 + ], + "score": 0.73, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1087, + 458, + 1100, + 458, + 1100, + 482, + 1087, + 482 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1004, + 372, + 1017, + 372, + 1017, + 397, + 1004, + 397 + ], + "score": 0.64, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 650, + 1636, + 738, + 1636, + 738, + 1664, + 650, + 1664 + ], + "score": 0.26, + "latex": "\\mathrm { S M } \\mathrm { C } . 1" + }, + { + "category_id": 13, + "poly": [ + 954, + 1926, + 1022, + 1926, + 1022, + 1955, + 954, + 1955 + ], + "score": 0.26, + "latex": "\\mathbf { S M C }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 562.0, + 594.0, + 562.0, + 594.0, + 605.0, + 293.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1970.0, + 767.0, + 1970.0, + 767.0, + 2015.0, + 332.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1970.0, + 919.0, + 1970.0, + 919.0, + 2015.0, + 908.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 863.0, + 2059.0, + 863.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 856.0, + 1403.0, + 856.0, + 1403.0, + 889.0, + 294.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 922.0, + 294.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 912.0, + 1406.0, + 912.0, + 1406.0, + 955.0, + 291.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 943.0, + 533.0, + 943.0, + 533.0, + 986.0, + 293.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 1403.0, + 1247.0, + 1403.0, + 1281.0, + 295.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1278.0, + 799.0, + 1278.0, + 799.0, + 1310.0, + 294.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1310.0, + 820.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1301.0, + 480.0, + 1301.0, + 480.0, + 1351.0, + 289.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1301.0, + 1410.0, + 1301.0, + 1410.0, + 1351.0, + 667.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1344.0, + 988.0, + 1344.0, + 988.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1344.0, + 1300.0, + 1344.0, + 1300.0, + 1377.0, + 1116.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1032.0, + 375.0, + 1032.0, + 375.0, + 1073.0, + 293.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1032.0, + 1342.0, + 1032.0, + 1342.0, + 1073.0, + 887.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1062.0, + 1090.0, + 1062.0, + 1090.0, + 1099.0, + 374.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1099.0, + 1118.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1093.0, + 1211.0, + 1093.0, + 1211.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1093.0, + 1406.0, + 1093.0, + 1406.0, + 1126.0, + 1237.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1120.0, + 1046.0, + 1120.0, + 1046.0, + 1163.0, + 456.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1125.0, + 344.0, + 1125.0, + 344.0, + 1157.0, + 289.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 202.0, + 648.0, + 202.0, + 648.0, + 237.0, + 294.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 202.0, + 1186.0, + 202.0, + 1186.0, + 237.0, + 666.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 237.0, + 1250.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 231.0, + 750.0, + 231.0, + 750.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 231.0, + 1171.0, + 231.0, + 1171.0, + 268.0, + 813.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 231.0, + 1407.0, + 231.0, + 1407.0, + 268.0, + 1238.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1403.0, + 262.0, + 1403.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 423.0, + 293.0, + 423.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 331.0, + 1243.0, + 331.0, + 1243.0, + 370.0, + 294.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 331.0, + 1405.0, + 331.0, + 1405.0, + 370.0, + 1275.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 365.0, + 607.0, + 365.0, + 607.0, + 407.0, + 291.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 365.0, + 855.0, + 365.0, + 855.0, + 407.0, + 625.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 365.0, + 1003.0, + 365.0, + 1003.0, + 407.0, + 900.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 365.0, + 1384.0, + 365.0, + 1384.0, + 407.0, + 1018.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 398.0, + 502.0, + 398.0, + 502.0, + 436.0, + 490.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1086.0, + 452.0, + 1086.0, + 488.0, + 295.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 452.0, + 1404.0, + 452.0, + 1404.0, + 488.0, + 1101.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 481.0, + 549.0, + 481.0, + 549.0, + 519.0, + 293.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 481.0, + 1407.0, + 481.0, + 1407.0, + 519.0, + 567.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 409.0, + 512.0, + 409.0, + 547.0, + 294.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1635.0, + 368.0, + 1635.0, + 368.0, + 1669.0, + 295.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1635.0, + 649.0, + 1635.0, + 649.0, + 1669.0, + 389.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1669.0, + 739.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1663.0, + 742.0, + 1663.0, + 742.0, + 1699.0, + 291.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1663.0, + 1296.0, + 1663.0, + 1296.0, + 1699.0, + 868.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1663.0, + 1406.0, + 1663.0, + 1406.0, + 1699.0, + 1397.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1409.0, + 1694.0, + 1409.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1480.0, + 1406.0, + 1480.0, + 1406.0, + 1516.0, + 295.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1513.0, + 733.0, + 1513.0, + 733.0, + 1545.0, + 297.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1545.0, + 757.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1738.0, + 370.0, + 1738.0, + 370.0, + 1779.0, + 293.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1738.0, + 547.0, + 1738.0, + 547.0, + 1779.0, + 462.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1738.0, + 1406.0, + 1738.0, + 1406.0, + 1779.0, + 569.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1772.0, + 1404.0, + 1772.0, + 1404.0, + 1806.0, + 296.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 1011.0, + 1802.0, + 1011.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 1131.0, + 600.0, + 1131.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1921.0, + 953.0, + 1921.0, + 953.0, + 1963.0, + 293.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1921.0, + 1032.0, + 1921.0, + 1032.0, + 1963.0, + 1023.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 719.0, + 604.0, + 719.0, + 604.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 719.0, + 1404.0, + 719.0, + 1404.0, + 753.0, + 627.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 747.0, + 1053.0, + 747.0, + 1053.0, + 785.0, + 291.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 747.0, + 1406.0, + 747.0, + 1406.0, + 785.0, + 1181.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 779.0, + 498.0, + 779.0, + 498.0, + 814.0, + 296.0, + 814.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1741, + 1406, + 1741, + 1406, + 2019, + 297, + 2019 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 561, + 1404, + 561, + 1404, + 685, + 297, + 685 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1530, + 1405, + 1530, + 1405, + 1624, + 297, + 1624 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 409, + 1405, + 409, + 1405, + 503, + 298, + 503 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1115, + 1407, + 1115, + 1407, + 1208, + 297, + 1208 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 295, + 1462, + 1402, + 1462, + 1402, + 1525, + 295, + 1525 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 736, + 327, + 958, + 327, + 958, + 390, + 736, + 390 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 680, + 1379, + 1019, + 1379, + 1019, + 1454, + 680, + 1454 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 704, + 1400, + 704, + 1400, + 770, + 296, + 770 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1047, + 1403, + 1047, + 1403, + 1109, + 295, + 1109 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 296, + 895, + 1401, + 895, + 1401, + 955, + 296, + 955 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 794, + 1632, + 905, + 1632, + 905, + 1704, + 794, + 1704 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 293, + 254, + 1401, + 254, + 1401, + 320, + 293, + 320 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 494, + 961, + 1204, + 961, + 1204, + 1031, + 494, + 1031 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 520, + 699, + 520, + 699, + 553, + 299, + 553 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 464, + 775, + 1232, + 775, + 1232, + 847, + 464, + 847 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 298, + 857, + 710, + 857, + 710, + 888, + 298, + 888 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 299, + 1341, + 1156, + 1341, + 1156, + 1373, + 299, + 1373 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 292, + 1287, + 1338, + 1287, + 1338, + 1322, + 292, + 1322 + ], + "score": 0.919 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1401, + 1400, + 1401, + 1400, + 1433, + 1352, + 1433 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 285, + 201, + 1318, + 201, + 1318, + 237, + 285, + 237 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1651, + 1400, + 1651, + 1400, + 1681, + 1352, + 1681 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1234, + 1400, + 1234, + 1400, + 1264, + 1352, + 1264 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 343, + 1400, + 343, + 1400, + 374, + 1352, + 374 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1356, + 796, + 1400, + 796, + 1400, + 826, + 1356, + 826 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 298, + 1709, + 499, + 1709, + 499, + 1740, + 298, + 1740 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1357, + 981, + 1400, + 981, + 1400, + 1010, + 1357, + 1010 + ], + "score": 0.887 + }, + { + "category_id": 8, + "poly": [ + 470, + 775, + 723, + 775, + 723, + 842, + 470, + 842 + ], + "score": 0.839 + }, + { + "category_id": 8, + "poly": [ + 892, + 775, + 1229, + 775, + 1229, + 851, + 892, + 851 + ], + "score": 0.828 + }, + { + "category_id": 8, + "poly": [ + 587, + 1218, + 1110, + 1218, + 1110, + 1278, + 587, + 1278 + ], + "score": 0.788 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.735 + }, + { + "category_id": 8, + "poly": [ + 943, + 960, + 1201, + 960, + 1201, + 1030, + 943, + 1030 + ], + "score": 0.374 + }, + { + "category_id": 8, + "poly": [ + 584, + 1218, + 1111, + 1218, + 1111, + 1279, + 584, + 1279 + ], + "score": 0.225 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.096 + }, + { + "category_id": 8, + "poly": [ + 496, + 961, + 745, + 961, + 745, + 1030, + 496, + 1030 + ], + "score": 0.096 + }, + { + "category_id": 14, + "poly": [ + 678, + 1377, + 1019, + 1377, + 1019, + 1456, + 678, + 1456 + ], + "score": 0.95, + "latex": "\\mathbf { U } = \\left( \\begin{array} { c c } { \\sqrt { 1 - \\delta ^ { 2 } } } & { - \\delta } \\\\ { \\delta } & { \\sqrt { 1 - \\delta ^ { 2 } } } \\end{array} \\right) ," + }, + { + "category_id": 14, + "poly": [ + 736, + 323, + 962, + 323, + 962, + 391, + 736, + 391 + ], + "score": 0.94, + "latex": "\\mathbf { z } ^ { \\ast } = \\frac { 1 } { \\lambda } \\mathbf { S } ^ { 2 } \\mathbf { U } ^ { T } \\pmb { \\alpha } ^ { \\ast T } ." + }, + { + "category_id": 14, + "poly": [ + 792, + 1629, + 905, + 1629, + 905, + 1705, + 792, + 1705 + ], + "score": 0.93, + "latex": "\\frac { \\mathrm { d } z _ { 2 } ^ { * } } { \\mathrm { d } s _ { 1 } ^ { 2 } } < 0 ," + }, + { + "category_id": 14, + "poly": [ + 585, + 1214, + 1109, + 1214, + 1109, + 1279, + 585, + 1279 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { { \\pmb \\alpha } ^ { * } = ( 1 - \\log \\left( { \\pmb \\alpha } _ { 0 } ^ { * } \\right) ) \\left[ { \\pmb A } + d i a g \\left( { \\pmb \\alpha } _ { 0 } ^ { * } ^ { - 1 } \\right) \\right] ^ { - 1 } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 672, + 1589, + 761, + 1589, + 761, + 1625, + 672, + 1625 + ], + "score": 0.93, + "latex": "s _ { 1 } ^ { 2 } > s _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 203, + 1309, + 203, + 1309, + 237, + 1185, + 237 + ], + "score": 0.92, + "latex": "\\alpha _ { i } \\in ( 0 , 1 )" + }, + { + "category_id": 14, + "poly": [ + 469, + 774, + 722, + 774, + 722, + 842, + 469, + 842 + ], + "score": 0.92, + "latex": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } ," + }, + { + "category_id": 14, + "poly": [ + 494, + 958, + 1206, + 958, + 1206, + 1031, + 494, + 1031 + ], + "score": 0.91, + "latex": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } , \\ ~ \\ z _ { j } ^ { * } = \\frac { s _ { i } ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } ." + }, + { + "category_id": 13, + "poly": [ + 371, + 1285, + 663, + 1285, + 663, + 1322, + 371, + 1322 + ], + "score": 0.91, + "latex": "\\mathbf { A } = \\lambda ^ { - 1 } \\mathbf { U } ( \\mathbf { S } ^ { 2 } + \\lambda \\mathbf { I } ) \\mathbf { U } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1289, + 1337, + 1289, + 1337, + 1316, + 1272, + 1316 + ], + "score": 0.9, + "latex": "\\delta = 0" + }, + { + "category_id": 13, + "poly": [ + 715, + 1290, + 751, + 1290, + 751, + 1322, + 715, + 1322 + ], + "score": 0.9, + "latex": "\\alpha _ { 0 } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 1147, + 1136, + 1147, + 1136, + 1174, + 1069, + 1174 + ], + "score": 0.89, + "latex": "\\delta > 0" + }, + { + "category_id": 14, + "poly": [ + 891, + 774, + 1228, + 774, + 1228, + 853, + 891, + 853 + ], + "score": 0.88, + "latex": "z _ { j } ^ { * } = \\frac { s ^ { 2 } \\mathcal { W } ( { \\lambda ^ { - 1 } s ^ { 2 } + 1 } ) } { s ^ { 2 } + \\lambda } \\sum _ { i } u _ { i j } ," + }, + { + "category_id": 13, + "poly": [ + 687, + 705, + 721, + 705, + 721, + 734, + 687, + 734 + ], + "score": 0.88, + "latex": "\\mathbf { S } ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 469, + 773, + 1228, + 773, + 1228, + 853, + 469, + 853 + ], + "score": 0.88, + "latex": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } , \\qquad z _ { j } ^ { * } = \\frac { s ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s ^ { 2 } + 1 ) } { s ^ { 2 } + \\lambda } \\sum _ { i } u _ { i j } ," + }, + { + "category_id": 13, + "poly": [ + 506, + 259, + 542, + 259, + 542, + 285, + 506, + 285 + ], + "score": 0.87, + "latex": "\\ b { \\alpha } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 651, + 737, + 678, + 737, + 678, + 766, + 651, + 766 + ], + "score": 0.87, + "latex": "s ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 496, + 959, + 749, + 959, + 749, + 1030, + 496, + 1030 + ], + "score": 0.86, + "latex": "\\alpha _ { i } ^ { * } = \\frac { \\lambda \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } ," + }, + { + "category_id": 13, + "poly": [ + 371, + 859, + 404, + 859, + 404, + 886, + 371, + 886 + ], + "score": 0.83, + "latex": "\\mathcal { W }" + }, + { + "category_id": 13, + "poly": [ + 574, + 1464, + 599, + 1464, + 599, + 1490, + 574, + 1490 + ], + "score": 0.8, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1385, + 1465, + 1400, + 1465, + 1400, + 1490, + 1385, + 1490 + ], + "score": 0.73, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 474, + 895, + 503, + 895, + 503, + 923, + 474, + 923 + ], + "score": 0.54, + "latex": "\\mathbf { U }" + }, + { + "category_id": 13, + "poly": [ + 526, + 1115, + 556, + 1115, + 556, + 1144, + 526, + 1144 + ], + "score": 0.49, + "latex": "\\mathbf { U }" + }, + { + "category_id": 14, + "poly": [ + 943, + 959, + 1204, + 959, + 1204, + 1030, + 943, + 1030 + ], + "score": 0.48, + "latex": "z _ { j } ^ { * } = \\frac { s _ { i } ^ { 2 } \\mathcal { W } ( \\lambda ^ { - 1 } s _ { i } ^ { 2 } + 1 ) } { s _ { i } ^ { 2 } + \\lambda } ." + }, + { + "category_id": 13, + "poly": [ + 1073, + 1564, + 1088, + 1564, + 1088, + 1589, + 1073, + 1589 + ], + "score": 0.31, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 516.0, + 701.0, + 516.0, + 701.0, + 560.0, + 292.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 1407.0, + 1772.0, + 1407.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1403.0, + 1803.0, + 1403.0, + 1835.0, + 295.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1834.0, + 1403.0, + 1834.0, + 1403.0, + 1867.0, + 296.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 1406.0, + 1862.0, + 1406.0, + 1902.0, + 292.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1896.0, + 1404.0, + 1896.0, + 1404.0, + 1929.0, + 296.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 1403.0, + 1922.0, + 1403.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1951.0, + 1409.0, + 1951.0, + 1409.0, + 1994.0, + 291.0, + 1994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1985.0, + 1047.0, + 1985.0, + 1047.0, + 2022.0, + 295.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 562.0, + 1406.0, + 562.0, + 1406.0, + 595.0, + 295.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 591.0, + 1406.0, + 591.0, + 1406.0, + 624.0, + 295.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 1405.0, + 623.0, + 1405.0, + 656.0, + 295.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 655.0, + 735.0, + 655.0, + 735.0, + 687.0, + 293.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1564.0, + 296.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1072.0, + 1561.0, + 1072.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1596.0, + 1089.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1590.0, + 671.0, + 1590.0, + 671.0, + 1628.0, + 292.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1590.0, + 876.0, + 1590.0, + 876.0, + 1628.0, + 762.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 407.0, + 1408.0, + 407.0, + 1408.0, + 445.0, + 295.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 439.0, + 1406.0, + 439.0, + 1406.0, + 474.0, + 293.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 472.0, + 596.0, + 472.0, + 596.0, + 502.0, + 296.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1113.0, + 525.0, + 1113.0, + 525.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1113.0, + 1407.0, + 1113.0, + 1407.0, + 1151.0, + 557.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1143.0, + 1068.0, + 1143.0, + 1068.0, + 1182.0, + 292.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1143.0, + 1408.0, + 1143.0, + 1408.0, + 1182.0, + 1137.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1176.0, + 925.0, + 1176.0, + 925.0, + 1212.0, + 295.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 573.0, + 1459.0, + 573.0, + 1497.0, + 293.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1459.0, + 1384.0, + 1459.0, + 1384.0, + 1497.0, + 600.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1497.0, + 1401.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 655.0, + 1488.0, + 655.0, + 1529.0, + 294.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 705.0, + 686.0, + 705.0, + 686.0, + 741.0, + 296.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 705.0, + 1405.0, + 705.0, + 1405.0, + 741.0, + 722.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 650.0, + 732.0, + 650.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 732.0, + 1081.0, + 732.0, + 1081.0, + 776.0, + 679.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 1404.0, + 1043.0, + 1404.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 1195.0, + 1074.0, + 1195.0, + 1113.0, + 294.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 893.0, + 473.0, + 893.0, + 473.0, + 927.0, + 295.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 893.0, + 1405.0, + 893.0, + 1405.0, + 927.0, + 504.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 921.0, + 923.0, + 921.0, + 923.0, + 959.0, + 295.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 253.0, + 505.0, + 253.0, + 505.0, + 293.0, + 293.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 253.0, + 1406.0, + 253.0, + 1406.0, + 293.0, + 543.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 286.0, + 526.0, + 286.0, + 526.0, + 319.0, + 295.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 370.0, + 854.0, + 370.0, + 892.0, + 295.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 854.0, + 712.0, + 854.0, + 712.0, + 892.0, + 405.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1337.0, + 1156.0, + 1337.0, + 1156.0, + 1380.0, + 293.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 370.0, + 1282.0, + 370.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1282.0, + 714.0, + 1282.0, + 714.0, + 1326.0, + 664.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1282.0, + 1271.0, + 1282.0, + 1271.0, + 1326.0, + 752.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1282.0, + 1344.0, + 1282.0, + 1344.0, + 1326.0, + 1338.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 199.0, + 1184.0, + 199.0, + 1184.0, + 240.0, + 294.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 199.0, + 1321.0, + 199.0, + 1321.0, + 240.0, + 1310.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1706.0, + 504.0, + 1706.0, + 504.0, + 1745.0, + 294.0, + 1745.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 752, + 1406, + 752, + 1406, + 999, + 297, + 999 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1065, + 1405, + 1065, + 1405, + 1189, + 298, + 1189 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1406, + 1405, + 1406, + 1405, + 1591, + 296, + 1591 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 243, + 1406, + 243, + 1406, + 398, + 297, + 398 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 508, + 1405, + 508, + 1405, + 603, + 299, + 603 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1251, + 1405, + 1251, + 1405, + 1344, + 298, + 1344 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 328, + 1625, + 800, + 1625, + 800, + 1853, + 328, + 1853 + ], + "score": 0.972, + "html": "
DatasetMethodTrain*Test IIDTest OOD†
Cifar-2w/o SD100.0% ±0.0 95.2%±0.1242.3% ±3.0
w/ SD(a=0.01)100.0%±0.0 95.3%±0.1769.7% ± 2.9
Cifar-10w/o SD99.9% ± 0.0192.8%±0.1530.1% ± 2.1
w/ SD(=0.01)99.9%±0.01 92.9% ±0.1667.7% ± 1.5
Cifar-100w/o SD99.7% ± 0.01 69.2% ±0.2914.3% ± 2.0
w/SD(a=0.05)99.7%±0.0270.5%±0.2624.9% ± 1.9
" + }, + { + "category_id": 3, + "poly": [ + 884, + 1607, + 1364, + 1607, + 1364, + 1891, + 884, + 1891 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 856, + 1901, + 1405, + 1901, + 1405, + 2012, + 856, + 2012 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 464, + 618, + 1233, + 618, + 1233, + 694, + 464, + 694 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 601, + 415, + 1097, + 415, + 1097, + 479, + 601, + 479 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 297, + 1366, + 931, + 1366, + 931, + 1398, + 297, + 1398 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 298, + 203, + 604, + 203, + 604, + 236, + 298, + 236 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 709, + 1202, + 709, + 1202, + 741, + 299, + 741 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 297, + 1020, + 534, + 1020, + 534, + 1057, + 297, + 1057 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 298, + 1209, + 837, + 1209, + 837, + 1242, + 298, + 1242 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1352, + 432, + 1400, + 432, + 1400, + 464, + 1352, + 464 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 641, + 1400, + 641, + 1400, + 671, + 1352, + 671 + ], + "score": 0.898 + }, + { + "category_id": 7, + "poly": [ + 337, + 1863, + 575, + 1863, + 575, + 1886, + 337, + 1886 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.81 + }, + { + "category_id": 6, + "poly": [ + 295, + 1901, + 841, + 1901, + 841, + 2013, + 295, + 2013 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 295, + 1901, + 841, + 1901, + 841, + 2013, + 295, + 2013 + ], + "score": 0.271 + }, + { + "category_id": 14, + "poly": [ + 464, + 616, + 1233, + 616, + 1233, + 694, + 464, + 694 + ], + "score": 0.95, + "latex": "\\dot { \\alpha } = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\mathbf { U } \\mathbf { S } ^ { 2 } \\mathbf { S } ^ { - 2 } \\mathbf { U } ^ { T } \\right) = \\eta \\left( \\log \\frac { \\mathbf { 1 } - \\alpha } { \\alpha } - \\frac { 1 } { \\lambda } \\alpha \\right) ," + }, + { + "category_id": 14, + "poly": [ + 600, + 412, + 1100, + 412, + 1100, + 480, + 600, + 480 + ], + "score": 0.93, + "latex": "\\mathcal { L } \\left( \\pmb { \\theta } \\right) = \\mathbf { 1 } \\cdot \\log \\left[ 1 + \\exp \\left( - \\mathbf { Y } \\hat { \\mathbf { y } } \\right) \\right] + \\frac { \\lambda } { 2 } \\| \\hat { \\mathbf { y } } \\| ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 542, + 537, + 822, + 537, + 822, + 576, + 542, + 576 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\pmb { \\theta } ^ { \\ast } = \\frac { 1 } { \\lambda } \\pmb { \\alpha } \\pmb { Y } \\pmb { \\Phi } _ { 0 } V \\mathbf { S } ^ { - 2 } V ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1211, + 241, + 1306, + 241, + 1306, + 272, + 1211, + 272 + ], + "score": 0.91, + "latex": "U ^ { T } S ^ { 2 } U" + }, + { + "category_id": 13, + "poly": [ + 1107, + 540, + 1138, + 540, + 1138, + 567, + 1107, + 567 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 402, + 540, + 433, + 540, + 433, + 567, + 402, + 567 + ], + "score": 0.87, + "latex": "\\pmb { \\theta } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 278, + 1257, + 278, + 1257, + 305, + 1227, + 305 + ], + "score": 0.85, + "latex": "\\alpha _ { i }" + }, + { + "category_id": 13, + "poly": [ + 387, + 789, + 417, + 789, + 417, + 816, + 387, + 816 + ], + "score": 0.84, + "latex": "\\alpha _ { i }" + }, + { + "category_id": 13, + "poly": [ + 530, + 307, + 555, + 307, + 555, + 335, + 530, + 335 + ], + "score": 0.84, + "latex": "z _ { i }" + }, + { + "category_id": 13, + "poly": [ + 601, + 849, + 631, + 849, + 631, + 876, + 601, + 876 + ], + "score": 0.83, + "latex": "\\alpha _ { i }" + }, + { + "category_id": 13, + "poly": [ + 664, + 788, + 721, + 788, + 721, + 820, + 664, + 820 + ], + "score": 0.81, + "latex": "\\alpha _ { j \\neq i }" + }, + { + "category_id": 13, + "poly": [ + 1126, + 755, + 1148, + 755, + 1148, + 783, + 1126, + 783 + ], + "score": 0.81, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 1046, + 755, + 1071, + 755, + 1071, + 783, + 1046, + 783 + ], + "score": 0.8, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1172, + 716, + 1195, + 716, + 1195, + 737, + 1172, + 737 + ], + "score": 0.77, + "latex": "_ { \\pmb { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 987, + 1866, + 1014, + 1866, + 1014, + 1890, + 987, + 1890 + ], + "score": 0.3, + "latex": "l _ { \\infty }" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1599.0, + 921.0, + 1599.0, + 921.0, + 1859.0, + 883.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1603.0, + 942.0, + 1603.0, + 942.0, + 1628.0, + 903.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1643.0, + 938.0, + 1643.0, + 938.0, + 1671.0, + 908.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1688.0, + 938.0, + 1688.0, + 938.0, + 1715.0, + 906.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1719.0, + 1291.0, + 1719.0, + 1291.0, + 1748.0, + 1174.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1731.0, + 938.0, + 1731.0, + 938.0, + 1760.0, + 909.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1754.0, + 1342.0, + 1754.0, + 1342.0, + 1783.0, + 1221.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1776.0, + 936.0, + 1776.0, + 936.0, + 1799.0, + 909.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1782.0, + 1266.0, + 1782.0, + 1266.0, + 1813.0, + 1225.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1824.0, + 931.0, + 1824.0, + 931.0, + 1843.0, + 915.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1844.0, + 983.0, + 1844.0, + 983.0, + 1873.0, + 943.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1843.0, + 1060.0, + 1843.0, + 1060.0, + 1873.0, + 1019.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1844.0, + 1136.0, + 1844.0, + 1136.0, + 1873.0, + 1095.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1843.0, + 1213.0, + 1843.0, + 1213.0, + 1872.0, + 1171.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1843.0, + 1287.0, + 1843.0, + 1287.0, + 1873.0, + 1247.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 1844.0, + 1361.0, + 1844.0, + 1361.0, + 1871.0, + 1323.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1862.0, + 986.0, + 1862.0, + 986.0, + 1893.0, + 983.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1862.0, + 1307.0, + 1862.0, + 1307.0, + 1893.0, + 1015.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1899.0, + 1404.0, + 1899.0, + 1404.0, + 1931.0, + 856.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1923.0, + 1405.0, + 1923.0, + 1405.0, + 1961.0, + 854.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1955.0, + 1407.0, + 1955.0, + 1407.0, + 1987.0, + 856.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1980.0, + 963.0, + 1980.0, + 963.0, + 2017.0, + 856.0, + 2017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1362.0, + 934.0, + 1362.0, + 934.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 195.0, + 607.0, + 195.0, + 607.0, + 247.0, + 291.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1013.0, + 537.0, + 1013.0, + 537.0, + 1070.0, + 289.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1207.0, + 840.0, + 1207.0, + 840.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1862.0, + 577.0, + 1862.0, + 577.0, + 1889.0, + 338.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1900.0, + 844.0, + 1900.0, + 844.0, + 1930.0, + 295.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1926.0, + 845.0, + 1926.0, + 845.0, + 1958.0, + 294.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1953.0, + 844.0, + 1953.0, + 844.0, + 1988.0, + 295.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1980.0, + 670.0, + 1980.0, + 670.0, + 2016.0, + 295.0, + 2016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 1045.0, + 753.0, + 1045.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 753.0, + 1125.0, + 753.0, + 1125.0, + 789.0, + 1072.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 753.0, + 1406.0, + 753.0, + 1406.0, + 789.0, + 1149.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 386.0, + 785.0, + 386.0, + 822.0, + 294.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 785.0, + 663.0, + 785.0, + 663.0, + 822.0, + 418.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 785.0, + 1407.0, + 785.0, + 1407.0, + 822.0, + 722.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 1406.0, + 816.0, + 1406.0, + 850.0, + 295.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 844.0, + 600.0, + 844.0, + 600.0, + 880.0, + 292.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 844.0, + 1406.0, + 844.0, + 1406.0, + 880.0, + 632.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 873.0, + 1406.0, + 873.0, + 1406.0, + 914.0, + 292.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 906.0, + 1404.0, + 906.0, + 1404.0, + 939.0, + 295.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 937.0, + 1406.0, + 937.0, + 1406.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 967.0, + 1132.0, + 967.0, + 1132.0, + 1001.0, + 296.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1064.0, + 1410.0, + 1064.0, + 1410.0, + 1101.0, + 292.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1098.0, + 1405.0, + 1098.0, + 1405.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1125.0, + 1405.0, + 1125.0, + 1405.0, + 1162.0, + 292.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 838.0, + 1156.0, + 838.0, + 1192.0, + 295.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1406.0, + 1404.0, + 1406.0, + 1441.0, + 293.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 1407.0, + 1436.0, + 1407.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 1407.0, + 1465.0, + 1407.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1496.0, + 1407.0, + 1496.0, + 1407.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1406.0, + 1525.0, + 1406.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1558.0, + 1382.0, + 1558.0, + 1382.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 242.0, + 1210.0, + 242.0, + 1210.0, + 278.0, + 294.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 242.0, + 1406.0, + 242.0, + 1406.0, + 278.0, + 1307.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 271.0, + 1226.0, + 271.0, + 1226.0, + 309.0, + 294.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 271.0, + 1408.0, + 271.0, + 1408.0, + 309.0, + 1258.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 302.0, + 529.0, + 302.0, + 529.0, + 340.0, + 292.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 302.0, + 1406.0, + 302.0, + 1406.0, + 340.0, + 556.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 332.0, + 1406.0, + 332.0, + 1406.0, + 370.0, + 295.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 364.0, + 1314.0, + 364.0, + 1314.0, + 402.0, + 295.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 401.0, + 532.0, + 401.0, + 577.0, + 292.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 532.0, + 541.0, + 532.0, + 541.0, + 577.0, + 434.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 532.0, + 1106.0, + 532.0, + 1106.0, + 577.0, + 823.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 532.0, + 1407.0, + 532.0, + 1407.0, + 577.0, + 1139.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 570.0, + 549.0, + 570.0, + 549.0, + 605.0, + 295.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1247.0, + 1407.0, + 1247.0, + 1407.0, + 1288.0, + 292.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1282.0, + 1405.0, + 1282.0, + 1405.0, + 1316.0, + 295.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1408.0, + 1310.0, + 1408.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 705.0, + 1171.0, + 705.0, + 1171.0, + 746.0, + 294.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 705.0, + 1207.0, + 705.0, + 1207.0, + 746.0, + 1196.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1900.0, + 844.0, + 1900.0, + 844.0, + 1930.0, + 295.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1926.0, + 845.0, + 1926.0, + 845.0, + 1958.0, + 294.0, + 1958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1953.0, + 844.0, + 1953.0, + 844.0, + 1988.0, + 295.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1980.0, + 670.0, + 1980.0, + 670.0, + 2016.0, + 295.0, + 2016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 202, + 1405, + 202, + 1405, + 539, + 297, + 539 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1595, + 1406, + 1595, + 1406, + 1931, + 297, + 1931 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1293, + 1404, + 1293, + 1404, + 1477, + 298, + 1477 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 596, + 1404, + 596, + 1404, + 717, + 296, + 717 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 520, + 926, + 1171, + 926, + 1171, + 1151, + 520, + 1151 + ], + "score": 0.974, + "html": "
MethodTrain AccuracyTest Accuracy
ERM(Vanilla Cross-Entropy)91.1 % (±0.4)23.7 % (±0.8)
REx[59]71.5 % (±1.0)68.7% (±0.9)
IRM[9]70.5% (±0.6)67.1 % (±1.4)
SD (this work)70.0 % (±0.9)68.4% (±1.2)
Oracle - (grayscale images)73.5 % (±0.2)73.0 % (±0.4)
RandomGuess50%50%
" + }, + { + "category_id": 1, + "poly": [ + 300, + 1490, + 1400, + 1490, + 1400, + 1584, + 300, + 1584 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 824, + 1397, + 824, + 1397, + 917, + 298, + 917 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1945, + 1399, + 1945, + 1399, + 2008, + 297, + 2008 + ], + "score": 0.94 + }, + { + "category_id": 0, + "poly": [ + 298, + 555, + 736, + 555, + 736, + 588, + 298, + 588 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 299, + 1174, + 1400, + 1174, + 1400, + 1286, + 299, + 1286 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 285, + 719, + 1290, + 719, + 1290, + 815, + 285, + 815 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.731 + }, + { + "category_id": 13, + "poly": [ + 771, + 628, + 861, + 628, + 861, + 658, + 771, + 658 + ], + "score": 0.92, + "latex": "y = + 1" + }, + { + "category_id": 13, + "poly": [ + 449, + 628, + 539, + 628, + 539, + 658, + 449, + 658 + ], + "score": 0.92, + "latex": "y = - 1" + }, + { + "category_id": 13, + "poly": [ + 1248, + 204, + 1394, + 204, + 1394, + 235, + 1248, + 235 + ], + "score": 0.86, + "latex": "\\epsilon _ { \\mathrm { P G D } } = 0 . 0 5 )" + }, + { + "category_id": 13, + "poly": [ + 825, + 1230, + 881, + 1230, + 881, + 1256, + 825, + 1256 + ], + "score": 0.85, + "latex": "25 \\%" + }, + { + "category_id": 13, + "poly": [ + 616, + 1491, + 700, + 1491, + 700, + 1520, + 616, + 1520 + ], + "score": 0.85, + "latex": "6 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1293, + 1404, + 1293, + 1404, + 1324, + 1316, + 1324 + ], + "score": 0.83, + "latex": "( 6 7 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1346, + 1230, + 1403, + 1230, + 1403, + 1256, + 1346, + 1256 + ], + "score": 0.82, + "latex": "75 \\%" + }, + { + "category_id": 13, + "poly": [ + 788, + 886, + 873, + 886, + 873, + 915, + 788, + 915 + ], + "score": 0.81, + "latex": "( 2 3 . 7 \\%" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 553.0, + 741.0, + 553.0, + 741.0, + 592.0, + 293.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 200.0, + 1247.0, + 200.0, + 1247.0, + 239.0, + 292.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 200.0, + 1408.0, + 200.0, + 1408.0, + 239.0, + 1395.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 233.0, + 1408.0, + 233.0, + 1408.0, + 271.0, + 292.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 295.0, + 1406.0, + 295.0, + 1406.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 323.0, + 1407.0, + 323.0, + 1407.0, + 362.0, + 294.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1405.0, + 353.0, + 1405.0, + 390.0, + 294.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 384.0, + 1405.0, + 384.0, + 1405.0, + 420.0, + 294.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 1406.0, + 414.0, + 1406.0, + 451.0, + 294.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 441.0, + 1406.0, + 441.0, + 1406.0, + 484.0, + 291.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 511.0, + 295.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 996.0, + 507.0, + 996.0, + 542.0, + 295.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1634.0, + 291.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1663.0, + 292.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1658.0, + 1408.0, + 1658.0, + 1408.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1717.0, + 1406.0, + 1717.0, + 1406.0, + 1752.0, + 295.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1747.0, + 1407.0, + 1747.0, + 1407.0, + 1785.0, + 294.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1779.0, + 1406.0, + 1779.0, + 1406.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 1409.0, + 1808.0, + 1409.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1840.0, + 1408.0, + 1840.0, + 1408.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1867.0, + 1406.0, + 1867.0, + 1406.0, + 1907.0, + 294.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1899.0, + 1105.0, + 1899.0, + 1105.0, + 1934.0, + 294.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1315.0, + 1292.0, + 1315.0, + 1328.0, + 294.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1292.0, + 1408.0, + 1292.0, + 1408.0, + 1328.0, + 1405.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1324.0, + 1406.0, + 1324.0, + 1406.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1353.0, + 1408.0, + 1353.0, + 1408.0, + 1390.0, + 293.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1407.0, + 1385.0, + 1407.0, + 1419.0, + 293.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1450.0, + 293.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1288.0, + 1446.0, + 1288.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 1405.0, + 593.0, + 1405.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 626.0, + 448.0, + 626.0, + 448.0, + 661.0, + 295.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 626.0, + 770.0, + 626.0, + 770.0, + 661.0, + 540.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 626.0, + 1405.0, + 626.0, + 1405.0, + 661.0, + 862.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 652.0, + 1405.0, + 652.0, + 1405.0, + 692.0, + 293.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 685.0, + 780.0, + 685.0, + 780.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1490.0, + 615.0, + 1490.0, + 615.0, + 1524.0, + 295.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1490.0, + 1405.0, + 1490.0, + 1405.0, + 1524.0, + 701.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1521.0, + 1404.0, + 1521.0, + 1404.0, + 1555.0, + 296.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1553.0, + 1181.0, + 1553.0, + 1181.0, + 1587.0, + 296.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 1403.0, + 821.0, + 1403.0, + 861.0, + 293.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 855.0, + 1403.0, + 855.0, + 1403.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 886.0, + 787.0, + 886.0, + 787.0, + 920.0, + 295.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 886.0, + 1210.0, + 886.0, + 1210.0, + 920.0, + 874.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1404.0, + 1975.0, + 1404.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1207.0, + 294.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1198.0, + 1406.0, + 1198.0, + 1406.0, + 1238.0, + 293.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1229.0, + 824.0, + 1229.0, + 824.0, + 1262.0, + 295.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1229.0, + 1345.0, + 1229.0, + 1345.0, + 1262.0, + 882.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1258.0, + 582.0, + 1258.0, + 582.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 716.0, + 1120.0, + 716.0, + 1120.0, + 756.0, + 295.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 750.0, + 1121.0, + 750.0, + 1121.0, + 787.0, + 297.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 780.0, + 1295.0, + 780.0, + 1295.0, + 821.0, + 296.0, + 821.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1564, + 1406, + 1564, + 1406, + 1961, + 297, + 1961 + ], + "score": 0.984 + }, + { + "category_id": 3, + "poly": [ + 318, + 917, + 823, + 917, + 823, + 1195, + 318, + 1195 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 302, + 1218, + 848, + 1218, + 848, + 1383, + 302, + 1383 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 355, + 197, + 1340, + 197, + 1340, + 597, + 355, + 597 + ], + "score": 0.965 + }, + { + "category_id": 5, + "poly": [ + 877, + 952, + 1379, + 952, + 1379, + 1173, + 877, + 1173 + ], + "score": 0.96, + "html": "
MethodAverage Acc.Worst Group Acc.
ERM94.61 % (±0.67)40.35 % (±1.68)
SD (this work)91.64 % (±0.61)83.24 % (±2.01)
LfFN/A81.24 % (±1.38)
Group DRO*91.76 % (±0.28)87.78 % (±0.96)
" + }, + { + "category_id": 1, + "poly": [ + 295, + 1446, + 1401, + 1446, + 1401, + 1507, + 295, + 1507 + ], + "score": 0.951 + }, + { + "category_id": 0, + "poly": [ + 298, + 1523, + 654, + 1523, + 654, + 1555, + 298, + 1555 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 299, + 1975, + 1399, + 1975, + 1399, + 2008, + 299, + 2008 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2085, + 841, + 2085 + ], + "score": 0.803 + }, + { + "category_id": 4, + "poly": [ + 296, + 624, + 1406, + 624, + 1406, + 883, + 296, + 883 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 296, + 624, + 1406, + 624, + 1406, + 883, + 296, + 883 + ], + "score": 0.401 + }, + { + "category_id": 6, + "poly": [ + 867, + 1217, + 1398, + 1217, + 1398, + 1384, + 867, + 1384 + ], + "score": 0.353 + }, + { + "category_id": 13, + "poly": [ + 787, + 1836, + 917, + 1836, + 917, + 1875, + 787, + 1875 + ], + "score": 0.93, + "latex": "\\frac { \\lambda } { 2 } | | \\hat { y } - \\gamma | | _ { 2 } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 824, + 397, + 824, + 397, + 857, + 297, + 857 + ], + "score": 0.87, + "latex": "( \\overbrace { 2 3 . 9 \\mathrm { ~ \\% ~ } } )" + }, + { + "category_id": 13, + "poly": [ + 468, + 1686, + 548, + 1686, + 548, + 1714, + 468, + 1714 + ], + "score": 0.85, + "latex": "0 . 8 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 875, + 682, + 951, + 682, + 951, + 709, + 875, + 709 + ], + "score": 0.85, + "latex": "4 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 806, + 737, + 868, + 737, + 868, + 771, + 806, + 771 + ], + "score": 0.83, + "latex": "\\textcircled { 1 } \\textcircled { 1 }" + }, + { + "category_id": 13, + "poly": [ + 831, + 825, + 924, + 825, + 924, + 856, + 831, + 856 + ], + "score": 0.83, + "latex": "( 6 7 . 2 \\% )" + }, + { + "category_id": 13, + "poly": [ + 616, + 1874, + 636, + 1874, + 636, + 1902, + 616, + 1902 + ], + "score": 0.83, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 910, + 738, + 967, + 738, + 967, + 770, + 910, + 770 + ], + "score": 0.8, + "latex": "0 . 4 1" + }, + { + "category_id": 13, + "poly": [ + 546, + 1871, + 567, + 1871, + 567, + 1897, + 546, + 1897 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 661, + 678, + 736, + 678, + 736, + 711, + 661, + 711 + ], + "score": 0.62, + "latex": "\\mathfrak { C } \\sharp \\sharp \\sharp \\sharp \\sharp \\cdot" + }, + { + "category_id": 13, + "poly": [ + 920, + 1627, + 945, + 1627, + 945, + 1653, + 920, + 1653 + ], + "score": 0.58, + "latex": "\\in" + }, + { + "category_id": 13, + "poly": [ + 683, + 1564, + 743, + 1564, + 743, + 1593, + 683, + 1593 + ], + "score": 0.53, + "latex": "1 6 2 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1656, + 732, + 1656, + 732, + 1686, + 398, + 1686 + ], + "score": 0.41, + "latex": "\\mathtt { H a i r C o l o r } \\in \\{ \\mathtt { B l o n d } , \\mathtt { D a r k } \\}" + }, + { + "category_id": 13, + "poly": [ + 905, + 1685, + 962, + 1685, + 962, + 1714, + 905, + 1714 + ], + "score": 0.34, + "latex": "1 6 2 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 918.0, + 541.0, + 918.0, + 541.0, + 944.0, + 393.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 918.0, + 788.0, + 918.0, + 788.0, + 944.0, + 664.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 929.0, + 364.0, + 929.0, + 364.0, + 959.0, + 324.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 931.0, + 612.0, + 931.0, + 612.0, + 953.0, + 576.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 968.0, + 678.0, + 968.0, + 678.0, + 979.0, + 663.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 974.0, + 363.0, + 974.0, + 363.0, + 1003.0, + 332.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 975.0, + 611.0, + 975.0, + 611.0, + 1004.0, + 580.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 984.0, + 643.0, + 984.0, + 643.0, + 1002.0, + 619.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 985.0, + 810.0, + 985.0, + 810.0, + 993.0, + 799.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 999.0, + 436.0, + 999.0, + 436.0, + 1007.0, + 429.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 996.0, + 638.0, + 996.0, + 638.0, + 1010.0, + 627.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1011.0, + 347.0, + 1011.0, + 347.0, + 1102.0, + 318.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1020.0, + 610.0, + 1020.0, + 610.0, + 1048.0, + 581.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1023.0, + 360.0, + 1023.0, + 360.0, + 1048.0, + 334.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1045.0, + 632.0, + 1045.0, + 632.0, + 1054.0, + 624.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1068.0, + 360.0, + 1068.0, + 360.0, + 1092.0, + 335.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1075.0, + 400.0, + 1075.0, + 400.0, + 1083.0, + 392.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1070.0, + 608.0, + 1070.0, + 608.0, + 1092.0, + 582.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1077.0, + 632.0, + 1077.0, + 632.0, + 1089.0, + 621.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1085.0, + 632.0, + 1085.0, + 632.0, + 1133.0, + 619.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1087.0, + 799.0, + 1087.0, + 799.0, + 1105.0, + 713.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1112.0, + 363.0, + 1112.0, + 363.0, + 1139.0, + 332.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1114.0, + 608.0, + 1114.0, + 608.0, + 1138.0, + 581.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1131.0, + 629.0, + 1131.0, + 629.0, + 1172.0, + 616.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1104.0, + 812.0, + 1104.0, + 812.0, + 1166.0, + 712.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1161.0, + 356.0, + 1161.0, + 356.0, + 1179.0, + 339.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1162.0, + 604.0, + 1162.0, + 604.0, + 1180.0, + 587.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1173.0, + 511.0, + 1173.0, + 511.0, + 1196.0, + 421.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1171.0, + 764.0, + 1171.0, + 764.0, + 1197.0, + 674.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 976.5, + 638.0, + 976.5, + 638.0, + 988.5, + 617.0, + 988.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 978.5, + 683.0, + 978.5, + 683.0, + 985.5, + 673.0, + 985.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1219.0, + 850.0, + 1219.0, + 850.0, + 1248.0, + 302.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1245.0, + 849.0, + 1245.0, + 849.0, + 1277.0, + 302.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1274.0, + 846.0, + 1274.0, + 846.0, + 1303.0, + 302.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1300.0, + 850.0, + 1300.0, + 850.0, + 1332.0, + 302.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1326.0, + 847.0, + 1326.0, + 847.0, + 1362.0, + 301.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1355.0, + 350.0, + 1355.0, + 350.0, + 1385.0, + 301.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 196.0, + 738.0, + 196.0, + 738.0, + 223.0, + 682.0, + 223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 196.0, + 953.0, + 196.0, + 953.0, + 225.0, + 914.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 196.0, + 1165.0, + 196.0, + 1165.0, + 224.0, + 1115.0, + 224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 226.0, + 709.0, + 226.0, + 709.0, + 248.0, + 636.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 223.0, + 779.0, + 223.0, + 779.0, + 247.0, + 716.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 226.0, + 931.0, + 226.0, + 931.0, + 248.0, + 857.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 223.0, + 1002.0, + 223.0, + 1002.0, + 250.0, + 940.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 226.0, + 1139.0, + 226.0, + 1139.0, + 248.0, + 1065.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 223.0, + 1208.0, + 223.0, + 1208.0, + 247.0, + 1145.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 246.0, + 901.0, + 246.0, + 901.0, + 256.0, + 890.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 247.0, + 976.0, + 247.0, + 976.0, + 256.0, + 967.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 249.0, + 1105.0, + 249.0, + 1105.0, + 254.0, + 1100.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 247.0, + 1184.0, + 247.0, + 1184.0, + 255.0, + 1175.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 243.0, + 1287.0, + 243.0, + 1287.0, + 269.0, + 1251.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 278.0, + 641.0, + 278.0, + 641.0, + 313.0, + 585.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 276.0, + 702.0, + 276.0, + 702.0, + 307.0, + 643.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 279.0, + 777.0, + 279.0, + 777.0, + 305.0, + 720.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 278.0, + 863.0, + 278.0, + 863.0, + 313.0, + 807.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 276.0, + 924.0, + 276.0, + 924.0, + 307.0, + 864.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 276.0, + 1001.0, + 276.0, + 1001.0, + 307.0, + 941.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 278.0, + 1071.0, + 278.0, + 1071.0, + 313.0, + 1014.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 276.0, + 1131.0, + 276.0, + 1131.0, + 307.0, + 1072.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 276.0, + 1207.0, + 276.0, + 1207.0, + 307.0, + 1149.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 271.0, + 1281.0, + 271.0, + 1281.0, + 330.0, + 1245.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 288.0, + 1309.0, + 288.0, + 1309.0, + 373.0, + 1283.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 318.0, + 476.0, + 318.0, + 476.0, + 340.0, + 404.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 317.0, + 548.0, + 317.0, + 548.0, + 339.0, + 489.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 338.0, + 402.0, + 338.0, + 402.0, + 347.0, + 394.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 335.0, + 567.0, + 335.0, + 567.0, + 350.0, + 554.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 335.0, + 1279.0, + 335.0, + 1279.0, + 361.0, + 1250.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 345.0, + 556.0, + 345.0, + 556.0, + 422.0, + 357.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 358.0, + 640.0, + 358.0, + 640.0, + 385.0, + 581.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 353.0, + 702.0, + 353.0, + 702.0, + 384.0, + 643.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 353.0, + 775.0, + 353.0, + 775.0, + 385.0, + 722.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 356.0, + 864.0, + 356.0, + 864.0, + 386.0, + 802.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 356.0, + 923.0, + 356.0, + 923.0, + 382.0, + 866.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 355.0, + 998.0, + 355.0, + 998.0, + 382.0, + 946.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 353.0, + 1131.0, + 353.0, + 1131.0, + 386.0, + 1009.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 356.0, + 1207.0, + 356.0, + 1207.0, + 382.0, + 1150.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 366.0, + 1279.0, + 366.0, + 1279.0, + 419.0, + 1245.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 411.0, + 709.0, + 411.0, + 709.0, + 433.0, + 636.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 409.0, + 780.0, + 409.0, + 780.0, + 432.0, + 716.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 410.0, + 932.0, + 410.0, + 932.0, + 434.0, + 856.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 409.0, + 1001.0, + 409.0, + 1001.0, + 432.0, + 939.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 411.0, + 1138.0, + 411.0, + 1138.0, + 434.0, + 1064.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 408.0, + 1209.0, + 408.0, + 1209.0, + 435.0, + 1147.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 432.0, + 678.0, + 432.0, + 678.0, + 442.0, + 668.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 429.0, + 757.0, + 429.0, + 757.0, + 444.0, + 741.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 429.0, + 903.0, + 429.0, + 903.0, + 443.0, + 888.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 432.0, + 1107.0, + 432.0, + 1107.0, + 442.0, + 1096.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 429.0, + 1185.0, + 429.0, + 1185.0, + 444.0, + 1172.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 432.0, + 1314.0, + 432.0, + 1314.0, + 455.0, + 1276.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 448.0, + 401.0, + 448.0, + 401.0, + 475.0, + 351.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 464.0, + 641.0, + 464.0, + 641.0, + 495.0, + 586.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 462.0, + 695.0, + 462.0, + 695.0, + 491.0, + 651.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 462.0, + 772.0, + 462.0, + 772.0, + 491.0, + 727.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 464.0, + 863.0, + 464.0, + 863.0, + 496.0, + 808.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 462.0, + 918.0, + 462.0, + 918.0, + 491.0, + 872.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 462.0, + 993.0, + 462.0, + 993.0, + 491.0, + 949.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 464.0, + 1071.0, + 464.0, + 1071.0, + 496.0, + 1015.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 463.0, + 1124.0, + 463.0, + 1124.0, + 491.0, + 1079.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 463.0, + 1200.0, + 463.0, + 1200.0, + 491.0, + 1157.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 495.0, + 406.0, + 495.0, + 406.0, + 511.0, + 392.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 497.0, + 565.0, + 497.0, + 565.0, + 507.0, + 556.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 479.0, + 1308.0, + 479.0, + 1308.0, + 555.0, + 1249.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 542.0, + 640.0, + 542.0, + 640.0, + 569.0, + 582.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 540.0, + 694.0, + 540.0, + 694.0, + 568.0, + 650.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 540.0, + 771.0, + 540.0, + 771.0, + 568.0, + 727.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 542.0, + 863.0, + 542.0, + 863.0, + 569.0, + 803.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 540.0, + 916.0, + 540.0, + 916.0, + 568.0, + 872.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 540.0, + 993.0, + 540.0, + 993.0, + 568.0, + 949.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 542.0, + 1069.0, + 542.0, + 1069.0, + 569.0, + 1010.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 540.0, + 1124.0, + 540.0, + 1124.0, + 568.0, + 1079.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 540.0, + 1200.0, + 540.0, + 1200.0, + 568.0, + 1157.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 537.0, + 1284.0, + 537.0, + 1284.0, + 562.0, + 1246.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 567.0, + 1347.0, + 567.0, + 1347.0, + 611.0, + 1242.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 443.0, + 1344.0, + 443.0, + 1344.0, + 472.0, + 1245.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1517.0, + 658.0, + 1517.0, + 658.0, + 1562.0, + 293.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 626.0, + 1404.0, + 626.0, + 1404.0, + 654.0, + 298.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 651.0, + 1408.0, + 651.0, + 1408.0, + 685.0, + 293.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 660.0, + 680.0, + 660.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 680.0, + 874.0, + 680.0, + 874.0, + 715.0, + 737.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 680.0, + 1407.0, + 680.0, + 1407.0, + 715.0, + 952.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 710.0, + 1403.0, + 710.0, + 1403.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 805.0, + 739.0, + 805.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 739.0, + 909.0, + 739.0, + 909.0, + 773.0, + 869.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 773.0, + 968.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 767.0, + 1404.0, + 767.0, + 1404.0, + 801.0, + 294.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 795.0, + 1406.0, + 795.0, + 1406.0, + 831.0, + 293.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 825.0, + 830.0, + 825.0, + 830.0, + 859.0, + 398.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 825.0, + 1407.0, + 825.0, + 1407.0, + 859.0, + 925.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 799.0, + 856.0, + 799.0, + 887.0, + 295.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1216.0, + 1396.0, + 1216.0, + 1396.0, + 1249.0, + 865.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1245.0, + 1398.0, + 1245.0, + 1398.0, + 1278.0, + 865.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1273.0, + 1401.0, + 1273.0, + 1401.0, + 1304.0, + 865.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1298.0, + 1400.0, + 1298.0, + 1400.0, + 1334.0, + 864.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1328.0, + 1401.0, + 1328.0, + 1401.0, + 1362.0, + 865.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1358.0, + 1165.0, + 1358.0, + 1165.0, + 1387.0, + 866.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1562.0, + 682.0, + 1562.0, + 682.0, + 1598.0, + 295.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1562.0, + 1404.0, + 1562.0, + 1404.0, + 1598.0, + 744.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1594.0, + 1403.0, + 1594.0, + 1403.0, + 1627.0, + 296.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 919.0, + 1624.0, + 919.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1624.0, + 1404.0, + 1624.0, + 1404.0, + 1660.0, + 946.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1655.0, + 397.0, + 1655.0, + 397.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1687.0, + 733.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1684.0, + 467.0, + 1684.0, + 467.0, + 1718.0, + 291.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1684.0, + 904.0, + 1684.0, + 904.0, + 1718.0, + 549.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1718.0, + 963.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 1406.0, + 1715.0, + 1406.0, + 1751.0, + 295.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 1406.0, + 1746.0, + 1406.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1775.0, + 1407.0, + 1775.0, + 1407.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1841.0, + 295.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1836.0, + 786.0, + 1836.0, + 786.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1836.0, + 1409.0, + 1836.0, + 1409.0, + 1876.0, + 918.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1865.0, + 545.0, + 1865.0, + 545.0, + 1907.0, + 291.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 1865.0, + 615.0, + 1865.0, + 615.0, + 1907.0, + 568.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1865.0, + 1409.0, + 1865.0, + 1409.0, + 1907.0, + 637.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 1406.0, + 1897.0, + 1406.0, + 1936.0, + 294.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1928.0, + 675.0, + 1928.0, + 675.0, + 1964.0, + 295.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1443.0, + 1403.0, + 1443.0, + 1403.0, + 1482.0, + 294.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1476.0, + 819.0, + 1476.0, + 819.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 626.0, + 1404.0, + 626.0, + 1404.0, + 654.0, + 298.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 651.0, + 1408.0, + 651.0, + 1408.0, + 685.0, + 293.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 660.0, + 680.0, + 660.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 680.0, + 874.0, + 680.0, + 874.0, + 715.0, + 737.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 680.0, + 1407.0, + 680.0, + 1407.0, + 715.0, + 952.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 710.0, + 1403.0, + 710.0, + 1403.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 805.0, + 739.0, + 805.0, + 773.0, + 294.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 739.0, + 909.0, + 739.0, + 909.0, + 773.0, + 869.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 773.0, + 968.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 767.0, + 1404.0, + 767.0, + 1404.0, + 801.0, + 294.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 795.0, + 1406.0, + 795.0, + 1406.0, + 831.0, + 293.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 825.0, + 830.0, + 825.0, + 830.0, + 859.0, + 398.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 825.0, + 1407.0, + 825.0, + 1407.0, + 859.0, + 925.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 799.0, + 856.0, + 799.0, + 887.0, + 295.0, + 887.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 508, + 1405, + 508, + 1405, + 843, + 298, + 843 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1072, + 1404, + 1072, + 1404, + 1376, + 297, + 1376 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1408, + 1405, + 1408, + 1405, + 1714, + 298, + 1714 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 203, + 1403, + 203, + 1403, + 356, + 299, + 356 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 856, + 1403, + 856, + 1403, + 1039, + 298, + 1039 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1803, + 1404, + 1803, + 1404, + 1927, + 298, + 1927 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 300, + 1729, + 1399, + 1729, + 1399, + 1790, + 300, + 1790 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 297, + 1949, + 1403, + 1949, + 1403, + 2006, + 297, + 2006 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 301, + 397, + 767, + 397, + 767, + 435, + 301, + 435 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 292, + 467, + 1348, + 467, + 1348, + 499, + 292, + 499 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.805 + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1984.0, + 327.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 543.0, + 1976.0, + 543.0, + 2011.0, + 295.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 394.0, + 771.0, + 394.0, + 771.0, + 441.0, + 291.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 861.0, + 2060.0, + 861.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 542.0, + 296.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 538.0, + 1405.0, + 538.0, + 1405.0, + 573.0, + 295.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 603.0, + 295.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 598.0, + 1407.0, + 598.0, + 1407.0, + 635.0, + 292.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 627.0, + 1406.0, + 627.0, + 1406.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 661.0, + 1403.0, + 661.0, + 1403.0, + 692.0, + 296.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 690.0, + 1406.0, + 690.0, + 1406.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 720.0, + 1405.0, + 720.0, + 1405.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 1405.0, + 751.0, + 1405.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 779.0, + 1406.0, + 779.0, + 1406.0, + 819.0, + 292.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 810.0, + 422.0, + 810.0, + 422.0, + 846.0, + 295.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 1405.0, + 1070.0, + 1405.0, + 1107.0, + 295.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1406.0, + 1105.0, + 1406.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1129.0, + 1408.0, + 1129.0, + 1408.0, + 1171.0, + 292.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1165.0, + 1404.0, + 1165.0, + 1404.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 1404.0, + 1196.0, + 1404.0, + 1227.0, + 295.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 1406.0, + 1224.0, + 1406.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 1406.0, + 1253.0, + 1406.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1285.0, + 1405.0, + 1285.0, + 1405.0, + 1320.0, + 294.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 727.0, + 1344.0, + 727.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1409.0, + 1408.0, + 1409.0, + 1408.0, + 1444.0, + 296.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1476.0, + 295.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1533.0, + 1406.0, + 1533.0, + 1406.0, + 1565.0, + 295.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1593.0, + 1405.0, + 1593.0, + 1405.0, + 1624.0, + 295.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1622.0, + 1405.0, + 1622.0, + 1405.0, + 1655.0, + 292.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 584.0, + 1679.0, + 584.0, + 1720.0, + 294.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 200.0, + 1408.0, + 200.0, + 1408.0, + 240.0, + 292.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1402.0, + 231.0, + 1402.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 299.0, + 294.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 1405.0, + 293.0, + 1405.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1406.0, + 323.0, + 1406.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1405.0, + 855.0, + 1405.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 888.0, + 1404.0, + 888.0, + 1404.0, + 920.0, + 294.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 918.0, + 1404.0, + 918.0, + 1404.0, + 950.0, + 296.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 946.0, + 1405.0, + 946.0, + 1405.0, + 983.0, + 293.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 977.0, + 1405.0, + 977.0, + 1405.0, + 1014.0, + 293.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1008.0, + 552.0, + 1008.0, + 552.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1406.0, + 1804.0, + 1406.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1835.0, + 1404.0, + 1835.0, + 1404.0, + 1867.0, + 293.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1897.0, + 1405.0, + 1897.0, + 1405.0, + 1929.0, + 294.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1728.0, + 1404.0, + 1728.0, + 1404.0, + 1763.0, + 296.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 1150.0, + 1756.0, + 1150.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 464.0, + 1349.0, + 464.0, + 1349.0, + 504.0, + 294.0, + 504.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1175, + 1403, + 1175, + 1403, + 1420, + 298, + 1420 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1473, + 1404, + 1473, + 1404, + 1748, + 298, + 1748 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 394, + 1404, + 394, + 1404, + 638, + 298, + 638 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 848, + 1404, + 848, + 1404, + 1123, + 298, + 1123 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 651, + 1404, + 651, + 1404, + 834, + 298, + 834 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 202, + 1403, + 202, + 1403, + 356, + 299, + 356 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1854, + 1404, + 1854, + 1404, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 298, + 1788, + 509, + 1788, + 509, + 1826, + 298, + 1826 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 837, + 2062, + 865, + 2062, + 865, + 2085, + 837, + 2085 + ], + "score": 0.85 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1784.0, + 514.0, + 1784.0, + 514.0, + 1833.0, + 292.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1210.0, + 294.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1206.0, + 1405.0, + 1206.0, + 1405.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1270.0, + 296.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1266.0, + 1407.0, + 1266.0, + 1407.0, + 1303.0, + 293.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1331.0, + 293.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1395.0, + 292.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 970.0, + 1390.0, + 970.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1474.0, + 1404.0, + 1474.0, + 1404.0, + 1510.0, + 296.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1540.0, + 294.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1535.0, + 1406.0, + 1535.0, + 1406.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1595.0, + 1406.0, + 1595.0, + 1406.0, + 1631.0, + 292.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1624.0, + 1404.0, + 1624.0, + 1404.0, + 1660.0, + 294.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1656.0, + 1404.0, + 1656.0, + 1404.0, + 1693.0, + 292.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 906.0, + 1719.0, + 906.0, + 1751.0, + 296.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 393.0, + 1405.0, + 393.0, + 1405.0, + 428.0, + 295.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 423.0, + 1409.0, + 423.0, + 1409.0, + 459.0, + 292.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 455.0, + 1405.0, + 455.0, + 1405.0, + 489.0, + 294.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 484.0, + 1405.0, + 484.0, + 1405.0, + 520.0, + 293.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 516.0, + 1405.0, + 516.0, + 1405.0, + 549.0, + 294.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 545.0, + 1404.0, + 545.0, + 1404.0, + 581.0, + 293.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 577.0, + 1404.0, + 577.0, + 1404.0, + 610.0, + 294.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 606.0, + 1362.0, + 606.0, + 1362.0, + 641.0, + 293.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 850.0, + 1405.0, + 850.0, + 1405.0, + 883.0, + 296.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 879.0, + 1403.0, + 879.0, + 1403.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 907.0, + 1406.0, + 907.0, + 1406.0, + 945.0, + 292.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 975.0, + 292.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 967.0, + 1405.0, + 967.0, + 1405.0, + 1008.0, + 292.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1034.0, + 293.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1406.0, + 1030.0, + 1406.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1057.0, + 1406.0, + 1057.0, + 1406.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1406.0, + 1090.0, + 1406.0, + 1127.0, + 293.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 650.0, + 1405.0, + 650.0, + 1405.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 681.0, + 1406.0, + 681.0, + 1406.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 1406.0, + 712.0, + 1406.0, + 748.0, + 294.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 744.0, + 1402.0, + 744.0, + 1402.0, + 775.0, + 296.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 770.0, + 1406.0, + 770.0, + 1406.0, + 808.0, + 292.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 708.0, + 804.0, + 708.0, + 837.0, + 293.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 204.0, + 1405.0, + 204.0, + 1405.0, + 237.0, + 297.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 1407.0, + 231.0, + 1407.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 300.0, + 293.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 329.0, + 293.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 1201.0, + 324.0, + 1201.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1894.0, + 292.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1403.0, + 1882.0, + 1403.0, + 1920.0, + 295.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1410.0, + 1909.0, + 1410.0, + 1954.0, + 292.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1409.0, + 1941.0, + 1409.0, + 1985.0, + 292.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 563.0, + 1975.0, + 563.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 267, + 1405, + 267, + 1405, + 450, + 297, + 450 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 306, + 543, + 1409, + 543, + 1409, + 2013, + 306, + 2013 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 298, + 197, + 944, + 197, + 944, + 237, + 298, + 237 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 298, + 494, + 455, + 494, + 455, + 529, + 298, + 529 + ], + "score": 0.906 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2085, + 836, + 2085 + ], + "score": 0.787 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2086, + 836, + 2086 + ], + "score": 0.109 + }, + { + "category_id": 15, + "poly": [ + 293.0, + 193.0, + 948.0, + 193.0, + 948.0, + 247.0, + 293.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 491.0, + 460.0, + 491.0, + 460.0, + 534.0, + 295.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2098.0, + 832.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 266.0, + 1406.0, + 266.0, + 1406.0, + 302.0, + 295.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 295.0, + 1406.0, + 295.0, + 1406.0, + 331.0, + 295.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 327.0, + 1406.0, + 327.0, + 1406.0, + 362.0, + 294.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 357.0, + 1403.0, + 357.0, + 1403.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 386.0, + 1406.0, + 386.0, + 1406.0, + 423.0, + 292.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 415.0, + 537.0, + 415.0, + 537.0, + 455.0, + 293.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 545.0, + 1407.0, + 545.0, + 1407.0, + 585.0, + 320.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 578.0, + 1018.0, + 578.0, + 1018.0, + 614.0, + 365.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 629.0, + 1408.0, + 629.0, + 1408.0, + 668.0, + 320.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 658.0, + 1091.0, + 658.0, + 1091.0, + 699.0, + 364.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 714.0, + 1408.0, + 714.0, + 1408.0, + 750.0, + 321.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 745.0, + 1407.0, + 745.0, + 1407.0, + 781.0, + 369.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 773.0, + 656.0, + 773.0, + 656.0, + 807.0, + 367.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 827.0, + 1407.0, + 827.0, + 1407.0, + 863.0, + 323.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 856.0, + 1062.0, + 856.0, + 1062.0, + 892.0, + 370.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 905.0, + 1407.0, + 905.0, + 1407.0, + 946.0, + 321.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 939.0, + 983.0, + 939.0, + 983.0, + 975.0, + 369.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 989.0, + 1408.0, + 989.0, + 1408.0, + 1029.0, + 320.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1020.0, + 1021.0, + 1020.0, + 1021.0, + 1059.0, + 365.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1072.0, + 1408.0, + 1072.0, + 1408.0, + 1113.0, + 321.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1103.0, + 1402.0, + 1103.0, + 1402.0, + 1139.0, + 367.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1134.0, + 874.0, + 1134.0, + 874.0, + 1172.0, + 364.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1185.0, + 1407.0, + 1185.0, + 1407.0, + 1226.0, + 321.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1216.0, + 1410.0, + 1216.0, + 1410.0, + 1255.0, + 364.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1245.0, + 531.0, + 1245.0, + 531.0, + 1281.0, + 369.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1298.0, + 1410.0, + 1298.0, + 1410.0, + 1339.0, + 321.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1330.0, + 936.0, + 1330.0, + 936.0, + 1366.0, + 365.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1378.0, + 1408.0, + 1378.0, + 1408.0, + 1420.0, + 305.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1410.0, + 1410.0, + 1410.0, + 1410.0, + 1451.0, + 366.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1458.0, + 1410.0, + 1458.0, + 1410.0, + 1507.0, + 303.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1533.0, + 367.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1525.0, + 879.0, + 1525.0, + 879.0, + 1561.0, + 367.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1576.0, + 1407.0, + 1576.0, + 1407.0, + 1617.0, + 307.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1607.0, + 1407.0, + 1607.0, + 1407.0, + 1648.0, + 367.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1638.0, + 754.0, + 1638.0, + 754.0, + 1674.0, + 364.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1687.0, + 1408.0, + 1687.0, + 1408.0, + 1728.0, + 307.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1716.0, + 1410.0, + 1716.0, + 1410.0, + 1759.0, + 364.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1751.0, + 1343.0, + 1751.0, + 1343.0, + 1787.0, + 369.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1801.0, + 1408.0, + 1801.0, + 1408.0, + 1842.0, + 307.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1829.0, + 1408.0, + 1829.0, + 1408.0, + 1875.0, + 364.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1863.0, + 643.0, + 1863.0, + 643.0, + 1899.0, + 369.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1916.0, + 1403.0, + 1916.0, + 1403.0, + 1952.0, + 308.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1944.0, + 1407.0, + 1944.0, + 1407.0, + 1986.0, + 366.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1975.0, + 1001.0, + 1975.0, + 1001.0, + 2016.0, + 366.0, + 2016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 302, + 129, + 1410, + 129, + 1410, + 2019, + 302, + 2019 + ], + "score": 0.625 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 201.0, + 1406.0, + 201.0, + 1406.0, + 243.0, + 304.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 232.0, + 1269.0, + 232.0, + 1269.0, + 272.0, + 367.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 286.0, + 1408.0, + 286.0, + 1408.0, + 326.0, + 307.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 315.0, + 959.0, + 315.0, + 959.0, + 355.0, + 365.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 371.0, + 1405.0, + 371.0, + 1405.0, + 404.0, + 309.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 400.0, + 1156.0, + 400.0, + 1156.0, + 440.0, + 365.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 450.0, + 1410.0, + 450.0, + 1410.0, + 494.0, + 302.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 483.0, + 1242.0, + 483.0, + 1242.0, + 521.0, + 365.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 535.0, + 1410.0, + 535.0, + 1410.0, + 574.0, + 309.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 566.0, + 1408.0, + 566.0, + 1408.0, + 606.0, + 367.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 599.0, + 657.0, + 599.0, + 657.0, + 632.0, + 367.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 649.0, + 1408.0, + 649.0, + 1408.0, + 688.0, + 309.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 678.0, + 954.0, + 678.0, + 954.0, + 719.0, + 363.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 732.0, + 1410.0, + 732.0, + 1410.0, + 771.0, + 309.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 763.0, + 1246.0, + 763.0, + 1246.0, + 800.0, + 363.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 852.0, + 311.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 840.0, + 1410.0, + 840.0, + 1410.0, + 890.0, + 363.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 879.0, + 602.0, + 879.0, + 602.0, + 912.0, + 369.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 929.0, + 1403.0, + 929.0, + 1403.0, + 968.0, + 309.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 960.0, + 1261.0, + 960.0, + 1261.0, + 999.0, + 367.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1010.0, + 1410.0, + 1010.0, + 1410.0, + 1053.0, + 307.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1043.0, + 927.0, + 1043.0, + 927.0, + 1080.0, + 363.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1095.0, + 1408.0, + 1095.0, + 1408.0, + 1134.0, + 309.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1126.0, + 1408.0, + 1126.0, + 1408.0, + 1167.0, + 365.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1159.0, + 659.0, + 1159.0, + 659.0, + 1192.0, + 367.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1211.0, + 1407.0, + 1211.0, + 1407.0, + 1246.0, + 306.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1238.0, + 1410.0, + 1238.0, + 1410.0, + 1279.0, + 363.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1271.0, + 441.0, + 1271.0, + 441.0, + 1308.0, + 367.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1323.0, + 1410.0, + 1323.0, + 1410.0, + 1362.0, + 307.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1354.0, + 1408.0, + 1354.0, + 1408.0, + 1393.0, + 367.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1385.0, + 856.0, + 1385.0, + 856.0, + 1424.0, + 365.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1476.0, + 309.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1468.0, + 1351.0, + 1468.0, + 1351.0, + 1505.0, + 367.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1520.0, + 1410.0, + 1520.0, + 1410.0, + 1559.0, + 307.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1551.0, + 1405.0, + 1551.0, + 1405.0, + 1590.0, + 367.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1580.0, + 755.0, + 1580.0, + 755.0, + 1619.0, + 363.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1634.0, + 1408.0, + 1634.0, + 1408.0, + 1673.0, + 307.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1667.0, + 684.0, + 1667.0, + 684.0, + 1700.0, + 369.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1717.0, + 1405.0, + 1717.0, + 1405.0, + 1756.0, + 309.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1746.0, + 1410.0, + 1746.0, + 1410.0, + 1791.0, + 365.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1777.0, + 751.0, + 1777.0, + 751.0, + 1816.0, + 365.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1833.0, + 1408.0, + 1833.0, + 1408.0, + 1866.0, + 311.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1897.0, + 369.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1893.0, + 1349.0, + 1893.0, + 1349.0, + 1932.0, + 367.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1945.0, + 1408.0, + 1945.0, + 1408.0, + 1984.0, + 307.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1976.0, + 999.0, + 1976.0, + 999.0, + 2015.0, + 367.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 306, + 109, + 1410, + 109, + 1410, + 2023, + 306, + 2023 + ], + "score": 0.7 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.191 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 202.0, + 1408.0, + 202.0, + 1408.0, + 242.0, + 308.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 225.0, + 1408.0, + 225.0, + 1408.0, + 277.0, + 363.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 263.0, + 751.0, + 263.0, + 751.0, + 300.0, + 365.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 315.0, + 1406.0, + 315.0, + 1406.0, + 355.0, + 308.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 384.0, + 367.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 378.0, + 881.0, + 378.0, + 881.0, + 418.0, + 367.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 432.0, + 1408.0, + 432.0, + 1408.0, + 466.0, + 310.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 458.0, + 1408.0, + 458.0, + 1408.0, + 500.0, + 365.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 493.0, + 657.0, + 493.0, + 657.0, + 527.0, + 369.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 544.0, + 1408.0, + 544.0, + 1408.0, + 583.0, + 308.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 575.0, + 1410.0, + 575.0, + 1410.0, + 615.0, + 367.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 602.0, + 622.0, + 602.0, + 622.0, + 642.0, + 367.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 659.0, + 1406.0, + 659.0, + 1406.0, + 693.0, + 310.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 684.0, + 1011.0, + 684.0, + 1011.0, + 726.0, + 365.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 739.0, + 1408.0, + 739.0, + 1408.0, + 779.0, + 308.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 770.0, + 1165.0, + 770.0, + 1165.0, + 808.0, + 365.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 827.0, + 1408.0, + 827.0, + 1408.0, + 860.0, + 310.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 854.0, + 1291.0, + 854.0, + 1291.0, + 894.0, + 367.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 907.0, + 1408.0, + 907.0, + 1408.0, + 946.0, + 308.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 938.0, + 1343.0, + 938.0, + 1343.0, + 978.0, + 367.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 988.0, + 1408.0, + 988.0, + 1408.0, + 1028.0, + 308.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1062.0, + 369.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1051.0, + 1201.0, + 1051.0, + 1201.0, + 1091.0, + 367.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1104.0, + 1406.0, + 1104.0, + 1406.0, + 1144.0, + 308.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1133.0, + 942.0, + 1133.0, + 942.0, + 1171.0, + 365.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1186.0, + 1408.0, + 1186.0, + 1408.0, + 1225.0, + 308.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1215.0, + 1412.0, + 1215.0, + 1412.0, + 1259.0, + 363.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1251.0, + 1073.0, + 1251.0, + 1073.0, + 1284.0, + 367.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1303.0, + 1406.0, + 1303.0, + 1406.0, + 1337.0, + 310.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1330.0, + 1232.0, + 1330.0, + 1232.0, + 1370.0, + 367.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1383.0, + 1408.0, + 1383.0, + 1408.0, + 1423.0, + 308.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1414.0, + 1245.0, + 1414.0, + 1245.0, + 1452.0, + 365.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1467.0, + 1408.0, + 1467.0, + 1408.0, + 1504.0, + 306.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1498.0, + 1408.0, + 1498.0, + 1408.0, + 1538.0, + 367.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1528.0, + 1073.0, + 1528.0, + 1073.0, + 1567.0, + 365.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1576.0, + 1410.0, + 1576.0, + 1410.0, + 1624.0, + 306.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1611.0, + 1226.0, + 1611.0, + 1226.0, + 1649.0, + 365.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1700.0, + 310.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1693.0, + 446.0, + 1693.0, + 446.0, + 1735.0, + 365.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1748.0, + 1408.0, + 1748.0, + 1408.0, + 1788.0, + 308.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1775.0, + 1309.0, + 1775.0, + 1309.0, + 1819.0, + 363.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1867.0, + 310.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1859.0, + 1412.0, + 1859.0, + 1412.0, + 1903.0, + 363.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1893.0, + 650.0, + 1893.0, + 650.0, + 1928.0, + 364.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1945.0, + 1408.0, + 1945.0, + 1408.0, + 1985.0, + 308.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1974.0, + 1019.0, + 1974.0, + 1019.0, + 2012.0, + 365.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 303, + 118, + 1409, + 118, + 1409, + 2008, + 303, + 2008 + ], + "score": 0.67 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 871.0, + 2058.0, + 871.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 203.0, + 1407.0, + 203.0, + 1407.0, + 242.0, + 307.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 234.0, + 963.0, + 234.0, + 963.0, + 271.0, + 364.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 284.0, + 1409.0, + 284.0, + 1409.0, + 323.0, + 310.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 315.0, + 1409.0, + 315.0, + 1409.0, + 354.0, + 366.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 342.0, + 448.0, + 342.0, + 448.0, + 383.0, + 366.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 393.0, + 1407.0, + 393.0, + 1407.0, + 433.0, + 307.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 427.0, + 738.0, + 427.0, + 738.0, + 462.0, + 362.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 472.0, + 1411.0, + 472.0, + 1411.0, + 520.0, + 303.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 510.0, + 471.0, + 510.0, + 471.0, + 543.0, + 368.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 557.0, + 1407.0, + 557.0, + 1407.0, + 597.0, + 307.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 586.0, + 1197.0, + 586.0, + 1197.0, + 626.0, + 364.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 634.0, + 1409.0, + 634.0, + 1409.0, + 677.0, + 303.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 669.0, + 1409.0, + 669.0, + 1409.0, + 709.0, + 366.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 698.0, + 822.0, + 698.0, + 822.0, + 738.0, + 366.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 750.0, + 1407.0, + 750.0, + 1407.0, + 789.0, + 307.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 783.0, + 1285.0, + 783.0, + 1285.0, + 816.0, + 368.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 831.0, + 1407.0, + 831.0, + 1407.0, + 868.0, + 305.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 864.0, + 1405.0, + 864.0, + 1405.0, + 897.0, + 368.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 893.0, + 1093.0, + 893.0, + 1093.0, + 926.0, + 370.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 943.0, + 1405.0, + 943.0, + 1405.0, + 976.0, + 307.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1009.0, + 368.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1001.0, + 1407.0, + 1001.0, + 1407.0, + 1042.0, + 364.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1027.0, + 584.0, + 1027.0, + 584.0, + 1072.0, + 365.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1082.0, + 1409.0, + 1082.0, + 1409.0, + 1121.0, + 307.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1115.0, + 1409.0, + 1115.0, + 1409.0, + 1154.0, + 368.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1146.0, + 879.0, + 1146.0, + 879.0, + 1185.0, + 366.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1229.0, + 310.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1227.0, + 1363.0, + 1227.0, + 1363.0, + 1266.0, + 366.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1277.0, + 1407.0, + 1277.0, + 1407.0, + 1316.0, + 307.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1306.0, + 1407.0, + 1306.0, + 1407.0, + 1345.0, + 364.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1335.0, + 446.0, + 1335.0, + 446.0, + 1376.0, + 366.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1391.0, + 1407.0, + 1391.0, + 1407.0, + 1424.0, + 310.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1417.0, + 1407.0, + 1417.0, + 1407.0, + 1457.0, + 368.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1449.0, + 1411.0, + 1449.0, + 1411.0, + 1488.0, + 366.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1476.0, + 446.0, + 1476.0, + 446.0, + 1517.0, + 366.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1531.0, + 1407.0, + 1531.0, + 1407.0, + 1565.0, + 310.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1556.0, + 1409.0, + 1556.0, + 1409.0, + 1600.0, + 364.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1587.0, + 446.0, + 1587.0, + 446.0, + 1629.0, + 366.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1639.0, + 1407.0, + 1639.0, + 1407.0, + 1681.0, + 305.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1668.0, + 1384.0, + 1668.0, + 1384.0, + 1712.0, + 364.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1724.0, + 1409.0, + 1724.0, + 1409.0, + 1757.0, + 310.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1751.0, + 1344.0, + 1751.0, + 1344.0, + 1791.0, + 366.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1803.0, + 1407.0, + 1803.0, + 1407.0, + 1842.0, + 307.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1830.0, + 1409.0, + 1830.0, + 1409.0, + 1874.0, + 366.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1863.0, + 824.0, + 1863.0, + 824.0, + 1900.0, + 364.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1952.0, + 307.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1944.0, + 1409.0, + 1944.0, + 1409.0, + 1983.0, + 366.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1971.0, + 448.0, + 1971.0, + 448.0, + 2012.0, + 366.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 304, + 123, + 1409, + 123, + 1409, + 2008, + 304, + 2008 + ], + "score": 0.673 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 197.0, + 1409.0, + 197.0, + 1409.0, + 247.0, + 302.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 274.0, + 365.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 265.0, + 654.0, + 265.0, + 654.0, + 298.0, + 367.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 311.0, + 1413.0, + 311.0, + 1413.0, + 354.0, + 304.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 344.0, + 825.0, + 344.0, + 825.0, + 381.0, + 365.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 398.0, + 1407.0, + 398.0, + 1407.0, + 431.0, + 310.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 429.0, + 1409.0, + 429.0, + 1409.0, + 462.0, + 369.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 453.0, + 446.0, + 453.0, + 446.0, + 495.0, + 365.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 507.0, + 1409.0, + 507.0, + 1409.0, + 547.0, + 308.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 538.0, + 1409.0, + 538.0, + 1409.0, + 578.0, + 367.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 584.0, + 1407.0, + 584.0, + 1407.0, + 631.0, + 304.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 621.0, + 955.0, + 621.0, + 955.0, + 654.0, + 365.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 669.0, + 1407.0, + 669.0, + 1407.0, + 706.0, + 306.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 700.0, + 1409.0, + 700.0, + 1409.0, + 739.0, + 367.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 726.0, + 1413.0, + 726.0, + 1413.0, + 772.0, + 365.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 757.0, + 444.0, + 757.0, + 444.0, + 799.0, + 365.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 809.0, + 1409.0, + 809.0, + 1409.0, + 848.0, + 308.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 840.0, + 1407.0, + 840.0, + 1407.0, + 882.0, + 365.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 873.0, + 656.0, + 873.0, + 656.0, + 906.0, + 369.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 921.0, + 1407.0, + 921.0, + 1407.0, + 960.0, + 308.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 952.0, + 1409.0, + 952.0, + 1409.0, + 991.0, + 367.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 983.0, + 444.0, + 983.0, + 444.0, + 1018.0, + 367.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1032.0, + 1409.0, + 1032.0, + 1409.0, + 1070.0, + 306.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1063.0, + 1409.0, + 1063.0, + 1409.0, + 1103.0, + 367.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1095.0, + 856.0, + 1095.0, + 856.0, + 1132.0, + 365.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1142.0, + 1409.0, + 1142.0, + 1409.0, + 1185.0, + 304.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1175.0, + 1116.0, + 1175.0, + 1116.0, + 1214.0, + 365.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1229.0, + 1407.0, + 1229.0, + 1407.0, + 1262.0, + 310.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1254.0, + 1407.0, + 1254.0, + 1407.0, + 1295.0, + 365.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1287.0, + 1082.0, + 1287.0, + 1082.0, + 1326.0, + 367.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1336.0, + 1409.0, + 1336.0, + 1409.0, + 1376.0, + 308.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1367.0, + 1409.0, + 1367.0, + 1409.0, + 1407.0, + 367.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1398.0, + 1122.0, + 1398.0, + 1122.0, + 1438.0, + 367.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1450.0, + 1409.0, + 1450.0, + 1409.0, + 1483.0, + 310.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1477.0, + 1373.0, + 1477.0, + 1373.0, + 1516.0, + 367.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1529.0, + 1407.0, + 1529.0, + 1407.0, + 1568.0, + 308.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1560.0, + 1409.0, + 1560.0, + 1409.0, + 1599.0, + 367.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1591.0, + 1246.0, + 1591.0, + 1246.0, + 1630.0, + 367.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1640.0, + 1409.0, + 1640.0, + 1409.0, + 1680.0, + 308.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1671.0, + 497.0, + 1671.0, + 497.0, + 1711.0, + 367.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1721.0, + 1407.0, + 1721.0, + 1407.0, + 1760.0, + 308.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1752.0, + 1407.0, + 1752.0, + 1407.0, + 1791.0, + 367.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1783.0, + 880.0, + 1783.0, + 880.0, + 1822.0, + 367.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1833.0, + 1407.0, + 1833.0, + 1407.0, + 1872.0, + 308.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1864.0, + 660.0, + 1864.0, + 660.0, + 1901.0, + 365.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1953.0, + 308.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1948.0, + 1405.0, + 1948.0, + 1405.0, + 1981.0, + 367.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1977.0, + 994.0, + 1977.0, + 994.0, + 2012.0, + 365.0, + 2012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 299, + 1420, + 1401, + 1420, + 1401, + 1485, + 299, + 1485 + ], + "score": 0.553 + }, + { + "category_id": 1, + "poly": [ + 298, + 1506, + 1404, + 1506, + 1404, + 1601, + 298, + 1601 + ], + "score": 0.551 + }, + { + "category_id": 1, + "poly": [ + 304, + 202, + 1404, + 202, + 1404, + 267, + 304, + 267 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 308, + 1131, + 1402, + 1131, + 1402, + 1225, + 308, + 1225 + ], + "score": 0.498 + }, + { + "category_id": 1, + "poly": [ + 295, + 1623, + 1405, + 1623, + 1405, + 1689, + 295, + 1689 + ], + "score": 0.484 + }, + { + "category_id": 1, + "poly": [ + 307, + 1044, + 1403, + 1044, + 1403, + 1109, + 307, + 1109 + ], + "score": 0.473 + }, + { + "category_id": 1, + "poly": [ + 300, + 1333, + 1399, + 1333, + 1399, + 1401, + 300, + 1401 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 308, + 927, + 1402, + 927, + 1402, + 1022, + 308, + 1022 + ], + "score": 0.464 + }, + { + "category_id": 1, + "poly": [ + 308, + 693, + 1402, + 693, + 1402, + 789, + 308, + 789 + ], + "score": 0.459 + }, + { + "category_id": 1, + "poly": [ + 297, + 1247, + 1402, + 1247, + 1402, + 1313, + 297, + 1313 + ], + "score": 0.448 + }, + { + "category_id": 1, + "poly": [ + 297, + 1710, + 1402, + 1710, + 1402, + 1805, + 297, + 1805 + ], + "score": 0.448 + }, + { + "category_id": 1, + "poly": [ + 310, + 810, + 1402, + 810, + 1402, + 906, + 310, + 906 + ], + "score": 0.446 + }, + { + "category_id": 1, + "poly": [ + 309, + 577, + 1405, + 577, + 1405, + 671, + 309, + 671 + ], + "score": 0.443 + }, + { + "category_id": 1, + "poly": [ + 309, + 490, + 1402, + 490, + 1402, + 557, + 309, + 557 + ], + "score": 0.441 + }, + { + "category_id": 1, + "poly": [ + 310, + 287, + 1401, + 287, + 1401, + 383, + 310, + 383 + ], + "score": 0.419 + }, + { + "category_id": 1, + "poly": [ + 290, + 1827, + 1403, + 1827, + 1403, + 1891, + 290, + 1891 + ], + "score": 0.415 + }, + { + "category_id": 1, + "poly": [ + 306, + 404, + 1397, + 404, + 1397, + 470, + 306, + 470 + ], + "score": 0.402 + }, + { + "category_id": 1, + "poly": [ + 298, + 1914, + 1407, + 1914, + 1407, + 2009, + 298, + 2009 + ], + "score": 0.199 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1456.0, + 294.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1453.0, + 783.0, + 1453.0, + 783.0, + 1485.0, + 367.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1506.0, + 1405.0, + 1506.0, + 1405.0, + 1544.0, + 293.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1535.0, + 1408.0, + 1535.0, + 1408.0, + 1575.0, + 365.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1566.0, + 444.0, + 1566.0, + 444.0, + 1603.0, + 366.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 238.0, + 310.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 233.0, + 1401.0, + 233.0, + 1401.0, + 267.0, + 369.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1130.0, + 1408.0, + 1130.0, + 1408.0, + 1167.0, + 308.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1160.0, + 1406.0, + 1160.0, + 1406.0, + 1200.0, + 366.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1190.0, + 580.0, + 1190.0, + 580.0, + 1228.0, + 368.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1625.0, + 1408.0, + 1625.0, + 1408.0, + 1661.0, + 295.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1655.0, + 1408.0, + 1655.0, + 1408.0, + 1690.0, + 367.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1043.0, + 1408.0, + 1043.0, + 1408.0, + 1083.0, + 308.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1073.0, + 443.0, + 1073.0, + 443.0, + 1111.0, + 364.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1334.0, + 1404.0, + 1334.0, + 1404.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1366.0, + 1294.0, + 1366.0, + 1294.0, + 1402.0, + 367.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 965.0, + 309.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 960.0, + 1405.0, + 960.0, + 1405.0, + 994.0, + 369.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 989.0, + 656.0, + 989.0, + 656.0, + 1023.0, + 369.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 693.0, + 1408.0, + 693.0, + 1408.0, + 731.0, + 309.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 728.0, + 1402.0, + 728.0, + 1402.0, + 762.0, + 369.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 757.0, + 856.0, + 757.0, + 856.0, + 791.0, + 370.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1249.0, + 1404.0, + 1249.0, + 1404.0, + 1285.0, + 296.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1280.0, + 1254.0, + 1280.0, + 1254.0, + 1314.0, + 367.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1710.0, + 1407.0, + 1710.0, + 1407.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1740.0, + 1407.0, + 1740.0, + 1407.0, + 1781.0, + 366.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1772.0, + 659.0, + 1772.0, + 659.0, + 1807.0, + 369.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 810.0, + 1406.0, + 810.0, + 1406.0, + 848.0, + 307.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 840.0, + 1406.0, + 840.0, + 1406.0, + 879.0, + 368.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 874.0, + 642.0, + 874.0, + 642.0, + 903.0, + 369.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 577.0, + 1405.0, + 577.0, + 1405.0, + 614.0, + 309.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 609.0, + 1408.0, + 609.0, + 1408.0, + 643.0, + 369.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 639.0, + 645.0, + 639.0, + 645.0, + 673.0, + 370.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 487.0, + 1406.0, + 487.0, + 1406.0, + 531.0, + 309.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 522.0, + 894.0, + 522.0, + 894.0, + 559.0, + 368.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 287.0, + 1405.0, + 287.0, + 1405.0, + 324.0, + 307.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 318.0, + 1409.0, + 318.0, + 1409.0, + 356.0, + 368.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 350.0, + 700.0, + 350.0, + 700.0, + 384.0, + 370.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1827.0, + 1405.0, + 1827.0, + 1405.0, + 1863.0, + 296.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1859.0, + 753.0, + 1859.0, + 753.0, + 1892.0, + 365.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 405.0, + 1401.0, + 405.0, + 1401.0, + 441.0, + 309.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 436.0, + 1375.0, + 436.0, + 1375.0, + 472.0, + 369.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1951.0, + 295.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1983.0, + 368.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1976.0, + 1016.0, + 1976.0, + 1016.0, + 2010.0, + 370.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 864, + 2061, + 864, + 2085, + 836, + 2085 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 293, + 202, + 1405, + 202, + 1405, + 294, + 293, + 294 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 297, + 315, + 1401, + 315, + 1401, + 408, + 297, + 408 + ], + "score": 0.434 + }, + { + "category_id": 1, + "poly": [ + 296, + 428, + 1401, + 428, + 1401, + 491, + 296, + 491 + ], + "score": 0.369 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 200.0, + 1409.0, + 200.0, + 1409.0, + 238.0, + 292.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 232.0, + 1408.0, + 232.0, + 1408.0, + 270.0, + 368.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 257.0, + 444.0, + 257.0, + 444.0, + 298.0, + 367.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 314.0, + 1405.0, + 314.0, + 1405.0, + 351.0, + 293.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 347.0, + 1405.0, + 347.0, + 1405.0, + 381.0, + 370.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 377.0, + 657.0, + 377.0, + 657.0, + 406.0, + 369.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 426.0, + 1406.0, + 426.0, + 1406.0, + 467.0, + 292.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 458.0, + 1244.0, + 458.0, + 1244.0, + 495.0, + 365.0, + 495.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/hXWPpJedrVP/hXWPpJedrVP.md b/parse/train/hXWPpJedrVP/hXWPpJedrVP.md new file mode 100644 index 0000000000000000000000000000000000000000..9faf81ee0093c50ff4be7707aee348e17e84c75c --- /dev/null +++ b/parse/train/hXWPpJedrVP/hXWPpJedrVP.md @@ -0,0 +1,269 @@ +# Dataset Distillation with Infinitely Wide Convolutional Networks + +# Timothy Nguyen† ∗ + +Roman Novak♠ + +Lechao Xiao♠ + +DeepMind† Google Research, Brain Team♠ timothycnguyen@deepmind.com {romann, xlc, jaehlee}@google.com + +# Abstract + +The effectiveness of machine learning algorithms arises from being able to extract useful features from large amounts of data. As model and dataset sizes increase, dataset distillation methods that compress large datasets into significantly smaller yet highly performant ones will become valuable in terms of training efficiency and useful feature extraction. To that end, we apply a novel distributed kernel-based meta-learning framework to achieve state-of-the-art results for dataset distillation using infinitely wide convolutional neural networks. For instance, using only 10 datapoints $0 . 0 2 \%$ of original dataset), we obtain over $65 \%$ test accuracy on CIFAR10 image classification task, a dramatic improvement over the previous best test accuracy of $40 \%$ . Our state-of-the-art results extend across many other settings for MNIST, Fashion-MNIST, CIFAR-10, CIFAR-100, and SVHN. Furthermore, we perform some preliminary analyses of our distilled datasets to shed light on how they differ from naturally occurring data. + +# 1 Introduction + +Deep learning has become extraordinarily successful in a wide variety of settings through the availability of large datasets [Krizhevsky et al., 2012, Devlin et al., 2018, Brown et al., 2020, Dosovitskiy et al., 2020]. Such large datasets enable a neural network to learn useful representations of the data that are adapted to solving tasks of interest. Unfortunately, it can be prohibitively costly to acquire such large datasets and train a neural network for the requisite amount of time. + +One way to mitigate this problem is by constructing smaller datasets that are nevertheless informative. Some direct approaches to this include choosing a representative subset of the dataset (i.e. a coreset) or else performing a low-dimensional projection that reduces the number of features. However, such methods typically introduce a tradeoff between performance and dataset size, since what they produce is a coarse approximation of the full dataset. By contrast, the approach of dataset distillation is to synthesize datasets that are more informative than their natural counterparts when equalizing for dataset size [Wang et al., 2018, Bohdal et al., 2020, Nguyen et al., 2021, Zhao and Bilen, 2021]. Such resulting datasets will not arise from the distribution of natural images but will nevertheless capture features useful to a neural network, a capability which remains mysterious and is far from being well-understood [Ilyas et al., 2019, Huh et al., 2016, Hermann and Lampinen, 2020]. + +The applications of such smaller, distilled datasets are diverse. For nonparametric methods that scale poorly with the training dataset (e.g. nearest-neighbors or kernel-ridge regression), having a reduced dataset decreases the associated memory and inference costs. For the training of neural networks, such distilled datasets have found several applications in the literature, including increasing the effectiveness of replay methods in continual learning [Borsos et al., 2020] and helping to accelerate neural architecture search [Zhao et al., 2021, Zhao and Bilen, 2021]. + +In this paper, we perform a large-scale extension of the methods of Nguyen et al. [2021] to obtain new state-of-the-art (SOTA) dataset distillation results. Specifically, we apply the algorithms KIP (Kernel Inducing Points) and LS (Label Solve), first developed in Nguyen et al. [2021], to infinitely wide convolutional networks by implementing a novel, distributed meta-learning framework that draws upon hundreds of accelerators per training. The need for such resources is necessitated by the computational costs of using infinitely wide neural networks built out of components occurring in modern image classification models: convolutional and pooling layers (see $\ S _ { \mathrm { B } }$ for details). The consequence is that we obtain distilled datasets that are effective for both kernel ridge-regression and neural network training. + +Additionally, we initiate a preliminary study of the images and labels which KIP learns. We provide a visual and quantitative analysis of the data learned and find some surprising results concerning their interpretability and their dimensional and spectral properties. Given the efficacy of KIP and LS learned data, we believe a better understanding of them would aid in the understanding of feature learning in neural networks. + +To summarize, our contributions are as follows: + +1. We achieve SOTA dataset distillation results on a wide variety of datasets (MNIST, FashionMNIST, SVHN, CIFAR-10, CIFAR-100) for both kernel ridge-regression and neural network training. In several instances, our results achieve an impressively wide margin over prior art, including over $2 5 \%$ and $37 \%$ absolute gain in accuracy on CIFAR-10 and SVHN image classification, respectively, when using only 10 images (Tables 1, 2, A11). +2. We develop a novel, distributed meta-learning framework specifically tailored to the computational burdens of sophisticated neural kernels (§2.1). +3. We highlight and analyze some of the peculiar features of the distilled datasets we obtain, illustrating how they differ from natural data (§4). +4. We open source the distilled datasets, which used thousands of GPU hours, for the research community to further investigate at https://github.com/google-research/ google-research/tree/master/kip. + +# 2 Setup + +Background on infinitely wide convolutional networks. Recent literature has established that Bayesian and gradient-descent trained neural networks converge to Gaussian Processes (GP) as the number of hidden units in intermediary layers approaches infinity (see $\ S 5$ ). These results hold for many different architectures, including convolutional networks, which converge to a particular GP in the limit of infinite channels [Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019]. Bayesian networks are described by the Neural Network Gaussian Process (NNGP) kernel, while gradient descent networks are described by the Neural Tangent Kernel (NTK). Since we are interested in synthesizing datasets that can be used with both kernel methods and common gradient-descent trained neural networks, we focus on NTK in this work. + +Infinitely wide networks have been shown to achieve SOTA (among non-parametric kernels) results on image classification tasks [Novak et al., 2019, Arora et al., 2019, Li et al., 2019, Shankar et al., 2020, Bietti, 2021] and even rival finite-width networks in certain settings [Arora et al., 2020, Lee et al., 2020]. This makes such kernels especially suitable for our task. As convolutional models, they encode useful inductive biases of locality and translation invariance [Novak et al., 2019], which enable good generalization. Moreover, flexible and efficient computation of these kernels are possible due to the Neural Tangent library [Novak et al., 2020]. + +Specific models considered. The central neural network (and corresponding infinite-width model) we consider is a simple 4-layer convolutional network with average pooling layers that we refer to as ConvNet throughout the text. This architecture is a slightly modified version of the default model used by Zhao and Bilen [2021], Zhao et al. [2021] and was chosen for ease of baselining (see $\ S$ for details). In several other settings we also consider convolutional networks without pooling layers ConvVec,2 and networks with no convolutions and only fully-connected layers FC. Depth of architecture (as measured by number of hidden layers) is indicated by an integer suffix. + +Background on algorithms. We review the Kernel Inducing Points (KIP) and Label Solve (LS) algorithms introduced by Nguyen et al. [2021]. Given a kernel $K$ , the kernel ridge-regression (KRR) loss function trained on a support dataset $( X _ { s } , y _ { s } )$ and evaluated on a target dataset $( X _ { t } , y _ { t } )$ is + +$$ +L ( X _ { s } , y _ { s } ) = \frac { 1 } { 2 } \left\| y _ { t } - K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \lambda I ) ^ { - 1 } y _ { s } \right\| _ { 2 } ^ { 2 } , +$$ + +where if $U$ and $V$ are sets, $K _ { U V }$ is the matrix of kernel elements $( K ( u , v ) ) _ { u \in U , v \in V }$ . Here $\lambda > 0$ is a fixed regularization parameter. The KIP algorithm consists of minimizing (1) with respect to the support set (either just the $X _ { s }$ or along with the labels $y _ { s }$ ). Here, we sample $( X _ { t } , y _ { t } )$ from a target dataset $\mathcal { D }$ at every (meta)step, and update the support set using gradient-based methods. Additional variations include augmenting the $X _ { t }$ or sampling a different kernel $K$ (from a fixed family of kernels) at each step. + +The Label Solve algorithm consists of solving for the least-norm minimizer of (1) with respect to $y _ { s }$ This yields the labels + +$$ +y _ { s } ^ { * } = \Big ( K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \lambda I ) ^ { - 1 } \Big ) ^ { + } y _ { t } , +$$ + +where $A ^ { + }$ denotes the pseudo-inverse of the matrix $A$ . Note that here $( X _ { t } , y _ { t } ) = \mathcal { D }$ , i.e. the labels are solved using the whole target set. + +In our applications of KIP and Label Solve, the target dataset $\mathcal { D }$ is always significantly larger than the support set $( X _ { s } , y _ { s } )$ . Hence, the learned support set or solved labels can be regarded as distilled versions of their respective targets. We also initialize our support images to be a subset of natural images, though they could also be initialized randomly. + +Based on the infinite-width correspondence outlined above and in $\ S$ , dataset distillation using KIP or LS that is optimized for KRR should extend to the corresponding finite-width neural network training. Our experimental results in $\ S$ validate this expectation across many settings. + +# 2.1 Client-Server Distributed Workflow + +We invoke a client-server model of distributed computation3, in which a server distributes independent workloads to a large pool of client workers that share a queue for receiving and sending work. Our distributed implementation of the KIP algorithm has two distinct stages: + +Forward pass: In this step, we compute the support-support and target-support matrices $K ( X _ { s } , X _ { s } )$ and $K ( X _ { t } , X _ { s } )$ . To do so, we partition $X _ { s } \times X _ { s }$ and $X _ { t } \times X _ { s }$ into pairs of images $( x , x ^ { \prime } )$ , each with batch size $B$ . We send such pairs to workers compute the respective matrix block $K ( \boldsymbol { x } , \boldsymbol { x } ^ { \prime } )$ . The server aggregates all these blocks to obtain the $K ( \bar { X } _ { s } , X _ { s } )$ and $K ( X _ { t } , X _ { s } )$ matrices. + +Backward pass: In this step, we need to compute the gradient of the loss $L$ (1) with respect to the support set $X _ { s }$ . We need only consider $\partial L / \partial { \bar { X } } _ { s }$ since $\partial L / \partial y _ { s }$ is cheap to compute. By the chain rule, we can write + +$$ +\frac { \partial L } { \partial X _ { s } } = \frac { \partial L } { \partial ( K ( X _ { s } , X _ { s } ) ) } \frac { \partial K ( X _ { s } , X _ { s } ) } { \partial X _ { s } } + \frac { \partial L } { \partial ( K ( X _ { t } , X _ { s } ) ) } \frac { \partial K ( X _ { t } , X _ { s } ) } { \partial X _ { s } } . +$$ + +The derivatives of $L$ with respect to the kernel matrices are inexpensive, since $L$ depends in a simple way on them (matrix multiplication and inversion). What is expensive to compute is the derivative of the kernel matrices with respect to the inputs. Each kernel element is an independent function of the inputs and a naive computation of the derivative of a block would require forwardmode differentiation, infeasible due to the size of the input images and the cost to compute the individual kernel elements. Thus our main novelty is to divide up the gradient computation into backward differentiation sub-computations, specifically by using the built-in function ${ \mathrm { j a x . v j p } }$ in JAX [Bradbury et al., 2018]. Denoting $K = K \bar { ( } X _ { s } , X _ { s } )$ or $K ( X _ { t } , X _ { s } )$ for short-hand, we divide the matrix $\partial L / \partial K$ , computed on the server, into $B \times B$ blocks corresponding to $\partial L / \partial K ( x , x ^ { ' } )$ , where $x$ and $x ^ { \prime }$ each have batch size $B$ . We send each such block, along with the corresponding block of image data $( x , x ^ { \prime } )$ , to a worker. The worker then treats the $\partial L / \partial K ( x , x ^ { \prime } )$ it receives as the cotangent vector argument of ${ \mathrm { j a x . v j p } }$ that, via contraction, converts the derivative of $K ( x , x ^ { \prime } )$ with respect to $x$ into a scalar. The server aggregates all these partial gradient computations performed by the workers, over all possible $B \times B$ blocks, to compute the total gradient $\partial L / \partial X _ { s }$ used to update $X _ { s }$ . + +Table 1: Comparison with other methods. The left group consists of neural network based methods. The right group consists of kernel ridge-regression. All settings for KIP involve the use of label-learning. Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. + +
Imgs/ ClassDC1DSA1KIP FC1 augLS ConvNet2,3 KIP ConvNet2
no augaug
MNIST191.7±0.588.7±0.685.5±0.173.497.3±0.196.5±0.1
1097.4±0.297.8±0.197.2±0.296.499.1±0.199.1±0.1
5098.8±0.199.2±0.198.4±0.198.399.4±0.199.5±0.1
Fashion- MNIST170.5±0.670.6±0.665.382.9±0.276.7±0.2
1082.3±0.484.6±0.380.891.0±0.188.8±0.1
5083.6±0.488.7±0.286.992.4±0.191.0±0.1
SVHN131.2±1.427.5±1.423.962.4±0.264.3±0.4
1076.1±0.679.2±0.552.879.3±0.181.1±0.5
5082.3±0.384.4±0.476.882.0±0.184.3±0.1
CIFAR-10128.3±0.528.8±0.740.5±0.426.164.7±0.263.4±0.1
1044.9±0.552.1±0.553.1±0.553.675.6±0.275.5±0.1
5053.9±0.560.6±0.558.6±0.465.978.2±0.280.6±0.1
CIFAR-100112.8±0.313.9±0.3-23.834.9±0.133.3±0.3
1025.2±0.332.3±0.3=39.247.9±0.249.5±0.3
+ +1 DC [Zhao et al., 2021], DSA [Zhao and Bilen, 2021], KIP FC [Nguyen et al., 2021]. 2 Ours. 3 LD [Bohdal et al., 2020] is another baseline which distills only labels using the AlexNet architecture. Our LS achieves higher test accuracy than theirs in every dataset category. + +# 3 Experimental Results + +# 3.1 Kernel Distillation Results + +We apply the KIP and LS algorithms using the ConvNet architecture on the datasets MNIST [LeCun et al., 2010], Fashion MNIST [Xiao et al., 2017], SVHN [Netzer et al., 2011], CIFAR-10 [Krizhevsky, 2009], and CIFAR-100. Here, the goal is to condense the train dataset down to a learned dataset of size 1, 10, or 50 images per class. We consider a variety of hyperparameter settings (image preprocessing method, whether to augment target data, and whether to train the support labels for KIP), the full details of which are described in $\ S \mathrm { A }$ . For space reasons, we show a subset of our results in Table 1, with results corresponding to the remaining set of hyperparameters left to Tables A3-A10. We highlight here that a crucial ingredient for our strong results in the RGB dataset setting is the use of regularized ZCA preprocessing. Note the variable effect that our augmentations have on performance (see the last two columns of Table 1): they typically only provides a benefit for a sufficiently large support set. This result is consistent with Zhao et al. [2021], Zhao and Bilen [2021], in which gains from augmentations are also generally obtained from larger support sets. We tried varying the fraction (0.25 and 0.5) of each target batch that is augmented at each training step and found that while 10 images still did best without augmentations, 100 and 500 images typically did slightly better with some partial augmentations (versus none or full). For instance, for 500 images on CIFAR-10, we obtained $8 1 . 1 \%$ test accuracy using augmentation rate 0.5. Thus, our observation is that given that larger support sets can distill larger target datasets, as the former increases in size, the latter can be augmented more aggressively for obtaining optimal generalization performance. + +![](images/148a563acf6ae0ac3256cedf7abae07a8148ed52736016b4de5e15cdee20844b.jpg) +Figure 1: KIP with kernel sampling vs individual kernels. Left: Evaluation of three kernels, ConvNet, Conv-Vec3, Conv-Vec8 for KRR with respect to four train settings: sampling KIP (“all”) which uses all the kernels or else KIP trained with the individual kernels. For all three kernels, “all” is a close second place, outperformed only if the kernel used for training is exactly the same as the one used for testing. Right: We take the learned images of the four train settings described above and transfer them to finite-width neural networks corresponding to ConvNet, Conv-Vec3, Conv-Vec8. Each point is a neural network trained on a specified KIP learned checkpoint. Top row is sampling KIP images and bottom row is the baseline using just ConvNet for KIP. These plots indicate that sampling KIP improves performance across the architectures that are sampled, for both MSE and cross entropy loss. Settings: CIFAR-10, 100 images, no augmentations, no ZCA, no label learning. + +Remarkably, our results in Table 1 outperform all prior baselines across all dataset settings. Our results are especially strong in the small support size regime, with our 1 image per class results for KRR outperforming over 100 times as many natural images (see Table A1). We also obtain a significant margin over prior art across all datasets, with our largest margin being a $37 \%$ absolute gain in test accuracy for the SVHN dataset. + +# 3.2 Kernel Transfer + +In $\ S$ , we focused on obtaining state-of-the-art dataset distillation results for image classification using a specific kernel (ConvNet). Here, we consider the variation of KIP in which we sample from a family of kernels (which we call sampling KIP). We validate that sampling KIP adds robustness to the learned images in that they perform well for the family of kernels sampled during training. + +In Figure 1, we plot test performance of sampling KIP when using the kernels ConvNet, Conv-Vec3, and Conv-Vec8 (denoted by “all”) alongside KIP trained with just the individual kernels. Sampling KIP performs well at test time when using any of the three kernels, whereas datasets trained using a single kernel have a significant performance drop when using a different kernel. + +# 3.3 Neural Network Transfer + +In this section, we study how our distilled datasets optimized using KIP and LS transfer to the setting of finite-width neural networks. The main results are shown in Table 2. The third column shows the best neural network performance obtained by training on a KIP dataset of the corresponding size with respect to some choice of KIP and neural network training hyperparameters (see $\ S \mathrm { A }$ for details). Since the datasets are optimized for kernel ridge-regression and not for neural network training itself, we expect some performance loss when transferring to finite-width networks, which we record in the fourth column. Remarkably, the drop due to this transfer is quite moderate or small and sometimes the transfer can even lead to gain in performance (see LS for SVHN dataset with 10 images per class). + +Overall, our transfer to finite-width networks outperforms prior art based on DC/DSA [Zhao et al., 2021, Zhao and Bilen, 2021] in the 1 image per class setting for all the RGB datasets (SVHN, CIFAR-10, CIFAR-100). Moreover, for CIFAR-10, we outperform DC/DSA in all settings. + +Table 2: Transfer of KIP and LS to neural network training. Datasets obtained from KIP and LS using the ConvNet kernel are optimized for kernel ridge-regression and thus have reduced performance when used for training the corresponding finite-width ConvNet neural network. Remarkably, the loss in performance is mostly moderate and even small in many instances. Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. The KIP datasets used here can have augmentations or no augmentations and, unlike those in Table 1, can have either fixed or learned labels. $^ *$ denotes best chosen transfer is obtained with learned labels. + +
Imgs/ClassDC/DSAKIP to NNPerf. changeLS to NNPerf. change
MNIST191.7±0.590.1±0.1-5.571.0±0.2-2.4
1097.8±0.197.5±0.0-1.195.2±0.1-1.2
5099.2±0.198.3±0.1-0.897.9±0.0-0.4
Fashion-MNIST170.6±0.673.5±0.5*-9.861.2±0.1-4.1
1084.6±0.386.8±0.1-1.379.7±0.1-1.2
5088.7±0.288.0±0.1*-4.585.0±0.1-1.8
SVHN131.2±1.457.3±0.1*-8.323.8±0.2-0.2
1079.2±0.575.0±0.1-1.653.2±0.30.4
5084.4±0.480.5±0.1-1.076.5±0.3-0.4
CIFAR-10128.8±0.749.9±0.2-9.224.7±0.1-1.4
1052.1±0.562.7±0.3-4.649.3±0.1-4.3
5060.6±0.568.6±0.2-4.562.0±0.2-3.9
CIFAR-100113.9±0.315.7±0.2*-18.111.8±0.2-12.0
1032.3±0.328.3±0.1-17.425.0±0.1-14.2
+ +Figures 2 and 3 provide a closer look at KIP transfer changes under various settings. The first of these tracks how transfer performance changes when adding additional layers as function of the number of KIP training steps used. The normalization layers appear to harm performance for MSE loss, which can be anticipated from their absence in the KIP and LS optimization procedures. However they appear to provide some benefit for cross entropy loss. For Figure 3, we observe that as KIP training progresses, the downstream finite-width network’s performance also improves in general. A notable exception is observed when learning the labels in KIP, where longer training steps lead to deterioration of information useful to training finite-width neural networks. We also observe that as predicted by infinite-width theory [Jacot et al., 2018, Lee et al., 2019], the overall gap between KIP or LS performance and finite-width neural network decreases as the width increases. While our best performing transfer is obtained with width 1024, Figure 3 (middle) suggest that even with modest width of 64, our transfer can outperform prior art of $6 0 . 6 \%$ by Zhao and Bilen [2021]. + +Finally, in Figure 4, we investigate the performance of KIP images over the course of training of a single run, as compared to natural images, over a range of hyperparameters. We find the outperformance of KIP images above natural images consistent across hyperparameters and checkpoints. This suggests that our KIP images may also be effective for accelerated hyperparameter search, an application of dataset distillation explored in Zhao et al. [2021], Zhao and Bilen [2021]. + +Altogether, we find our neural network training results encouraging. First, it validates the applicability of infinite-width methods to the setting of finite width [Huang and Yau, 2020, Dyer and Gur-Ari, 2020, Andreassen and Dyer, 2020, Yaida, 2020, Lee et al., 2020]. Second, we find some of the transfer results quite surprising, including efficacy of label solve and the use of cross-entropy for certain settings (see $\ S$ for the full details). + +# 4 Understanding KIP Images and Labels + +A natural question to consider is what causes KIP to improve generalization performance. Does it simplify support images, removing noise and minor sources of variation while keeping only the core features shared between many target images of a given class? Or does it make them more complex by producing outputs that combine characteristics of many samples in a single resulting collage? While properly answering this question is subject to precise definitions of simplicity and complexity, we find that KIP tends to increase the complexity of pictures based on the following experiments: + +![](images/4b2f59db73df265ffd78c4beb7e58efaa0c701708ef3304ac1729acf17834d3d.jpg) + +![](images/d7101d842d66d8536c0fe0794798318cf8448c9d5fec3295db42110b30f393b0.jpg) +Figure 2: Robustness to neural network variations. KIP ConvNet images (trained with fixed labels) are tested on variations of the ConvNet neural network, including those which have various normalization layers (layer, instance, batch). A similar architecture to ConvNet, the Myrtle5 architecture (without normalization layers) [Shankar et al., 2020], which differs from the ConvNet architecture by having an additional convolutional layer at the bottom and a global average pooling that replaces the final local average pooling at the top, is also tested. Finally, mean-square error is compared with cross-entropy loss (left versus right). Settings: CIFAR-10, 500 images, ZCA, no label learning. + +![](images/d4bafe9124596e9d37dbd9d82f76504e27d351417c7bcb6711299bb95919161d.jpg) +Figure 3: Variations for neural network transfer. Left: Plot of transfer performance as a function of KIP training steps across various train settings. Here (a) denotes augmentations used during KIP training and $\left( \mathrm { a } { + } \mathrm { l } \right)$ denotes that additionally the labels were learned. MSE and XENT denote mean-square-error and cross entropy loss for the neural network, where for the case of XENT and $\left( \mathrm { a } \mathrm { + } \mathrm { l } \right)$ , the labels for the neural network are the argmax of the learned labels. Middle: Exploring the effect of width on transferability of vanilla KIP data. Right: The effect of width on the transferability of label solved data. Settings: CIFAR-10, 500 images, ZCA. +Figure 4: Hyperparameter robustness. In the above, KIP images across eight different checkpoints are used to train the ConvNet neural network. Each point in each plot is a neural network training with a different hyperparameter, and its location records the final test accuracy when training on natural images versus the KIP images obtained from initializing from such images. For both MSE and cross entropy loss, KIP images consistently exceed natural images across many hyperparameters. Settings: CIFAR-10, 500 images, ZCA, no augmentations, no label learning. + +![](images/e6c595174262ae29110808481345bc35e97724fca04c12c87c4596c09e29c9e0.jpg) +Figure 5: Examples of learned images. Images are initialized from natural images in the top row (Init) and converge to images in the bottom row (Trained). Settings: 100 images distilled, no ZCA, no label training, augmentations. + +• Visual analysis: qualitatively, KIP images tend to be richer in textures and contours. • Dimensional analysis: KIP produces images of higher intrinsic dimensionality (i.e. an estimate of the dimensionality of the manifold on which the images lie) than natural images. • Spectral analysis: unlike natural images, for which the bulk of generalization performance is explained by a small number of top few eigendirections, KIP images leverage the whole spectrum much more evenly. + +Combined, these results let us conclude that KIP usually increases complexity, integrating features from many target images into much fewer support images. + +Visual Analysis. A visual inspection of our learned data leads to intriguing observations in terms of interpretability. Figure 5 shows examples of KIP learned images from CIFAR-100. The resulting images are heterogeneous in terms of how they can be interpreted as distilling the data. For instance, the distilled apple image seems to consist of many apples nested within a possibly larger apple, whereas the distilled bottle image starts off as two bottles and before transforming into one, while other classes (like the beaver) are altogether visually indistinct. Investigating and quantifying aspects that make these images generalize so well is a promising avenue for future work. We show examples from other datasets in Figure A2. + +In Figure 6, we compare MNIST KIP data learned with and without label learning. For the latter case with images and labels optimized jointly, while labels become more informative, encoding richer inter-class information, the images become less interpretable. This behavior consistently leads to superior KRR results, but appears to not be leveraged as efficiently in the neural network transfer setting (Table 2). Experimental details can be found in $\ S \mathrm { A }$ . + +Dimensional Analysis. We study the intrinsic dimension of KIP images and find that they tend to grow. Intrinsic dimension (ID) was first defined by Bennett [1969] as “the number of free parameters required in a hypothetical signal generator capable of producing a close approximation to each signal in the collection”. In our context, it is the dimensionality of the manifold embedded into the image space which contains all the support images. Intuitively, simple datasets have a low ID as they can be described by a small number of coordinates on the low-dimensional data manifold. + +ID can be defined and estimated differently based on assumptions on the manifold structure and the probability density function of the images on this manifold (see [Camastra and Staiano, 2016] for review). We use the “Two-NN” method developed by [Facco et al., 2017], which makes relatively few assumptions and allows to estimate ID only from two nearest-neighbor distances for each datapoint. + +Figure 7 shows that the ID is increasing for the learned KIP images as a function of the training step across a variety of configurations (training with or without augmentations/label learning) and datasets. One might expect that a distillation procedure should decrease dimensionality. On the other hand, Ansuini et al. [2019] showed that ID increases in the earlier layers of a trained neural network. It remains to be understood if this latter observation has any relationship with our increased ID. Note that ZCA preprocessing, which played an important role for getting the best performance for our RGB datasets, increases dimensionality of the underlying data (see Figure A4). + +![](images/744ef5e48025d1576b73820fcc92a143cc5fbf893ece6f8a392eca2b6478b9c4.jpg) +Figure 6: Dataset distillation with trainable and non-trainable labels. Top row: initialization of support images and labels. Middle row: trained images if labels remain fixed. Bottom row: trained images and labels, jointly optimized. Settings: 100 images distilled, no augmentations. + +![](images/a06942204ec114b405c74d18fc52c11993ea495a87514472cc9da54909bdfd25.jpg) +Figure 7: Intrinsic dimension of a learned datasets grows during training. As training progresses, intrinsic dimension of the learned dataset grows, indicating that training non-trivially transforms the data manifold. See Figures A2 and 6 for visual examples of learned images, and Figures A3 and A4 for similar observations using other metrics and settings. Settings: 500 images distilled, no ZCA. + +Spectral Analysis. Another distinguishing property of KIP images is how their spectral components contribute to performance. In Figure 8, we spot how different spectral bands of KIP learned images affect test performance as compared to their initial natural images. Here, we use the FC2, Conv-Vec8, and ConvNet architectures. We note that for natural images (light bars), most of their performance is captured by the top $20 \%$ of eigenvalues. For KIP images, the performance is either more evenly distributed across the bands (FC and Conv-Vec8) or else is skewed towards the tail (ConvNet). + +# 5 Related Work + +Dataset distillation was first studied in Wang et al. [2018]. The work of Sucholutsky and Schonlau [2019], Bohdal et al. [2020] build upon it by distilling labels. Zhao et al. [2021] proposes condensing a training set by harnessing a gradient matching condition. Zhao and Bilen [2021] takes this idea further by applying a suitable augmentation strategy. Note that while Zhao and Bilen [2021] is limited in augmentation expressiveness (they have to apply a single augmentation per training iteration), we can sample augmentations independently per image in our target set per train step. Our work together with Nguyen et al. [2021] are, to the best of our knowledge, the only works using kernel-based methods for dataset distillation on image classification datasets. + +![](images/4c290bf4e301cc2883615e72ab385da78ab75a5398ad90dbbe6ea01579e15c20.jpg) +Figure 8: Spectral contribution to test accuracy shifts to the tail. By setting the ridge-parameter to zero in kernel-ridge regression and composing $K _ { X _ { s } X _ { s } } ^ { - 1 }$ with the spectral projection onto various eigenspaces, we can explore how different spectral bands affect test accuracy of kernel ridgeregression. We plot the relative change in test accuracy using contiguous bands of $20 \%$ of the eigenvalues. Settings: CIFAR-10, 500 images. Further details in $\ S$ . + +Our use of kernels stems from the correspondence between infinitely-wide neural networks and kernel methods [Neal, 1994, Lee et al., 2018, Matthews et al., 2018, Jacot et al., 2018, Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019, Yang, 2019a,b, Hron et al., 2020] and the extended correspondence with the finite width corrections [Dyer and Gur-Ari, 2020, Huang and Yau, 2020, Yaida, 2020]. These correspondences underlie the transferability of our KRR results to neural networks , and have been utilized in understanding trainability [Xiao et al., 2020], generalizations [Adlam and Pennington, 2020], training dynamics [Lewkowycz et al., 2020, Lewkowycz and Gur-Ari, 2020], uncertainty [Adlam et al., 2021], and demonstrated their effectiveness for smaller datasets [Arora et al., 2020] and neural architecture search [Park et al., 2020, Chen et al., 2021]. + +# 6 Conclusion + +We performed an extensive study of dataset distillation using the KIP and LS algorithms applied to convolutional architectures, obtaining SOTA results on a variety of image classification datasets. In some cases, our learned datasets were more effective than a natural dataset two orders of magnitude larger in size. There are many interesting followup directions and questions from our work: + +First, integrating efficient kernel-approximation methods into our algorithms, such as those of Zandieh et al. [2021], will reduce computational burden and enable scaling up to larger datasets. In this direction, the understanding of how various resources (e.g. data, parameter count, compute) scale when optimizing for neural network performance has received significant attention as machine learning models continue to stretch computational limits [Hestness et al., 2017, Rosenfeld et al., 2020, Kaplan et al., 2020, Bahri et al., 2021]. Developing our understanding of how to harness smaller, yet more useful representations data would aid in such endeavors. In particular, it would be especially interesting to explore how well datasets can be compressed as they scale up in size. + +Second, LS and KIP with label learning shows that optimizing labels is a very powerful tool for dataset distillation. The labels we obtain are quite far away from standard, interpretable labels and we feel their effectiveness suggests that understanding of how to optimally label data warrants further study. + +Finally, the novel features obtained by our learned datasets, and those of dataset distillation methods in general, may reveal insights into interpretability and the nature of sample-efficient representations. For instance, observe the bee and bicycle images in Figure 5: the bee class distills into what appears to be spurious visual features (e.g. pollen), while the bicycle class distills to the essential contours of a typical bicycle. Additional analyses and explorations of this type could offer insights into the perennial question of how neural networks learn and generalize. + +Acknowledgments We would like to acknowledge special thanks to Samuel S. Schoenholz, who proposed and helped develop the overall strategy for our distributed KIP learning methodology. We are also grateful to Ekin Dogus Cubuk and Manuel Kroiss for helpful discussions. + +# References + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. Advances in neural information processing systems, 25:1097–1105, 2012. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. + +Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. + +Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. + +Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A Efros. Dataset distillation. arXiv preprint arXiv:1811.10959, 2018. + +Ondrej Bohdal, Yongxin Yang, and Timothy Hospedales. Flexible dataset distillation: Learn labels instead of images. arXiv preprint arXiv:2006.08572, 2020. + +Timothy Nguyen, Zhourong Chen, and Jaehoon Lee. Dataset meta-learning from kernel ridge-regression. In International Conference on Learning Representations, 2021. + +Bo Zhao and Hakan Bilen. Dataset condensation with differentiable siamese augmentation. In International Conference on Machine Learning, 2021. + +Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry. Adversarial examples are not bugs, they are features, 2019. + +Minyoung Huh, Pulkit Agrawal, and Alexei A Efros. What makes imagenet good for transfer learning? arXiv preprint arXiv:1608.08614, 2016. + +Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020. + +Zalán Borsos, Mojmír Mutny, and Andreas Krause. Coresets via bilevel optimization for continual learning and \` streaming. arXiv preprint arXiv:2006.03875, 2020. + +Bo Zhao, Konda Reddy Mopuri, and Hakan Bilen. Dataset condensation with gradient matching. In International Conference on Learning Representations, 2021. + +Roman Novak, Lechao Xiao, Jaehoon Lee, Yasaman Bahri, Greg Yang, Jiri Hron, Daniel A. Abolafia, Jeffrey Pennington, and Jascha Sohl-Dickstein. Bayesian deep convolutional networks with many channels are gaussian processes. In International Conference on Learning Representations, 2019. + +Adrià Garriga-Alonso, Laurence Aitchison, and Carl Edward Rasmussen. Deep convolutional networks as shallow gaussian processes. In International Conference on Learning Representations, 2019. + +Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages 8141–8150. Curran Associates, Inc., 2019. + +Zhiyuan Li, Ruosong Wang, Dingli Yu, Simon S Du, Wei Hu, Ruslan Salakhutdinov, and Sanjeev Arora. Enhanced convolutional neural tangent kernels. arXiv preprint arXiv:1911.00809, 2019. + +Vaishaal Shankar, Alex Chengyu Fang, Wenshuo Guo, Sara Fridovich-Keil, Ludwig Schmidt, Jonathan RaganKelley, and Benjamin Recht. Neural kernels without tangents. In International Conference on Machine Learning, 2020. + +Alberto Bietti. Approximation and learning with deep convolutional models: a kernel perspective. arXiv preprint arXiv:2102.10032, 2021. + +Sanjeev Arora, Simon S. Du, Zhiyuan Li, Ruslan Salakhutdinov, Ruosong Wang, and Dingli Yu. Harnessing the power of infinitely wide deep nets on small-data tasks. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=rkl8sJBYvH. +Jaehoon Lee, Samuel S Schoenholz, Jeffrey Pennington, Ben Adlam, Lechao Xiao, Roman Novak, and Jascha Sohl-Dickstein. Finite versus infinite neural networks: an empirical study. In Advances in Neural Information Processing Systems, 2020. +Roman Novak, Lechao Xiao, Jiri Hron, Jaehoon Lee, Alexander A. Alemi, Jascha Sohl-Dickstein, and Samuel S. Schoenholz. Neural tangents: Fast and easy infinite neural networks in python. In International Conference on Learning Representations, 2020. URL https://github.com/google/neural-tangents. +James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, and Skye Wanderman-Milne. JAX: composable transformations of Python $^ +$ NumPy programs, 2018. URL http://github.com/google/jax. +Yann LeCun, Corinna Cortes, and CJ Burges. Mnist handwritten digit database. ATT Labs [Online]. Available: http://yann.lecun.com/exdb/mnist, 2, 2010. +Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms, 2017. +Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. 2011. +Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009. +Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and generalization in neural networks. In Advances in Neural Information Processing Systems, 2018. +Jaehoon Lee, Lechao Xiao, Samuel S. Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in Neural Information Processing Systems, 2019. +Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. In International Conference on Machine Learning, 2020. +Ethan Dyer and Guy Gur-Ari. Asymptotics of wide networks from feynman diagrams. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id $\equiv$ S1gFvANKDS. +Anders Andreassen and Ethan Dyer. Asymptotics of wide convolutional neural networks. arxiv preprint arXiv:2008.08675, 2020. +Sho Yaida. Non-Gaussian processes and neural networks at finite widths. In Mathematical and Scientific Machine Learning Conference, 2020. +R. Bennett. The intrinsic dimensionality of signal collections. IEEE Transactions on Information Theory, 15(5): 517–525, 1969. doi: 10.1109/TIT.1969.1054365. +Francesco Camastra and Antonino Staiano. Intrinsic dimension estimation: Advances and open problems. Information Sciences, 328:26–41, 2016. ISSN 0020-0255. doi: https://doi.org/10.1016/j.ins.2015.08.029. URL https://www.sciencedirect.com/science/article/pii/S0020025515006179. +Elena Facco, Maria d’Errico, Alex Rodriguez, and Alessandro Laio. Estimating the intrinsic dimension of datasets by a minimal neighborhood information. Scientific reports, 7(1):1–8, 2017. +A. Ansuini, A. Laio, J. Macke, and D. Zoccolan. Intrinsic dimension of data representations in deep neural networks. In NeurIPS, 2019. +Ilia Sucholutsky and Matthias Schonlau. Soft-label dataset distillation and text dataset distillation. arXiv preprint arXiv:1910.02551, 2019. +Radford M. Neal. Priors for infinite networks (tech. rep. no. crg-tr-94-1). University of Toronto, 1994. +Jaehoon Lee, Yasaman Bahri, Roman Novak, Sam Schoenholz, Jeffrey Pennington, and Jascha Sohl-dickstein. Deep neural networks as gaussian processes. In International Conference on Learning Representations, 2018. +Alexander G. de G. Matthews, Jiri Hron, Mark Rowland, Richard E. Turner, and Zoubin Ghahramani. Gaussian process behaviour in wide deep neural networks. In International Conference on Learning Representations, 2018. + +Greg Yang. Scaling limits of wide neural networks with weight sharing: Gaussian process behavior, gradient independence, and neural tangent kernel derivation. arXiv preprint arXiv:1902.04760, 2019a. + +Greg Yang. Wide feedforward or recurrent neural networks of any architecture are gaussian processes. In Advances in Neural Information Processing Systems, 2019b. + +Jiri Hron, Yasaman Bahri, Jascha Sohl-Dickstein, and Roman Novak. Infinite attention: NNGP and NTK for deep attention networks. In International Conference on Machine Learning, 2020. + +Lechao Xiao, Jeffrey Pennington, and Samuel S Schoenholz. Disentangling trainability and generalization in deep learning. In International Conference on Machine Learning, 2020. + +Ben Adlam and Jeffrey Pennington. The neural tangent kernel in high dimensions: Triple descent and a multi-scale theory of generalization. In International Conference on Machine Learning, pages 74–84. PMLR, 2020. + +Aitor Lewkowycz, Yasaman Bahri, Ethan Dyer, Jascha Sohl-Dickstein, and Guy Gur-Ari. The large learning rate phase of deep learning: the catapult mechanism. arXiv preprint arXiv:2003.02218, 2020. + +Aitor Lewkowycz and Guy Gur-Ari. On the training dynamics of deep networks with l_2 regularization. In Advances in Neural Information Processing Systems, volume 33, pages 4790–4799, 2020. + +Ben Adlam, Jaehoon Lee, Lechao Xiao, Jeffrey Pennington, and Jasper Snoek. Exploring the uncertainty properties of neural networks’ implicit priors in the infinite-width limit. In International Conference on Learning Representations, 2021. + +Daniel S Park, Jaehoon Lee, Daiyi Peng, Yuan Cao, and Jascha Sohl-Dickstein. Towards nngp-guided neural architecture search. arXiv preprint arXiv:2011.06006, 2020. + +Wuyang Chen, Xinyu Gong, and Zhangyang Wang. Neural architecture search on imagenet in four $\{ { \mathrm { g p u } } \}$ hours: A theoretically inspired perspective. In International Conference on Learning Representations, 2021. + +Amir Zandieh, Insu Han, Haim Avron, Neta Shoham, Chaewon Kim, and Jinwoo Shin. Scaling neural tangent kernels via sketching and random features. In Advances in Neural Information Processing Systems, 2021. + +Joel Hestness, Sharan Narang, Newsha Ardalani, Gregory F. Diamos, Heewoo Jun, Hassan Kianinejad, Md. Mostofa Ali Patwary, Yang Yang, and Yanqi Zhou. Deep learning scaling is predictable, empirically. CoRR, abs/1712.00409, 2017. URL http://arxiv.org/abs/1712.00409. + +Jonathan S. Rosenfeld, Amir Rosenfeld, Yonatan Belinkov, and Nir Shavit. A constructive prediction of the generalization error across scales. In International Conference on Learning Representations, 2020. + +Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models, 2020. + +Yasaman Bahri, Ethan Dyer, Jared Kaplan, Jaehoon Lee, and Utkarsh Sharma. Explaining neural scaling laws. arXiv preprint arXiv:2102.06701, 2021. + +Ekin D. Cubuk, Barret Zoph, Dandelion Mane, Vijay Vasudevan, and Quoc V. Le. Autoaugment: Learning augmentation strategies from data. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. + +Jascha Sohl-Dickstein, Roman Novak, Samuel S Schoenholz, and Jaehoon Lee. On the infinite width limit of neural networks with a standard parameterization. arXiv preprint arXiv:2001.07301, 2020. \ No newline at end of file diff --git a/parse/train/hXWPpJedrVP/hXWPpJedrVP_content_list.json b/parse/train/hXWPpJedrVP/hXWPpJedrVP_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2c6d0df739fd94ebfe49feec8f2b5ff3cba836 --- /dev/null +++ b/parse/train/hXWPpJedrVP/hXWPpJedrVP_content_list.json @@ -0,0 +1,1352 @@ +[ + { + "type": "text", + "text": "Dataset Distillation with Infinitely Wide Convolutional Networks ", + "text_level": 1, + "bbox": [ + 256, + 122, + 740, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Timothy Nguyen† ∗ ", + "text_level": 1, + "bbox": [ + 212, + 220, + 348, + 237 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Roman Novak♠ ", + "bbox": [ + 385, + 219, + 496, + 236 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Lechao Xiao♠ ", + "bbox": [ + 542, + 219, + 640, + 236 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "DeepMind† Google Research, Brain Team♠ timothycnguyen@deepmind.com {romann, xlc, jaehlee}@google.com ", + "bbox": [ + 348, + 246, + 647, + 300 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 335, + 535, + 352 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The effectiveness of machine learning algorithms arises from being able to extract useful features from large amounts of data. As model and dataset sizes increase, dataset distillation methods that compress large datasets into significantly smaller yet highly performant ones will become valuable in terms of training efficiency and useful feature extraction. To that end, we apply a novel distributed kernel-based meta-learning framework to achieve state-of-the-art results for dataset distillation using infinitely wide convolutional neural networks. For instance, using only 10 datapoints $0 . 0 2 \\%$ of original dataset), we obtain over $65 \\%$ test accuracy on CIFAR10 image classification task, a dramatic improvement over the previous best test accuracy of $40 \\%$ . Our state-of-the-art results extend across many other settings for MNIST, Fashion-MNIST, CIFAR-10, CIFAR-100, and SVHN. Furthermore, we perform some preliminary analyses of our distilled datasets to shed light on how they differ from naturally occurring data. ", + "bbox": [ + 233, + 366, + 766, + 546 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 570, + 310, + 588 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep learning has become extraordinarily successful in a wide variety of settings through the availability of large datasets [Krizhevsky et al., 2012, Devlin et al., 2018, Brown et al., 2020, Dosovitskiy et al., 2020]. Such large datasets enable a neural network to learn useful representations of the data that are adapted to solving tasks of interest. Unfortunately, it can be prohibitively costly to acquire such large datasets and train a neural network for the requisite amount of time. ", + "bbox": [ + 174, + 602, + 825, + 671 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One way to mitigate this problem is by constructing smaller datasets that are nevertheless informative. Some direct approaches to this include choosing a representative subset of the dataset (i.e. a coreset) or else performing a low-dimensional projection that reduces the number of features. However, such methods typically introduce a tradeoff between performance and dataset size, since what they produce is a coarse approximation of the full dataset. By contrast, the approach of dataset distillation is to synthesize datasets that are more informative than their natural counterparts when equalizing for dataset size [Wang et al., 2018, Bohdal et al., 2020, Nguyen et al., 2021, Zhao and Bilen, 2021]. Such resulting datasets will not arise from the distribution of natural images but will nevertheless capture features useful to a neural network, a capability which remains mysterious and is far from being well-understood [Ilyas et al., 2019, Huh et al., 2016, Hermann and Lampinen, 2020]. ", + "bbox": [ + 174, + 678, + 825, + 815 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The applications of such smaller, distilled datasets are diverse. For nonparametric methods that scale poorly with the training dataset (e.g. nearest-neighbors or kernel-ridge regression), having a reduced dataset decreases the associated memory and inference costs. For the training of neural networks, such distilled datasets have found several applications in the literature, including increasing the effectiveness of replay methods in continual learning [Borsos et al., 2020] and helping to accelerate neural architecture search [Zhao et al., 2021, Zhao and Bilen, 2021]. ", + "bbox": [ + 174, + 821, + 825, + 878 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 92, + 823, + 119 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we perform a large-scale extension of the methods of Nguyen et al. [2021] to obtain new state-of-the-art (SOTA) dataset distillation results. Specifically, we apply the algorithms KIP (Kernel Inducing Points) and LS (Label Solve), first developed in Nguyen et al. [2021], to infinitely wide convolutional networks by implementing a novel, distributed meta-learning framework that draws upon hundreds of accelerators per training. The need for such resources is necessitated by the computational costs of using infinitely wide neural networks built out of components occurring in modern image classification models: convolutional and pooling layers (see $\\ S _ { \\mathrm { B } }$ for details). The consequence is that we obtain distilled datasets that are effective for both kernel ridge-regression and neural network training. ", + "bbox": [ + 174, + 126, + 825, + 251 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Additionally, we initiate a preliminary study of the images and labels which KIP learns. We provide a visual and quantitative analysis of the data learned and find some surprising results concerning their interpretability and their dimensional and spectral properties. Given the efficacy of KIP and LS learned data, we believe a better understanding of them would aid in the understanding of feature learning in neural networks. ", + "bbox": [ + 176, + 256, + 825, + 325 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To summarize, our contributions are as follows: ", + "bbox": [ + 176, + 332, + 486, + 347 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. We achieve SOTA dataset distillation results on a wide variety of datasets (MNIST, FashionMNIST, SVHN, CIFAR-10, CIFAR-100) for both kernel ridge-regression and neural network training. In several instances, our results achieve an impressively wide margin over prior art, including over $2 5 \\%$ and $37 \\%$ absolute gain in accuracy on CIFAR-10 and SVHN image classification, respectively, when using only 10 images (Tables 1, 2, A11). \n2. We develop a novel, distributed meta-learning framework specifically tailored to the computational burdens of sophisticated neural kernels (§2.1). \n3. We highlight and analyze some of the peculiar features of the distilled datasets we obtain, illustrating how they differ from natural data (§4). \n4. We open source the distilled datasets, which used thousands of GPU hours, for the research community to further investigate at https://github.com/google-research/ google-research/tree/master/kip. ", + "bbox": [ + 210, + 359, + 826, + 551 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Setup", + "text_level": 1, + "bbox": [ + 174, + 574, + 253, + 590 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Background on infinitely wide convolutional networks. Recent literature has established that Bayesian and gradient-descent trained neural networks converge to Gaussian Processes (GP) as the number of hidden units in intermediary layers approaches infinity (see $\\ S 5$ ). These results hold for many different architectures, including convolutional networks, which converge to a particular GP in the limit of infinite channels [Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019]. Bayesian networks are described by the Neural Network Gaussian Process (NNGP) kernel, while gradient descent networks are described by the Neural Tangent Kernel (NTK). Since we are interested in synthesizing datasets that can be used with both kernel methods and common gradient-descent trained neural networks, we focus on NTK in this work. ", + "bbox": [ + 174, + 607, + 825, + 732 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Infinitely wide networks have been shown to achieve SOTA (among non-parametric kernels) results on image classification tasks [Novak et al., 2019, Arora et al., 2019, Li et al., 2019, Shankar et al., 2020, Bietti, 2021] and even rival finite-width networks in certain settings [Arora et al., 2020, Lee et al., 2020]. This makes such kernels especially suitable for our task. As convolutional models, they encode useful inductive biases of locality and translation invariance [Novak et al., 2019], which enable good generalization. Moreover, flexible and efficient computation of these kernels are possible due to the Neural Tangent library [Novak et al., 2020]. ", + "bbox": [ + 174, + 738, + 825, + 835 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Specific models considered. The central neural network (and corresponding infinite-width model) we consider is a simple 4-layer convolutional network with average pooling layers that we refer to as ConvNet throughout the text. This architecture is a slightly modified version of the default model used by Zhao and Bilen [2021], Zhao et al. [2021] and was chosen for ease of baselining (see $\\ S$ for details). In several other settings we also consider convolutional networks without pooling layers ConvVec,2 and networks with no convolutions and only fully-connected layers FC. Depth of architecture (as measured by number of hidden layers) is indicated by an integer suffix. ", + "bbox": [ + 174, + 842, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 169, + 90, + 825, + 119 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Background on algorithms. We review the Kernel Inducing Points (KIP) and Label Solve (LS) algorithms introduced by Nguyen et al. [2021]. Given a kernel $K$ , the kernel ridge-regression (KRR) loss function trained on a support dataset $( X _ { s } , y _ { s } )$ and evaluated on a target dataset $( X _ { t } , y _ { t } )$ is ", + "bbox": [ + 173, + 126, + 826, + 167 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/4d09c5178edafa32325041f77ec541c226a9c85f24857929893b13d7a3119d0d.jpg", + "text": "$$\nL ( X _ { s } , y _ { s } ) = \\frac { 1 } { 2 } \\left\\| y _ { t } - K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } y _ { s } \\right\\| _ { 2 } ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 323, + 172, + 673, + 202 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where if $U$ and $V$ are sets, $K _ { U V }$ is the matrix of kernel elements $( K ( u , v ) ) _ { u \\in U , v \\in V }$ . Here $\\lambda > 0$ is a fixed regularization parameter. The KIP algorithm consists of minimizing (1) with respect to the support set (either just the $X _ { s }$ or along with the labels $y _ { s }$ ). Here, we sample $( X _ { t } , y _ { t } )$ from a target dataset $\\mathcal { D }$ at every (meta)step, and update the support set using gradient-based methods. Additional variations include augmenting the $X _ { t }$ or sampling a different kernel $K$ (from a fixed family of kernels) at each step. ", + "bbox": [ + 173, + 207, + 825, + 291 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The Label Solve algorithm consists of solving for the least-norm minimizer of (1) with respect to $y _ { s }$ This yields the labels ", + "bbox": [ + 173, + 297, + 825, + 325 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6400c985b95cd910d952871747652b49009ec08e5b543a0d2f75cb6d00886af7.jpg", + "text": "$$\ny _ { s } ^ { * } = \\Big ( K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } \\Big ) ^ { + } y _ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 375, + 332, + 620, + 359 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $A ^ { + }$ denotes the pseudo-inverse of the matrix $A$ . Note that here $( X _ { t } , y _ { t } ) = \\mathcal { D }$ , i.e. the labels are solved using the whole target set. ", + "bbox": [ + 173, + 367, + 823, + 396 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In our applications of KIP and Label Solve, the target dataset $\\mathcal { D }$ is always significantly larger than the support set $( X _ { s } , y _ { s } )$ . Hence, the learned support set or solved labels can be regarded as distilled versions of their respective targets. We also initialize our support images to be a subset of natural images, though they could also be initialized randomly. ", + "bbox": [ + 173, + 401, + 825, + 458 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Based on the infinite-width correspondence outlined above and in $\\ S$ , dataset distillation using KIP or LS that is optimized for KRR should extend to the corresponding finite-width neural network training. Our experimental results in $\\ S$ validate this expectation across many settings. ", + "bbox": [ + 173, + 463, + 825, + 506 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 Client-Server Distributed Workflow ", + "text_level": 1, + "bbox": [ + 174, + 521, + 464, + 536 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We invoke a client-server model of distributed computation3, in which a server distributes independent workloads to a large pool of client workers that share a queue for receiving and sending work. Our distributed implementation of the KIP algorithm has two distinct stages: ", + "bbox": [ + 174, + 546, + 825, + 589 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Forward pass: In this step, we compute the support-support and target-support matrices $K ( X _ { s } , X _ { s } )$ and $K ( X _ { t } , X _ { s } )$ . To do so, we partition $X _ { s } \\times X _ { s }$ and $X _ { t } \\times X _ { s }$ into pairs of images $( x , x ^ { \\prime } )$ , each with batch size $B$ . We send such pairs to workers compute the respective matrix block $K ( \\boldsymbol { x } , \\boldsymbol { x } ^ { \\prime } )$ . The server aggregates all these blocks to obtain the $K ( \\bar { X } _ { s } , X _ { s } )$ and $K ( X _ { t } , X _ { s } )$ matrices. ", + "bbox": [ + 173, + 595, + 825, + 656 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Backward pass: In this step, we need to compute the gradient of the loss $L$ (1) with respect to the support set $X _ { s }$ . We need only consider $\\partial L / \\partial { \\bar { X } } _ { s }$ since $\\partial L / \\partial y _ { s }$ is cheap to compute. By the chain rule, we can write ", + "bbox": [ + 173, + 662, + 825, + 704 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/a0223d220bd86139fdd8c7685f0a6f5ec74cfdd88e27573f6f19316bb7fbcc1f.jpg", + "text": "$$\n\\frac { \\partial L } { \\partial X _ { s } } = \\frac { \\partial L } { \\partial ( K ( X _ { s } , X _ { s } ) ) } \\frac { \\partial K ( X _ { s } , X _ { s } ) } { \\partial X _ { s } } + \\frac { \\partial L } { \\partial ( K ( X _ { t } , X _ { s } ) ) } \\frac { \\partial K ( X _ { t } , X _ { s } ) } { \\partial X _ { s } } .\n$$", + "text_format": "latex", + "bbox": [ + 263, + 708, + 735, + 743 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The derivatives of $L$ with respect to the kernel matrices are inexpensive, since $L$ depends in a simple way on them (matrix multiplication and inversion). What is expensive to compute is the derivative of the kernel matrices with respect to the inputs. Each kernel element is an independent function of the inputs and a naive computation of the derivative of a block would require forwardmode differentiation, infeasible due to the size of the input images and the cost to compute the individual kernel elements. Thus our main novelty is to divide up the gradient computation into backward differentiation sub-computations, specifically by using the built-in function ${ \\mathrm { j a x . v j p } }$ in JAX [Bradbury et al., 2018]. Denoting $K = K \\bar { ( } X _ { s } , X _ { s } )$ or $K ( X _ { t } , X _ { s } )$ for short-hand, we divide the matrix $\\partial L / \\partial K$ , computed on the server, into $B \\times B$ blocks corresponding to $\\partial L / \\partial K ( x , x ^ { ' } )$ , where $x$ and $x ^ { \\prime }$ each have batch size $B$ . We send each such block, along with the corresponding block of image data $( x , x ^ { \\prime } )$ , to a worker. The worker then treats the $\\partial L / \\partial K ( x , x ^ { \\prime } )$ it receives as the cotangent vector argument of ${ \\mathrm { j a x . v j p } }$ that, via contraction, converts the derivative of $K ( x , x ^ { \\prime } )$ with respect to $x$ into a scalar. The server aggregates all these partial gradient computations performed by the workers, over all possible $B \\times B$ blocks, to compute the total gradient $\\partial L / \\partial X _ { s }$ used to update $X _ { s }$ . ", + "bbox": [ + 173, + 747, + 826, + 861 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/93a161c49cc38c7dc021cdfc3acc93e546f582a7e6e2e85d3f67088d33ea5aef.jpg", + "table_caption": [ + "Table 1: Comparison with other methods. The left group consists of neural network based methods. The right group consists of kernel ridge-regression. All settings for KIP involve the use of label-learning. Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. " + ], + "table_footnote": [ + "1 DC [Zhao et al., 2021], DSA [Zhao and Bilen, 2021], KIP FC [Nguyen et al., 2021]. 2 Ours. 3 LD [Bohdal et al., 2020] is another baseline which distills only labels using the AlexNet architecture. Our LS achieves higher test accuracy than theirs in every dataset category. " + ], + "table_body": "
Imgs/ ClassDC1DSA1KIP FC1 augLS ConvNet2,3 KIP ConvNet2
no augaug
MNIST191.7±0.588.7±0.685.5±0.173.497.3±0.196.5±0.1
1097.4±0.297.8±0.197.2±0.296.499.1±0.199.1±0.1
5098.8±0.199.2±0.198.4±0.198.399.4±0.199.5±0.1
Fashion- MNIST170.5±0.670.6±0.665.382.9±0.276.7±0.2
1082.3±0.484.6±0.380.891.0±0.188.8±0.1
5083.6±0.488.7±0.286.992.4±0.191.0±0.1
SVHN131.2±1.427.5±1.423.962.4±0.264.3±0.4
1076.1±0.679.2±0.552.879.3±0.181.1±0.5
5082.3±0.384.4±0.476.882.0±0.184.3±0.1
CIFAR-10128.3±0.528.8±0.740.5±0.426.164.7±0.263.4±0.1
1044.9±0.552.1±0.553.1±0.553.675.6±0.275.5±0.1
5053.9±0.560.6±0.558.6±0.465.978.2±0.280.6±0.1
CIFAR-100112.8±0.313.9±0.3-23.834.9±0.133.3±0.3
1025.2±0.332.3±0.3=39.247.9±0.249.5±0.3
", + "bbox": [ + 173, + 155, + 825, + 410 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 491, + 825, + 583 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 Experimental Results ", + "text_level": 1, + "bbox": [ + 174, + 603, + 385, + 621 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 Kernel Distillation Results ", + "text_level": 1, + "bbox": [ + 174, + 636, + 397, + 651 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We apply the KIP and LS algorithms using the ConvNet architecture on the datasets MNIST [LeCun et al., 2010], Fashion MNIST [Xiao et al., 2017], SVHN [Netzer et al., 2011], CIFAR-10 [Krizhevsky, 2009], and CIFAR-100. Here, the goal is to condense the train dataset down to a learned dataset of size 1, 10, or 50 images per class. We consider a variety of hyperparameter settings (image preprocessing method, whether to augment target data, and whether to train the support labels for KIP), the full details of which are described in $\\ S \\mathrm { A }$ . For space reasons, we show a subset of our results in Table 1, with results corresponding to the remaining set of hyperparameters left to Tables A3-A10. We highlight here that a crucial ingredient for our strong results in the RGB dataset setting is the use of regularized ZCA preprocessing. Note the variable effect that our augmentations have on performance (see the last two columns of Table 1): they typically only provides a benefit for a sufficiently large support set. This result is consistent with Zhao et al. [2021], Zhao and Bilen [2021], in which gains from augmentations are also generally obtained from larger support sets. We tried varying the fraction (0.25 and 0.5) of each target batch that is augmented at each training step and found that while 10 images still did best without augmentations, 100 and 500 images typically did slightly better with some partial augmentations (versus none or full). For instance, for 500 images on CIFAR-10, we obtained $8 1 . 1 \\%$ test accuracy using augmentation rate 0.5. Thus, our observation is that given that larger support sets can distill larger target datasets, as the former increases in size, the latter can be augmented more aggressively for obtaining optimal generalization performance. ", + "bbox": [ + 173, + 661, + 825, + 911 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/148a563acf6ae0ac3256cedf7abae07a8148ed52736016b4de5e15cdee20844b.jpg", + "image_caption": [ + "Figure 1: KIP with kernel sampling vs individual kernels. Left: Evaluation of three kernels, ConvNet, Conv-Vec3, Conv-Vec8 for KRR with respect to four train settings: sampling KIP (“all”) which uses all the kernels or else KIP trained with the individual kernels. For all three kernels, “all” is a close second place, outperformed only if the kernel used for training is exactly the same as the one used for testing. Right: We take the learned images of the four train settings described above and transfer them to finite-width neural networks corresponding to ConvNet, Conv-Vec3, Conv-Vec8. Each point is a neural network trained on a specified KIP learned checkpoint. Top row is sampling KIP images and bottom row is the baseline using just ConvNet for KIP. These plots indicate that sampling KIP improves performance across the architectures that are sampled, for both MSE and cross entropy loss. Settings: CIFAR-10, 100 images, no augmentations, no ZCA, no label learning. " + ], + "image_footnote": [], + "bbox": [ + 192, + 90, + 803, + 301 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Remarkably, our results in Table 1 outperform all prior baselines across all dataset settings. Our results are especially strong in the small support size regime, with our 1 image per class results for KRR outperforming over 100 times as many natural images (see Table A1). We also obtain a significant margin over prior art across all datasets, with our largest margin being a $37 \\%$ absolute gain in test accuracy for the SVHN dataset. ", + "bbox": [ + 174, + 479, + 825, + 549 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 Kernel Transfer ", + "text_level": 1, + "bbox": [ + 174, + 566, + 325, + 582 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In $\\ S$ , we focused on obtaining state-of-the-art dataset distillation results for image classification using a specific kernel (ConvNet). Here, we consider the variation of KIP in which we sample from a family of kernels (which we call sampling KIP). We validate that sampling KIP adds robustness to the learned images in that they perform well for the family of kernels sampled during training. ", + "bbox": [ + 174, + 592, + 825, + 647 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In Figure 1, we plot test performance of sampling KIP when using the kernels ConvNet, Conv-Vec3, and Conv-Vec8 (denoted by “all”) alongside KIP trained with just the individual kernels. Sampling KIP performs well at test time when using any of the three kernels, whereas datasets trained using a single kernel have a significant performance drop when using a different kernel. ", + "bbox": [ + 174, + 654, + 825, + 710 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 Neural Network Transfer ", + "text_level": 1, + "bbox": [ + 174, + 727, + 390, + 741 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section, we study how our distilled datasets optimized using KIP and LS transfer to the setting of finite-width neural networks. The main results are shown in Table 2. The third column shows the best neural network performance obtained by training on a KIP dataset of the corresponding size with respect to some choice of KIP and neural network training hyperparameters (see $\\ S \\mathrm { A }$ for details). Since the datasets are optimized for kernel ridge-regression and not for neural network training itself, we expect some performance loss when transferring to finite-width networks, which we record in the fourth column. Remarkably, the drop due to this transfer is quite moderate or small and sometimes the transfer can even lead to gain in performance (see LS for SVHN dataset with 10 images per class). ", + "bbox": [ + 173, + 752, + 825, + 863 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Overall, our transfer to finite-width networks outperforms prior art based on DC/DSA [Zhao et al., 2021, Zhao and Bilen, 2021] in the 1 image per class setting for all the RGB datasets (SVHN, CIFAR-10, CIFAR-100). Moreover, for CIFAR-10, we outperform DC/DSA in all settings. ", + "bbox": [ + 176, + 869, + 826, + 911 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/a34c200cfbe088aea4d855afa6db1cfcff2d63d3f3c589cc4baa786af48c2758.jpg", + "table_caption": [ + "Table 2: Transfer of KIP and LS to neural network training. Datasets obtained from KIP and LS using the ConvNet kernel are optimized for kernel ridge-regression and thus have reduced performance when used for training the corresponding finite-width ConvNet neural network. Remarkably, the loss in performance is mostly moderate and even small in many instances. Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. The KIP datasets used here can have augmentations or no augmentations and, unlike those in Table 1, can have either fixed or learned labels. $^ *$ denotes best chosen transfer is obtained with learned labels. " + ], + "table_footnote": [], + "table_body": "
Imgs/ClassDC/DSAKIP to NNPerf. changeLS to NNPerf. change
MNIST191.7±0.590.1±0.1-5.571.0±0.2-2.4
1097.8±0.197.5±0.0-1.195.2±0.1-1.2
5099.2±0.198.3±0.1-0.897.9±0.0-0.4
Fashion-MNIST170.6±0.673.5±0.5*-9.861.2±0.1-4.1
1084.6±0.386.8±0.1-1.379.7±0.1-1.2
5088.7±0.288.0±0.1*-4.585.0±0.1-1.8
SVHN131.2±1.457.3±0.1*-8.323.8±0.2-0.2
1079.2±0.575.0±0.1-1.653.2±0.30.4
5084.4±0.480.5±0.1-1.076.5±0.3-0.4
CIFAR-10128.8±0.749.9±0.2-9.224.7±0.1-1.4
1052.1±0.562.7±0.3-4.649.3±0.1-4.3
5060.6±0.568.6±0.2-4.562.0±0.2-3.9
CIFAR-100113.9±0.315.7±0.2*-18.111.8±0.2-12.0
1032.3±0.328.3±0.1-17.425.0±0.1-14.2
", + "bbox": [ + 200, + 189, + 794, + 460 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Figures 2 and 3 provide a closer look at KIP transfer changes under various settings. The first of these tracks how transfer performance changes when adding additional layers as function of the number of KIP training steps used. The normalization layers appear to harm performance for MSE loss, which can be anticipated from their absence in the KIP and LS optimization procedures. However they appear to provide some benefit for cross entropy loss. For Figure 3, we observe that as KIP training progresses, the downstream finite-width network’s performance also improves in general. A notable exception is observed when learning the labels in KIP, where longer training steps lead to deterioration of information useful to training finite-width neural networks. We also observe that as predicted by infinite-width theory [Jacot et al., 2018, Lee et al., 2019], the overall gap between KIP or LS performance and finite-width neural network decreases as the width increases. While our best performing transfer is obtained with width 1024, Figure 3 (middle) suggest that even with modest width of 64, our transfer can outperform prior art of $6 0 . 6 \\%$ by Zhao and Bilen [2021]. ", + "bbox": [ + 173, + 486, + 826, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Finally, in Figure 4, we investigate the performance of KIP images over the course of training of a single run, as compared to natural images, over a range of hyperparameters. We find the outperformance of KIP images above natural images consistent across hyperparameters and checkpoints. This suggests that our KIP images may also be effective for accelerated hyperparameter search, an application of dataset distillation explored in Zhao et al. [2021], Zhao and Bilen [2021]. ", + "bbox": [ + 174, + 659, + 825, + 729 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Altogether, we find our neural network training results encouraging. First, it validates the applicability of infinite-width methods to the setting of finite width [Huang and Yau, 2020, Dyer and Gur-Ari, 2020, Andreassen and Dyer, 2020, Yaida, 2020, Lee et al., 2020]. Second, we find some of the transfer results quite surprising, including efficacy of label solve and the use of cross-entropy for certain settings (see $\\ S$ for the full details). ", + "bbox": [ + 174, + 734, + 825, + 804 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 Understanding KIP Images and Labels ", + "text_level": 1, + "bbox": [ + 174, + 823, + 532, + 842 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A natural question to consider is what causes KIP to improve generalization performance. Does it simplify support images, removing noise and minor sources of variation while keeping only the core features shared between many target images of a given class? Or does it make them more complex by producing outputs that combine characteristics of many samples in a single resulting collage? While properly answering this question is subject to precise definitions of simplicity and complexity, we find that KIP tends to increase the complexity of pictures based on the following experiments: ", + "bbox": [ + 174, + 856, + 825, + 911 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/4b2f59db73df265ffd78c4beb7e58efaa0c701708ef3304ac1729acf17834d3d.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 194, + 90, + 802, + 241 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/d7101d842d66d8536c0fe0794798318cf8448c9d5fec3295db42110b30f393b0.jpg", + "image_caption": [ + "Figure 2: Robustness to neural network variations. KIP ConvNet images (trained with fixed labels) are tested on variations of the ConvNet neural network, including those which have various normalization layers (layer, instance, batch). A similar architecture to ConvNet, the Myrtle5 architecture (without normalization layers) [Shankar et al., 2020], which differs from the ConvNet architecture by having an additional convolutional layer at the bottom and a global average pooling that replaces the final local average pooling at the top, is also tested. Finally, mean-square error is compared with cross-entropy loss (left versus right). Settings: CIFAR-10, 500 images, ZCA, no label learning. " + ], + "image_footnote": [], + "bbox": [ + 192, + 367, + 803, + 497 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/d4bafe9124596e9d37dbd9d82f76504e27d351417c7bcb6711299bb95919161d.jpg", + "image_caption": [ + "Figure 3: Variations for neural network transfer. Left: Plot of transfer performance as a function of KIP training steps across various train settings. Here (a) denotes augmentations used during KIP training and $\\left( \\mathrm { a } { + } \\mathrm { l } \\right)$ denotes that additionally the labels were learned. MSE and XENT denote mean-square-error and cross entropy loss for the neural network, where for the case of XENT and $\\left( \\mathrm { a } \\mathrm { + } \\mathrm { l } \\right)$ , the labels for the neural network are the argmax of the learned labels. Middle: Exploring the effect of width on transferability of vanilla KIP data. Right: The effect of width on the transferability of label solved data. Settings: CIFAR-10, 500 images, ZCA. ", + "Figure 4: Hyperparameter robustness. In the above, KIP images across eight different checkpoints are used to train the ConvNet neural network. Each point in each plot is a neural network training with a different hyperparameter, and its location records the final test accuracy when training on natural images versus the KIP images obtained from initializing from such images. For both MSE and cross entropy loss, KIP images consistently exceed natural images across many hyperparameters. Settings: CIFAR-10, 500 images, ZCA, no augmentations, no label learning. " + ], + "image_footnote": [], + "bbox": [ + 191, + 625, + 805, + 829 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/e6c595174262ae29110808481345bc35e97724fca04c12c87c4596c09e29c9e0.jpg", + "image_caption": [ + "Figure 5: Examples of learned images. Images are initialized from natural images in the top row (Init) and converge to images in the bottom row (Trained). Settings: 100 images distilled, no ZCA, no label training, augmentations. " + ], + "image_footnote": [], + "bbox": [ + 176, + 111, + 816, + 207 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 290, + 825, + 319 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "• Visual analysis: qualitatively, KIP images tend to be richer in textures and contours. • Dimensional analysis: KIP produces images of higher intrinsic dimensionality (i.e. an estimate of the dimensionality of the manifold on which the images lie) than natural images. • Spectral analysis: unlike natural images, for which the bulk of generalization performance is explained by a small number of top few eigendirections, KIP images leverage the whole spectrum much more evenly. ", + "bbox": [ + 218, + 329, + 825, + 424 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Combined, these results let us conclude that KIP usually increases complexity, integrating features from many target images into much fewer support images. ", + "bbox": [ + 174, + 435, + 823, + 463 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Visual Analysis. A visual inspection of our learned data leads to intriguing observations in terms of interpretability. Figure 5 shows examples of KIP learned images from CIFAR-100. The resulting images are heterogeneous in terms of how they can be interpreted as distilling the data. For instance, the distilled apple image seems to consist of many apples nested within a possibly larger apple, whereas the distilled bottle image starts off as two bottles and before transforming into one, while other classes (like the beaver) are altogether visually indistinct. Investigating and quantifying aspects that make these images generalize so well is a promising avenue for future work. We show examples from other datasets in Figure A2. ", + "bbox": [ + 174, + 469, + 825, + 580 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In Figure 6, we compare MNIST KIP data learned with and without label learning. For the latter case with images and labels optimized jointly, while labels become more informative, encoding richer inter-class information, the images become less interpretable. This behavior consistently leads to superior KRR results, but appears to not be leveraged as efficiently in the neural network transfer setting (Table 2). Experimental details can be found in $\\ S \\mathrm { A }$ . ", + "bbox": [ + 174, + 587, + 825, + 656 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Dimensional Analysis. We study the intrinsic dimension of KIP images and find that they tend to grow. Intrinsic dimension (ID) was first defined by Bennett [1969] as “the number of free parameters required in a hypothetical signal generator capable of producing a close approximation to each signal in the collection”. In our context, it is the dimensionality of the manifold embedded into the image space which contains all the support images. Intuitively, simple datasets have a low ID as they can be described by a small number of coordinates on the low-dimensional data manifold. ", + "bbox": [ + 174, + 662, + 825, + 746 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "ID can be defined and estimated differently based on assumptions on the manifold structure and the probability density function of the images on this manifold (see [Camastra and Staiano, 2016] for review). We use the “Two-NN” method developed by [Facco et al., 2017], which makes relatively few assumptions and allows to estimate ID only from two nearest-neighbor distances for each datapoint. ", + "bbox": [ + 174, + 752, + 825, + 808 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 7 shows that the ID is increasing for the learned KIP images as a function of the training step across a variety of configurations (training with or without augmentations/label learning) and datasets. One might expect that a distillation procedure should decrease dimensionality. On the other hand, Ansuini et al. [2019] showed that ID increases in the earlier layers of a trained neural network. It remains to be understood if this latter observation has any relationship with our increased ID. Note that ZCA preprocessing, which played an important role for getting the best performance for our RGB datasets, increases dimensionality of the underlying data (see Figure A4). ", + "bbox": [ + 174, + 814, + 825, + 911 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/744ef5e48025d1576b73820fcc92a143cc5fbf893ece6f8a392eca2b6478b9c4.jpg", + "image_caption": [ + "Figure 6: Dataset distillation with trainable and non-trainable labels. Top row: initialization of support images and labels. Middle row: trained images if labels remain fixed. Bottom row: trained images and labels, jointly optimized. Settings: 100 images distilled, no augmentations. " + ], + "image_footnote": [], + "bbox": [ + 220, + 85, + 777, + 376 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/a06942204ec114b405c74d18fc52c11993ea495a87514472cc9da54909bdfd25.jpg", + "image_caption": [ + "Figure 7: Intrinsic dimension of a learned datasets grows during training. As training progresses, intrinsic dimension of the learned dataset grows, indicating that training non-trivially transforms the data manifold. See Figures A2 and 6 for visual examples of learned images, and Figures A3 and A4 for similar observations using other metrics and settings. Settings: 500 images distilled, no ZCA. " + ], + "image_footnote": [], + "bbox": [ + 223, + 440, + 776, + 570 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Spectral Analysis. Another distinguishing property of KIP images is how their spectral components contribute to performance. In Figure 8, we spot how different spectral bands of KIP learned images affect test performance as compared to their initial natural images. Here, we use the FC2, Conv-Vec8, and ConvNet architectures. We note that for natural images (light bars), most of their performance is captured by the top $20 \\%$ of eigenvalues. For KIP images, the performance is either more evenly distributed across the bands (FC and Conv-Vec8) or else is skewed towards the tail (ConvNet). ", + "bbox": [ + 174, + 666, + 825, + 750 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 768, + 321, + 786 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Dataset distillation was first studied in Wang et al. [2018]. The work of Sucholutsky and Schonlau [2019], Bohdal et al. [2020] build upon it by distilling labels. Zhao et al. [2021] proposes condensing a training set by harnessing a gradient matching condition. Zhao and Bilen [2021] takes this idea further by applying a suitable augmentation strategy. Note that while Zhao and Bilen [2021] is limited in augmentation expressiveness (they have to apply a single augmentation per training iteration), we can sample augmentations independently per image in our target set per train step. Our work together with Nguyen et al. [2021] are, to the best of our knowledge, the only works using kernel-based methods for dataset distillation on image classification datasets. ", + "bbox": [ + 173, + 800, + 825, + 911 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/4c290bf4e301cc2883615e72ab385da78ab75a5398ad90dbbe6ea01579e15c20.jpg", + "image_caption": [ + "Figure 8: Spectral contribution to test accuracy shifts to the tail. By setting the ridge-parameter to zero in kernel-ridge regression and composing $K _ { X _ { s } X _ { s } } ^ { - 1 }$ with the spectral projection onto various eigenspaces, we can explore how different spectral bands affect test accuracy of kernel ridgeregression. We plot the relative change in test accuracy using contiguous bands of $20 \\%$ of the eigenvalues. Settings: CIFAR-10, 500 images. Further details in $\\ S$ . " + ], + "image_footnote": [], + "bbox": [ + 333, + 93, + 663, + 291 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Our use of kernels stems from the correspondence between infinitely-wide neural networks and kernel methods [Neal, 1994, Lee et al., 2018, Matthews et al., 2018, Jacot et al., 2018, Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019, Yang, 2019a,b, Hron et al., 2020] and the extended correspondence with the finite width corrections [Dyer and Gur-Ari, 2020, Huang and Yau, 2020, Yaida, 2020]. These correspondences underlie the transferability of our KRR results to neural networks , and have been utilized in understanding trainability [Xiao et al., 2020], generalizations [Adlam and Pennington, 2020], training dynamics [Lewkowycz et al., 2020, Lewkowycz and Gur-Ari, 2020], uncertainty [Adlam et al., 2021], and demonstrated their effectiveness for smaller datasets [Arora et al., 2020] and neural architecture search [Park et al., 2020, Chen et al., 2021]. ", + "bbox": [ + 174, + 410, + 826, + 535 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 553, + 299, + 569 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We performed an extensive study of dataset distillation using the KIP and LS algorithms applied to convolutional architectures, obtaining SOTA results on a variety of image classification datasets. In some cases, our learned datasets were more effective than a natural dataset two orders of magnitude larger in size. There are many interesting followup directions and questions from our work: ", + "bbox": [ + 174, + 587, + 825, + 642 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "First, integrating efficient kernel-approximation methods into our algorithms, such as those of Zandieh et al. [2021], will reduce computational burden and enable scaling up to larger datasets. In this direction, the understanding of how various resources (e.g. data, parameter count, compute) scale when optimizing for neural network performance has received significant attention as machine learning models continue to stretch computational limits [Hestness et al., 2017, Rosenfeld et al., 2020, Kaplan et al., 2020, Bahri et al., 2021]. Developing our understanding of how to harness smaller, yet more useful representations data would aid in such endeavors. In particular, it would be especially interesting to explore how well datasets can be compressed as they scale up in size. ", + "bbox": [ + 173, + 648, + 825, + 760 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Second, LS and KIP with label learning shows that optimizing labels is a very powerful tool for dataset distillation. The labels we obtain are quite far away from standard, interpretable labels and we feel their effectiveness suggests that understanding of how to optimally label data warrants further study. ", + "bbox": [ + 174, + 766, + 825, + 821 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Finally, the novel features obtained by our learned datasets, and those of dataset distillation methods in general, may reveal insights into interpretability and the nature of sample-efficient representations. For instance, observe the bee and bicycle images in Figure 5: the bee class distills into what appears to be spurious visual features (e.g. pollen), while the bicycle class distills to the essential contours of a typical bicycle. Additional analyses and explorations of this type could offer insights into the perennial question of how neural networks learn and generalize. ", + "bbox": [ + 174, + 828, + 825, + 911 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Acknowledgments We would like to acknowledge special thanks to Samuel S. Schoenholz, who proposed and helped develop the overall strategy for our distributed KIP learning methodology. We are also grateful to Ekin Dogus Cubuk and Manuel Kroiss for helpful discussions. ", + "bbox": [ + 173, + 90, + 823, + 133 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 151, + 267, + 167 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. Advances in neural information processing systems, 25:1097–1105, 2012. ", + "bbox": [ + 174, + 175, + 823, + 202 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018. ", + "bbox": [ + 173, + 210, + 823, + 238 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. ", + "bbox": [ + 173, + 246, + 823, + 286 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. ", + "bbox": [ + 174, + 295, + 823, + 334 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A Efros. Dataset distillation. arXiv preprint arXiv:1811.10959, 2018. ", + "bbox": [ + 174, + 343, + 823, + 371 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ondrej Bohdal, Yongxin Yang, and Timothy Hospedales. Flexible dataset distillation: Learn labels instead of images. arXiv preprint arXiv:2006.08572, 2020. ", + "bbox": [ + 173, + 378, + 825, + 406 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Timothy Nguyen, Zhourong Chen, and Jaehoon Lee. Dataset meta-learning from kernel ridge-regression. In International Conference on Learning Representations, 2021. ", + "bbox": [ + 173, + 415, + 825, + 443 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Bo Zhao and Hakan Bilen. Dataset condensation with differentiable siamese augmentation. In International Conference on Machine Learning, 2021. ", + "bbox": [ + 173, + 452, + 823, + 478 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry. Adversarial examples are not bugs, they are features, 2019. ", + "bbox": [ + 176, + 487, + 823, + 515 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Minyoung Huh, Pulkit Agrawal, and Alexei A Efros. What makes imagenet good for transfer learning? arXiv preprint arXiv:1608.08614, 2016. ", + "bbox": [ + 174, + 522, + 823, + 550 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets, architectures, and training. arXiv preprint arXiv:2006.12433, 2020. ", + "bbox": [ + 173, + 559, + 823, + 587 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zalán Borsos, Mojmír Mutny, and Andreas Krause. Coresets via bilevel optimization for continual learning and \\` streaming. arXiv preprint arXiv:2006.03875, 2020. ", + "bbox": [ + 169, + 594, + 823, + 622 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Bo Zhao, Konda Reddy Mopuri, and Hakan Bilen. Dataset condensation with gradient matching. In International Conference on Learning Representations, 2021. ", + "bbox": [ + 171, + 631, + 823, + 659 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roman Novak, Lechao Xiao, Jaehoon Lee, Yasaman Bahri, Greg Yang, Jiri Hron, Daniel A. Abolafia, Jeffrey Pennington, and Jascha Sohl-Dickstein. Bayesian deep convolutional networks with many channels are gaussian processes. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 174, + 666, + 823, + 707 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Adrià Garriga-Alonso, Laurence Aitchison, and Carl Edward Rasmussen. Deep convolutional networks as shallow gaussian processes. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 171, + 715, + 821, + 742 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages 8141–8150. Curran Associates, Inc., 2019. ", + "bbox": [ + 174, + 751, + 823, + 791 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhiyuan Li, Ruosong Wang, Dingli Yu, Simon S Du, Wei Hu, Ruslan Salakhutdinov, and Sanjeev Arora. Enhanced convolutional neural tangent kernels. arXiv preprint arXiv:1911.00809, 2019. ", + "bbox": [ + 173, + 799, + 821, + 827 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Vaishaal Shankar, Alex Chengyu Fang, Wenshuo Guo, Sara Fridovich-Keil, Ludwig Schmidt, Jonathan RaganKelley, and Benjamin Recht. Neural kernels without tangents. In International Conference on Machine Learning, 2020. ", + "bbox": [ + 173, + 837, + 823, + 876 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alberto Bietti. Approximation and learning with deep convolutional models: a kernel perspective. arXiv preprint arXiv:2102.10032, 2021. ", + "bbox": [ + 171, + 885, + 825, + 911 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sanjeev Arora, Simon S. Du, Zhiyuan Li, Ruslan Salakhutdinov, Ruosong Wang, and Dingli Yu. Harnessing the power of infinitely wide deep nets on small-data tasks. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id=rkl8sJBYvH. \nJaehoon Lee, Samuel S Schoenholz, Jeffrey Pennington, Ben Adlam, Lechao Xiao, Roman Novak, and Jascha Sohl-Dickstein. Finite versus infinite neural networks: an empirical study. In Advances in Neural Information Processing Systems, 2020. \nRoman Novak, Lechao Xiao, Jiri Hron, Jaehoon Lee, Alexander A. Alemi, Jascha Sohl-Dickstein, and Samuel S. Schoenholz. Neural tangents: Fast and easy infinite neural networks in python. In International Conference on Learning Representations, 2020. URL https://github.com/google/neural-tangents. \nJames Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, and Skye Wanderman-Milne. JAX: composable transformations of Python $^ +$ NumPy programs, 2018. URL http://github.com/google/jax. \nYann LeCun, Corinna Cortes, and CJ Burges. Mnist handwritten digit database. ATT Labs [Online]. Available: http://yann.lecun.com/exdb/mnist, 2, 2010. \nHan Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms, 2017. \nYuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. 2011. \nAlex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009. \nArthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and generalization in neural networks. In Advances in Neural Information Processing Systems, 2018. \nJaehoon Lee, Lechao Xiao, Samuel S. Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In Advances in Neural Information Processing Systems, 2019. \nJiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. In International Conference on Machine Learning, 2020. \nEthan Dyer and Guy Gur-Ari. Asymptotics of wide networks from feynman diagrams. In International Conference on Learning Representations, 2020. URL https://openreview.net/forum?id $\\equiv$ S1gFvANKDS. \nAnders Andreassen and Ethan Dyer. Asymptotics of wide convolutional neural networks. arxiv preprint arXiv:2008.08675, 2020. \nSho Yaida. Non-Gaussian processes and neural networks at finite widths. In Mathematical and Scientific Machine Learning Conference, 2020. \nR. Bennett. The intrinsic dimensionality of signal collections. IEEE Transactions on Information Theory, 15(5): 517–525, 1969. doi: 10.1109/TIT.1969.1054365. \nFrancesco Camastra and Antonino Staiano. Intrinsic dimension estimation: Advances and open problems. Information Sciences, 328:26–41, 2016. ISSN 0020-0255. doi: https://doi.org/10.1016/j.ins.2015.08.029. URL https://www.sciencedirect.com/science/article/pii/S0020025515006179. \nElena Facco, Maria d’Errico, Alex Rodriguez, and Alessandro Laio. Estimating the intrinsic dimension of datasets by a minimal neighborhood information. Scientific reports, 7(1):1–8, 2017. \nA. Ansuini, A. Laio, J. Macke, and D. Zoccolan. Intrinsic dimension of data representations in deep neural networks. In NeurIPS, 2019. \nIlia Sucholutsky and Matthias Schonlau. Soft-label dataset distillation and text dataset distillation. arXiv preprint arXiv:1910.02551, 2019. \nRadford M. Neal. Priors for infinite networks (tech. rep. no. crg-tr-94-1). University of Toronto, 1994. \nJaehoon Lee, Yasaman Bahri, Roman Novak, Sam Schoenholz, Jeffrey Pennington, and Jascha Sohl-dickstein. Deep neural networks as gaussian processes. In International Conference on Learning Representations, 2018. \nAlexander G. de G. Matthews, Jiri Hron, Mark Rowland, Richard E. Turner, and Zoubin Ghahramani. Gaussian process behaviour in wide deep neural networks. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 171, + 53, + 828, + 917 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Greg Yang. Scaling limits of wide neural networks with weight sharing: Gaussian process behavior, gradient independence, and neural tangent kernel derivation. arXiv preprint arXiv:1902.04760, 2019a. ", + "bbox": [ + 173, + 92, + 823, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Greg Yang. Wide feedforward or recurrent neural networks of any architecture are gaussian processes. In Advances in Neural Information Processing Systems, 2019b. ", + "bbox": [ + 174, + 127, + 823, + 154 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jiri Hron, Yasaman Bahri, Jascha Sohl-Dickstein, and Roman Novak. Infinite attention: NNGP and NTK for deep attention networks. In International Conference on Machine Learning, 2020. ", + "bbox": [ + 176, + 161, + 821, + 189 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lechao Xiao, Jeffrey Pennington, and Samuel S Schoenholz. Disentangling trainability and generalization in deep learning. In International Conference on Machine Learning, 2020. ", + "bbox": [ + 174, + 196, + 820, + 224 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ben Adlam and Jeffrey Pennington. The neural tangent kernel in high dimensions: Triple descent and a multi-scale theory of generalization. In International Conference on Machine Learning, pages 74–84. PMLR, 2020. ", + "bbox": [ + 173, + 233, + 823, + 271 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aitor Lewkowycz, Yasaman Bahri, Ethan Dyer, Jascha Sohl-Dickstein, and Guy Gur-Ari. The large learning rate phase of deep learning: the catapult mechanism. arXiv preprint arXiv:2003.02218, 2020. ", + "bbox": [ + 173, + 280, + 823, + 308 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aitor Lewkowycz and Guy Gur-Ari. On the training dynamics of deep networks with l_2 regularization. In Advances in Neural Information Processing Systems, volume 33, pages 4790–4799, 2020. ", + "bbox": [ + 173, + 315, + 823, + 343 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ben Adlam, Jaehoon Lee, Lechao Xiao, Jeffrey Pennington, and Jasper Snoek. Exploring the uncertainty properties of neural networks’ implicit priors in the infinite-width limit. In International Conference on Learning Representations, 2021. ", + "bbox": [ + 174, + 351, + 821, + 390 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Daniel S Park, Jaehoon Lee, Daiyi Peng, Yuan Cao, and Jascha Sohl-Dickstein. Towards nngp-guided neural architecture search. arXiv preprint arXiv:2011.06006, 2020. ", + "bbox": [ + 171, + 398, + 821, + 426 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Wuyang Chen, Xinyu Gong, and Zhangyang Wang. Neural architecture search on imagenet in four $\\{ { \\mathrm { g p u } } \\}$ hours: A theoretically inspired perspective. In International Conference on Learning Representations, 2021. ", + "bbox": [ + 174, + 433, + 823, + 462 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Amir Zandieh, Insu Han, Haim Avron, Neta Shoham, Chaewon Kim, and Jinwoo Shin. Scaling neural tangent kernels via sketching and random features. In Advances in Neural Information Processing Systems, 2021. ", + "bbox": [ + 173, + 468, + 823, + 496 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Joel Hestness, Sharan Narang, Newsha Ardalani, Gregory F. Diamos, Heewoo Jun, Hassan Kianinejad, Md. Mostofa Ali Patwary, Yang Yang, and Yanqi Zhou. Deep learning scaling is predictable, empirically. CoRR, abs/1712.00409, 2017. URL http://arxiv.org/abs/1712.00409. ", + "bbox": [ + 176, + 503, + 825, + 544 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jonathan S. Rosenfeld, Amir Rosenfeld, Yonatan Belinkov, and Nir Shavit. A constructive prediction of the generalization error across scales. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 173, + 553, + 823, + 579 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray, Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models, 2020. ", + "bbox": [ + 174, + 587, + 825, + 614 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yasaman Bahri, Ethan Dyer, Jared Kaplan, Jaehoon Lee, and Utkarsh Sharma. Explaining neural scaling laws. arXiv preprint arXiv:2102.06701, 2021. ", + "bbox": [ + 174, + 622, + 825, + 650 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ekin D. Cubuk, Barret Zoph, Dandelion Mane, Vijay Vasudevan, and Quoc V. Le. Autoaugment: Learning augmentation strategies from data. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), June 2019. ", + "bbox": [ + 173, + 657, + 825, + 696 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jascha Sohl-Dickstein, Roman Novak, Samuel S Schoenholz, and Jaehoon Lee. On the infinite width limit of neural networks with a standard parameterization. arXiv preprint arXiv:2001.07301, 2020. ", + "bbox": [ + 171, + 705, + 823, + 733 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/hXWPpJedrVP/hXWPpJedrVP_middle.json b/parse/train/hXWPpJedrVP/hXWPpJedrVP_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e38178f86d2eb75ec432e5ecf5ec1e37aa3ea8e0 --- /dev/null +++ b/parse/train/hXWPpJedrVP/hXWPpJedrVP_middle.json @@ -0,0 +1,31493 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 157, + 97, + 453, + 137 + ], + "lines": [ + { + "bbox": [ + 156, + 97, + 455, + 118 + ], + "spans": [ + { + "bbox": [ + 156, + 97, + 455, + 118 + ], + "score": 1.0, + "content": "Dataset Distillation with Infinitely Wide", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 215, + 118, + 396, + 136 + ], + "spans": [ + { + "bbox": [ + 215, + 118, + 396, + 136 + ], + "score": 1.0, + "content": "Convolutional Networks", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 130, + 175, + 213, + 188 + ], + "lines": [ + { + "bbox": [ + 128, + 174, + 213, + 189 + ], + "spans": [ + { + "bbox": [ + 128, + 174, + 213, + 189 + ], + "score": 1.0, + "content": "Timothy Nguyen† ∗", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 236, + 174, + 304, + 187 + ], + "lines": [ + { + "bbox": [ + 234, + 174, + 305, + 189 + ], + "spans": [ + { + "bbox": [ + 234, + 174, + 305, + 189 + ], + "score": 1.0, + "content": "Roman Novak♠", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 332, + 174, + 392, + 187 + ], + "lines": [ + { + "bbox": [ + 330, + 173, + 394, + 189 + ], + "spans": [ + { + "bbox": [ + 330, + 173, + 394, + 189 + ], + "score": 1.0, + "content": "Lechao Xiao♠", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 213, + 195, + 396, + 238 + ], + "lines": [ + { + "bbox": [ + 212, + 196, + 395, + 210 + ], + "spans": [ + { + "bbox": [ + 212, + 196, + 395, + 210 + ], + "score": 1.0, + "content": "DeepMind† Google Research, Brain Team♠", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 233, + 213, + 378, + 226 + ], + "spans": [ + { + "bbox": [ + 233, + 213, + 378, + 226 + ], + "score": 1.0, + "content": "timothycnguyen@deepmind.com", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 219, + 227, + 393, + 239 + ], + "spans": [ + { + "bbox": [ + 219, + 227, + 393, + 239 + ], + "score": 1.0, + "content": "{romann, xlc, jaehlee}@google.com", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 283, + 266, + 328, + 279 + ], + "lines": [ + { + "bbox": [ + 282, + 266, + 330, + 280 + ], + "spans": [ + { + "bbox": [ + 282, + 266, + 330, + 280 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 143, + 290, + 469, + 433 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 303 + ], + "score": 1.0, + "content": "The effectiveness of machine learning algorithms arises from being able to extract", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 300, + 471, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 471, + 315 + ], + "score": 1.0, + "content": "useful features from large amounts of data. As model and dataset sizes increase,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "dataset distillation methods that compress large datasets into significantly smaller", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "score": 1.0, + "content": "yet highly performant ones will become valuable in terms of training efficiency and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "useful feature extraction. To that end, we apply a novel distributed kernel-based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "score": 1.0, + "content": "meta-learning framework to achieve state-of-the-art results for dataset distillation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "using infinitely wide convolutional neural networks. For instance, using only 10", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 367, + 470, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 187, + 379 + ], + "score": 1.0, + "content": "datapoints", + "type": "text" + }, + { + "bbox": [ + 188, + 367, + 214, + 378 + ], + "score": 0.84, + "content": "0 . 0 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 367, + 352, + 379 + ], + "score": 1.0, + "content": "of original dataset), we obtain over", + "type": "text" + }, + { + "bbox": [ + 352, + 367, + 372, + 378 + ], + "score": 0.88, + "content": "65 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 367, + 470, + 379 + ], + "score": 1.0, + "content": "test accuracy on CIFAR-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "score": 1.0, + "content": "10 image classification task, a dramatic improvement over the previous best test", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 190, + 402 + ], + "score": 1.0, + "content": "accuracy of", + "type": "text" + }, + { + "bbox": [ + 190, + 389, + 209, + 399 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 389, + 470, + 402 + ], + "score": 1.0, + "content": ". Our state-of-the-art results extend across many other settings for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 399, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 470, + 412 + ], + "score": 1.0, + "content": "MNIST, Fashion-MNIST, CIFAR-10, CIFAR-100, and SVHN. Furthermore, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 411, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 424 + ], + "score": 1.0, + "content": "perform some preliminary analyses of our distilled datasets to shed light on how", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 421, + 309, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 309, + 435 + ], + "score": 1.0, + "content": "they differ from naturally occurring data.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 452, + 190, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 192, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 192, + 468 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "score": 1.0, + "content": "Deep learning has become extraordinarily successful in a wide variety of settings through the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "availability of large datasets [Krizhevsky et al., 2012, Devlin et al., 2018, Brown et al., 2020,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "Dosovitskiy et al., 2020]. Such large datasets enable a neural network to learn useful representations", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "of the data that are adapted to solving tasks of interest. Unfortunately, it can be prohibitively costly to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 520, + 454, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 454, + 533 + ], + "score": 1.0, + "content": "acquire such large datasets and train a neural network for the requisite amount of time.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 507, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 507, + 549 + ], + "score": 1.0, + "content": "One way to mitigate this problem is by constructing smaller datasets that are nevertheless informative.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "Some direct approaches to this include choosing a representative subset of the dataset (i.e. a coreset)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "or else performing a low-dimensional projection that reduces the number of features. However, such", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "methods typically introduce a tradeoff between performance and dataset size, since what they produce", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "is a coarse approximation of the full dataset. By contrast, the approach of dataset distillation is to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "synthesize datasets that are more informative than their natural counterparts when equalizing for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "dataset size [Wang et al., 2018, Bohdal et al., 2020, Nguyen et al., 2021, Zhao and Bilen, 2021]. Such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "resulting datasets will not arise from the distribution of natural images but will nevertheless capture", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "score": 1.0, + "content": "features useful to a neural network, a capability which remains mysterious and is far from being", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 635, + 447, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 447, + 648 + ], + "score": 1.0, + "content": "well-understood [Ilyas et al., 2019, Huh et al., 2016, Hermann and Lampinen, 2020].", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "The applications of such smaller, distilled datasets are diverse. For nonparametric methods that scale", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "poorly with the training dataset (e.g. nearest-neighbors or kernel-ridge regression), having a reduced", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "dataset decreases the associated memory and inference costs. For the training of neural networks,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "score": 1.0, + "content": "such distilled datasets have found several applications in the literature, including increasing the", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 703, + 259, + 713 + ], + "lines": [ + { + "bbox": [ + 118, + 701, + 261, + 715 + ], + "spans": [ + { + "bbox": [ + 118, + 701, + 261, + 715 + ], + "score": 1.0, + "content": "∗Work done while at Google Research.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 420, + 175, + 480, + 187 + ], + "lines": [ + { + "bbox": [ + 418, + 174, + 482, + 188 + ], + "spans": [ + { + "bbox": [ + 418, + 174, + 482, + 188 + ], + "score": 1.0, + "content": "Jaehoon Lee♠", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 157, + 97, + 453, + 137 + ], + "lines": [ + { + "bbox": [ + 156, + 97, + 455, + 118 + ], + "spans": [ + { + "bbox": [ + 156, + 97, + 455, + 118 + ], + "score": 1.0, + "content": "Dataset Distillation with Infinitely Wide", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 215, + 118, + 396, + 136 + ], + "spans": [ + { + "bbox": [ + 215, + 118, + 396, + 136 + ], + "score": 1.0, + "content": "Convolutional Networks", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 130, + 175, + 213, + 188 + ], + "lines": [ + { + "bbox": [ + 128, + 174, + 213, + 189 + ], + "spans": [ + { + "bbox": [ + 128, + 174, + 213, + 189 + ], + "score": 1.0, + "content": "Timothy Nguyen† ∗", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 236, + 174, + 304, + 187 + ], + "lines": [ + { + "bbox": [ + 234, + 174, + 305, + 189 + ], + "spans": [ + { + "bbox": [ + 234, + 174, + 305, + 189 + ], + "score": 1.0, + "content": "Roman Novak♠", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 234, + 174, + 305, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 332, + 174, + 392, + 187 + ], + "lines": [ + { + "bbox": [ + 330, + 173, + 394, + 189 + ], + "spans": [ + { + "bbox": [ + 330, + 173, + 394, + 189 + ], + "score": 1.0, + "content": "Lechao Xiao♠", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 330, + 173, + 394, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 213, + 195, + 396, + 238 + ], + "lines": [ + { + "bbox": [ + 212, + 196, + 395, + 210 + ], + "spans": [ + { + "bbox": [ + 212, + 196, + 395, + 210 + ], + "score": 1.0, + "content": "DeepMind† Google Research, Brain Team♠", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 233, + 213, + 378, + 226 + ], + "spans": [ + { + "bbox": [ + 233, + 213, + 378, + 226 + ], + "score": 1.0, + "content": "timothycnguyen@deepmind.com", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 219, + 227, + 393, + 239 + ], + "spans": [ + { + "bbox": [ + 219, + 227, + 393, + 239 + ], + "score": 1.0, + "content": "{romann, xlc, jaehlee}@google.com", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 212, + 196, + 395, + 239 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 266, + 328, + 279 + ], + "lines": [ + { + "bbox": [ + 282, + 266, + 330, + 280 + ], + "spans": [ + { + "bbox": [ + 282, + 266, + 330, + 280 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 143, + 290, + 469, + 433 + ], + "lines": [ + { + "bbox": [ + 142, + 290, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 142, + 290, + 469, + 303 + ], + "score": 1.0, + "content": "The effectiveness of machine learning algorithms arises from being able to extract", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 300, + 471, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 471, + 315 + ], + "score": 1.0, + "content": "useful features from large amounts of data. As model and dataset sizes increase,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "dataset distillation methods that compress large datasets into significantly smaller", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "spans": [ + { + "bbox": [ + 141, + 323, + 470, + 335 + ], + "score": 1.0, + "content": "yet highly performant ones will become valuable in terms of training efficiency and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 470, + 347 + ], + "score": 1.0, + "content": "useful feature extraction. To that end, we apply a novel distributed kernel-based", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 357 + ], + "score": 1.0, + "content": "meta-learning framework to achieve state-of-the-art results for dataset distillation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "using infinitely wide convolutional neural networks. For instance, using only 10", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 367, + 470, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 187, + 379 + ], + "score": 1.0, + "content": "datapoints", + "type": "text" + }, + { + "bbox": [ + 188, + 367, + 214, + 378 + ], + "score": 0.84, + "content": "0 . 0 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 367, + 352, + 379 + ], + "score": 1.0, + "content": "of original dataset), we obtain over", + "type": "text" + }, + { + "bbox": [ + 352, + 367, + 372, + 378 + ], + "score": 0.88, + "content": "65 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 367, + 470, + 379 + ], + "score": 1.0, + "content": "test accuracy on CIFAR-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 391 + ], + "score": 1.0, + "content": "10 image classification task, a dramatic improvement over the previous best test", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 389, + 470, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 190, + 402 + ], + "score": 1.0, + "content": "accuracy of", + "type": "text" + }, + { + "bbox": [ + 190, + 389, + 209, + 399 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 389, + 470, + 402 + ], + "score": 1.0, + "content": ". Our state-of-the-art results extend across many other settings for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 399, + 470, + 412 + ], + "spans": [ + { + "bbox": [ + 141, + 399, + 470, + 412 + ], + "score": 1.0, + "content": "MNIST, Fashion-MNIST, CIFAR-10, CIFAR-100, and SVHN. Furthermore, we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 411, + 470, + 424 + ], + "spans": [ + { + "bbox": [ + 141, + 411, + 470, + 424 + ], + "score": 1.0, + "content": "perform some preliminary analyses of our distilled datasets to shed light on how", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 421, + 309, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 309, + 435 + ], + "score": 1.0, + "content": "they differ from naturally occurring data.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15, + "bbox_fs": [ + 141, + 290, + 471, + 435 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 452, + 190, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 192, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 192, + 468 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "score": 1.0, + "content": "Deep learning has become extraordinarily successful in a wide variety of settings through the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "availability of large datasets [Krizhevsky et al., 2012, Devlin et al., 2018, Brown et al., 2020,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "Dosovitskiy et al., 2020]. Such large datasets enable a neural network to learn useful representations", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 523 + ], + "score": 1.0, + "content": "of the data that are adapted to solving tasks of interest. Unfortunately, it can be prohibitively costly to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 520, + 454, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 454, + 533 + ], + "score": 1.0, + "content": "acquire such large datasets and train a neural network for the requisite amount of time.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 477, + 505, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 507, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 507, + 549 + ], + "score": 1.0, + "content": "One way to mitigate this problem is by constructing smaller datasets that are nevertheless informative.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "Some direct approaches to this include choosing a representative subset of the dataset (i.e. a coreset)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "or else performing a low-dimensional projection that reduces the number of features. However, such", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "methods typically introduce a tradeoff between performance and dataset size, since what they produce", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "is a coarse approximation of the full dataset. By contrast, the approach of dataset distillation is to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "synthesize datasets that are more informative than their natural counterparts when equalizing for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "dataset size [Wang et al., 2018, Bohdal et al., 2020, Nguyen et al., 2021, Zhao and Bilen, 2021]. Such", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "resulting datasets will not arise from the distribution of natural images but will nevertheless capture", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "score": 1.0, + "content": "features useful to a neural network, a capability which remains mysterious and is far from being", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 635, + 447, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 447, + 648 + ], + "score": 1.0, + "content": "well-understood [Ilyas et al., 2019, Huh et al., 2016, Hermann and Lampinen, 2020].", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 536, + 507, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 651, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "The applications of such smaller, distilled datasets are diverse. For nonparametric methods that scale", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "poorly with the training dataset (e.g. nearest-neighbors or kernel-ridge regression), having a reduced", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 505, + 686 + ], + "score": 1.0, + "content": "dataset decreases the associated memory and inference costs. For the training of neural networks,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 505, + 696 + ], + "score": 1.0, + "content": "such distilled datasets have found several applications in the literature, including increasing the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "effectiveness of replay methods in continual learning [Borsos et al., 2020] and helping to accelerate", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 382, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 382, + 96 + ], + "score": 1.0, + "content": "neural architecture search [Zhao et al., 2021, Zhao and Bilen, 2021].", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 652, + 505, + 696 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 73, + 504, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 85 + ], + "score": 1.0, + "content": "effectiveness of replay methods in continual learning [Borsos et al., 2020] and helping to accelerate", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 382, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 382, + 96 + ], + "score": 1.0, + "content": "neural architecture search [Zhao et al., 2021, Zhao and Bilen, 2021].", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "In this paper, we perform a large-scale extension of the methods of Nguyen et al. [2021] to obtain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "new state-of-the-art (SOTA) dataset distillation results. Specifically, we apply the algorithms KIP", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "(Kernel Inducing Points) and LS (Label Solve), first developed in Nguyen et al. [2021], to infinitely", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "wide convolutional networks by implementing a novel, distributed meta-learning framework that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "score": 1.0, + "content": "draws upon hundreds of accelerators per training. The need for such resources is necessitated by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "the computational costs of using infinitely wide neural networks built out of components occurring", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 504, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 422, + 177 + ], + "score": 1.0, + "content": "in modern image classification models: convolutional and pooling layers (see", + "type": "text" + }, + { + "bbox": [ + 423, + 166, + 435, + 176 + ], + "score": 0.82, + "content": "\\ S _ { \\mathrm { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 165, + 504, + 177 + ], + "score": 1.0, + "content": "for details). The", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "consequence is that we obtain distilled datasets that are effective for both kernel ridge-regression and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 186, + 205, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 205, + 201 + ], + "score": 1.0, + "content": "neural network training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 203, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "Additionally, we initiate a preliminary study of the images and labels which KIP learns. We provide", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "a visual and quantitative analysis of the data learned and find some surprising results concerning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "their interpretability and their dimensional and spectral properties. Given the efficacy of KIP and LS", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "learned data, we believe a better understanding of them would aid in the understanding of feature", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 246, + 221, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 221, + 261 + ], + "score": 1.0, + "content": "learning in neural networks.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 298, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 299, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 299, + 276 + ], + "score": 1.0, + "content": "To summarize, our contributions are as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 129, + 285, + 506, + 437 + ], + "lines": [ + { + "bbox": [ + 131, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 131, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "1. We achieve SOTA dataset distillation results on a wide variety of datasets (MNIST, Fashion-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 296, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 506, + 308 + ], + "score": 1.0, + "content": "MNIST, SVHN, CIFAR-10, CIFAR-100) for both kernel ridge-regression and neural network", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "training. In several instances, our results achieve an impressively wide margin over prior", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 216, + 331 + ], + "score": 1.0, + "content": "art, including over", + "type": "text" + }, + { + "bbox": [ + 217, + 318, + 236, + 329 + ], + "score": 0.9, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 317, + 254, + 331 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 318, + 273, + 329 + ], + "score": 0.87, + "content": "37 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "absolute gain in accuracy on CIFAR-10 and SVHN image", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 329, + 439, + 341 + ], + "spans": [ + { + "bbox": [ + 142, + 329, + 439, + 341 + ], + "score": 1.0, + "content": "classification, respectively, when using only 10 images (Tables 1, 2, A11).", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 128, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 128, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "2. We develop a novel, distributed meta-learning framework specifically tailored to the compu-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 358, + 361, + 370 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 361, + 370 + ], + "score": 1.0, + "content": "tational burdens of sophisticated neural kernels (§2.1).", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 128, + 375, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 128, + 375, + 506, + 387 + ], + "score": 1.0, + "content": "3. We highlight and analyze some of the peculiar features of the distilled datasets we obtain,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 386, + 344, + 398 + ], + "spans": [ + { + "bbox": [ + 142, + 386, + 344, + 398 + ], + "score": 1.0, + "content": "illustrating how they differ from natural data (§4).", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 129, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 129, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "4. We open source the distilled datasets, which used thousands of GPU hours, for the re-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 415, + 504, + 426 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 504, + 426 + ], + "score": 1.0, + "content": "search community to further investigate at https://github.com/google-research/", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 425, + 309, + 438 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 309, + 438 + ], + "score": 1.0, + "content": "google-research/tree/master/kip.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 455, + 155, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 452, + 158, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 158, + 473 + ], + "score": 1.0, + "content": "2 Setup", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 493 + ], + "score": 1.0, + "content": "Background on infinitely wide convolutional networks. Recent literature has established that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "Bayesian and gradient-descent trained neural networks converge to Gaussian Processes (GP) as the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 502, + 507, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 394, + 517 + ], + "score": 1.0, + "content": "number of hidden units in intermediary layers approaches infinity (see", + "type": "text" + }, + { + "bbox": [ + 394, + 504, + 406, + 515 + ], + "score": 0.63, + "content": "\\ S 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 502, + 507, + 517 + ], + "score": 1.0, + "content": "). These results hold for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "many different architectures, including convolutional networks, which converge to a particular GP", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "in the limit of infinite channels [Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019].", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Bayesian networks are described by the Neural Network Gaussian Process (NNGP) kernel, while", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "gradient descent networks are described by the Neural Tangent Kernel (NTK). Since we are interested", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "in synthesizing datasets that can be used with both kernel methods and common gradient-descent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 331, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 331, + 580 + ], + "score": 1.0, + "content": "trained neural networks, we focus on NTK in this work.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "Infinitely wide networks have been shown to achieve SOTA (among non-parametric kernels) results", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "on image classification tasks [Novak et al., 2019, Arora et al., 2019, Li et al., 2019, Shankar et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "2020, Bietti, 2021] and even rival finite-width networks in certain settings [Arora et al., 2020, Lee", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 618, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 629 + ], + "score": 1.0, + "content": "et al., 2020]. This makes such kernels especially suitable for our task. As convolutional models,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 629, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 504, + 640 + ], + "score": 1.0, + "content": "they encode useful inductive biases of locality and translation invariance [Novak et al., 2019], which", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 640, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 504, + 651 + ], + "score": 1.0, + "content": "enable good generalization. Moreover, flexible and efficient computation of these kernels are possible", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 651, + 325, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 325, + 662 + ], + "score": 1.0, + "content": "due to the Neural Tangent library [Novak et al., 2020].", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "Specific models considered. The central neural network (and corresponding infinite-width model)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "we consider is a simple 4-layer convolutional network with average pooling layers that we refer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "to as ConvNet throughout the text. This architecture is a slightly modified version of the default", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "model used by Zhao and Bilen [2021], Zhao et al. [2021] and was chosen for ease of baselining (see", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 120, + 722 + ], + "score": 0.75, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "for details). In several other settings we also consider convolutional networks without pooling", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 73, + 504, + 95 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 72, + 505, + 96 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 100, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 112 + ], + "score": 1.0, + "content": "In this paper, we perform a large-scale extension of the methods of Nguyen et al. [2021] to obtain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 124 + ], + "score": 1.0, + "content": "new state-of-the-art (SOTA) dataset distillation results. Specifically, we apply the algorithms KIP", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 505, + 134 + ], + "score": 1.0, + "content": "(Kernel Inducing Points) and LS (Label Solve), first developed in Nguyen et al. [2021], to infinitely", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "wide convolutional networks by implementing a novel, distributed meta-learning framework that", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 157 + ], + "score": 1.0, + "content": "draws upon hundreds of accelerators per training. The need for such resources is necessitated by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "the computational costs of using infinitely wide neural networks built out of components occurring", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 165, + 504, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 422, + 177 + ], + "score": 1.0, + "content": "in modern image classification models: convolutional and pooling layers (see", + "type": "text" + }, + { + "bbox": [ + 423, + 166, + 435, + 176 + ], + "score": 0.82, + "content": "\\ S _ { \\mathrm { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 165, + 504, + 177 + ], + "score": 1.0, + "content": "for details). The", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 190 + ], + "score": 1.0, + "content": "consequence is that we obtain distilled datasets that are effective for both kernel ridge-regression and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 186, + 205, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 205, + 201 + ], + "score": 1.0, + "content": "neural network training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 100, + 506, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 203, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "Additionally, we initiate a preliminary study of the images and labels which KIP learns. We provide", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 104, + 213, + 505, + 228 + ], + "score": 1.0, + "content": "a visual and quantitative analysis of the data learned and find some surprising results concerning", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "their interpretability and their dimensional and spectral properties. Given the efficacy of KIP and LS", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "learned data, we believe a better understanding of them would aid in the understanding of feature", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 246, + 221, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 221, + 261 + ], + "score": 1.0, + "content": "learning in neural networks.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 204, + 506, + 261 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 263, + 298, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 263, + 299, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 299, + 276 + ], + "score": 1.0, + "content": "To summarize, our contributions are as follows:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 263, + 299, + 276 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 285, + 506, + 437 + ], + "lines": [ + { + "bbox": [ + 131, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 131, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "1. We achieve SOTA dataset distillation results on a wide variety of datasets (MNIST, Fashion-", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 296, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 296, + 506, + 308 + ], + "score": 1.0, + "content": "MNIST, SVHN, CIFAR-10, CIFAR-100) for both kernel ridge-regression and neural network", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 141, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "training. In several instances, our results achieve an impressively wide margin over prior", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 317, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 216, + 331 + ], + "score": 1.0, + "content": "art, including over", + "type": "text" + }, + { + "bbox": [ + 217, + 318, + 236, + 329 + ], + "score": 0.9, + "content": "2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 317, + 254, + 331 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 254, + 318, + 273, + 329 + ], + "score": 0.87, + "content": "37 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 317, + 506, + 331 + ], + "score": 1.0, + "content": "absolute gain in accuracy on CIFAR-10 and SVHN image", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 329, + 439, + 341 + ], + "spans": [ + { + "bbox": [ + 142, + 329, + 439, + 341 + ], + "score": 1.0, + "content": "classification, respectively, when using only 10 images (Tables 1, 2, A11).", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 345, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 128, + 345, + 506, + 359 + ], + "score": 1.0, + "content": "2. We develop a novel, distributed meta-learning framework specifically tailored to the compu-", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 358, + 361, + 370 + ], + "spans": [ + { + "bbox": [ + 142, + 358, + 361, + 370 + ], + "score": 1.0, + "content": "tational burdens of sophisticated neural kernels (§2.1).", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 375, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 128, + 375, + 506, + 387 + ], + "score": 1.0, + "content": "3. We highlight and analyze some of the peculiar features of the distilled datasets we obtain,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 386, + 344, + 398 + ], + "spans": [ + { + "bbox": [ + 142, + 386, + 344, + 398 + ], + "score": 1.0, + "content": "illustrating how they differ from natural data (§4).", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 129, + 403, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 129, + 403, + 506, + 415 + ], + "score": 1.0, + "content": "4. We open source the distilled datasets, which used thousands of GPU hours, for the re-", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 415, + 504, + 426 + ], + "spans": [ + { + "bbox": [ + 141, + 415, + 504, + 426 + ], + "score": 1.0, + "content": "search community to further investigate at https://github.com/google-research/", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 425, + 309, + 438 + ], + "spans": [ + { + "bbox": [ + 141, + 425, + 309, + 438 + ], + "score": 1.0, + "content": "google-research/tree/master/kip.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 128, + 285, + 506, + 438 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 455, + 155, + 468 + ], + "lines": [ + { + "bbox": [ + 104, + 452, + 158, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 158, + 473 + ], + "score": 1.0, + "content": "2 Setup", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 506, + 493 + ], + "score": 1.0, + "content": "Background on infinitely wide convolutional networks. Recent literature has established that", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "Bayesian and gradient-descent trained neural networks converge to Gaussian Processes (GP) as the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 502, + 507, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 394, + 517 + ], + "score": 1.0, + "content": "number of hidden units in intermediary layers approaches infinity (see", + "type": "text" + }, + { + "bbox": [ + 394, + 504, + 406, + 515 + ], + "score": 0.63, + "content": "\\ S 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 502, + 507, + 517 + ], + "score": 1.0, + "content": "). These results hold for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "many different architectures, including convolutional networks, which converge to a particular GP", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "in the limit of infinite channels [Novak et al., 2019, Garriga-Alonso et al., 2019, Arora et al., 2019].", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "Bayesian networks are described by the Neural Network Gaussian Process (NNGP) kernel, while", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "gradient descent networks are described by the Neural Tangent Kernel (NTK). Since we are interested", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "in synthesizing datasets that can be used with both kernel methods and common gradient-descent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 569, + 331, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 331, + 580 + ], + "score": 1.0, + "content": "trained neural networks, we focus on NTK in this work.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 482, + 507, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "Infinitely wide networks have been shown to achieve SOTA (among non-parametric kernels) results", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "on image classification tasks [Novak et al., 2019, Arora et al., 2019, Li et al., 2019, Shankar et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "2020, Bietti, 2021] and even rival finite-width networks in certain settings [Arora et al., 2020, Lee", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 618, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 629 + ], + "score": 1.0, + "content": "et al., 2020]. This makes such kernels especially suitable for our task. As convolutional models,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 629, + 504, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 504, + 640 + ], + "score": 1.0, + "content": "they encode useful inductive biases of locality and translation invariance [Novak et al., 2019], which", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 640, + 504, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 504, + 651 + ], + "score": 1.0, + "content": "enable good generalization. Moreover, flexible and efficient computation of these kernels are possible", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 651, + 325, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 325, + 662 + ], + "score": 1.0, + "content": "due to the Neural Tangent library [Novak et al., 2020].", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 585, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 679 + ], + "score": 1.0, + "content": "Specific models considered. The central neural network (and corresponding infinite-width model)", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "we consider is a simple 4-layer convolutional network with average pooling layers that we refer", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "to as ConvNet throughout the text. This architecture is a slightly modified version of the default", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 713 + ], + "score": 1.0, + "content": "model used by Zhao and Bilen [2021], Zhao et al. [2021] and was chosen for ease of baselining (see", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 120, + 722 + ], + "score": 0.75, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "for details). In several other settings we also consider convolutional networks without pooling", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers ConvVec,2 and networks with no convolutions and only fully-connected layers FC. Depth of", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 455, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 455, + 96 + ], + "score": 1.0, + "content": "architecture (as measured by number of hidden layers) is indicated by an integer suffix.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 666, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 505, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "layers ConvVec,2 and networks with no convolutions and only fully-connected layers FC. Depth of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 455, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 455, + 96 + ], + "score": 1.0, + "content": "architecture (as measured by number of hidden layers) is indicated by an integer suffix.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 506, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 506, + 113 + ], + "score": 1.0, + "content": "Background on algorithms. We review the Kernel Inducing Points (KIP) and Label Solve (LS)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 354, + 124 + ], + "score": 1.0, + "content": "algorithms introduced by Nguyen et al. [2021]. Given a kernel", + "type": "text" + }, + { + "bbox": [ + 355, + 111, + 365, + 121 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 110, + 506, + 124 + ], + "score": 1.0, + "content": ", the kernel ridge-regression (KRR)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 487, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 273, + 135 + ], + "score": 1.0, + "content": "loss function trained on a support dataset", + "type": "text" + }, + { + "bbox": [ + 273, + 122, + 308, + 134 + ], + "score": 0.92, + "content": "( X _ { s } , y _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 121, + 442, + 135 + ], + "score": 1.0, + "content": "and evaluated on a target dataset", + "type": "text" + }, + { + "bbox": [ + 442, + 122, + 475, + 133 + ], + "score": 0.93, + "content": "( X _ { t } , y _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 121, + 487, + 135 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 137, + 412, + 160 + ], + "lines": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "spans": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "score": 0.91, + "content": "L ( X _ { s } , y _ { s } ) = \\frac { 1 } { 2 } \\left\\| y _ { t } - K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } y _ { s } \\right\\| _ { 2 } ^ { 2 } ,", + "type": "interline_equation", + "image_path": "4d09c5178edafa32325041f77ec541c226a9c85f24857929893b13d7a3119d0d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 142, + 178 + ], + "score": 1.0, + "content": "where if", + "type": "text" + }, + { + "bbox": [ + 142, + 166, + 151, + 175 + ], + "score": 0.84, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 164, + 169, + 178 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 166, + 178, + 175 + ], + "score": 0.82, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 164, + 214, + 178 + ], + "score": 1.0, + "content": "are sets,", + "type": "text" + }, + { + "bbox": [ + 215, + 165, + 237, + 177 + ], + "score": 0.91, + "content": "K _ { U V }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 164, + 368, + 178 + ], + "score": 1.0, + "content": "is the matrix of kernel elements", + "type": "text" + }, + { + "bbox": [ + 369, + 165, + 444, + 177 + ], + "score": 0.9, + "content": "( K ( u , v ) ) _ { u \\in U , v \\in V }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 164, + 470, + 178 + ], + "score": 1.0, + "content": ". Here", + "type": "text" + }, + { + "bbox": [ + 470, + 166, + 495, + 176 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "a fixed regularization parameter. The KIP algorithm consists of minimizing (1) with respect to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 214, + 199 + ], + "score": 1.0, + "content": "support set (either just the", + "type": "text" + }, + { + "bbox": [ + 214, + 187, + 227, + 198 + ], + "score": 0.89, + "content": "X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 186, + 326, + 199 + ], + "score": 1.0, + "content": "or along with the labels", + "type": "text" + }, + { + "bbox": [ + 326, + 188, + 337, + 199 + ], + "score": 0.82, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 186, + 415, + 199 + ], + "score": 1.0, + "content": "). Here, we sample", + "type": "text" + }, + { + "bbox": [ + 415, + 187, + 449, + 199 + ], + "score": 0.92, + "content": "( X _ { t } , y _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "from a target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 136, + 211 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 137, + 199, + 146, + 208 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "at every (meta)step, and update the support set using gradient-based methods. Additional", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 240, + 222 + ], + "score": 1.0, + "content": "variations include augmenting the", + "type": "text" + }, + { + "bbox": [ + 240, + 210, + 253, + 220 + ], + "score": 0.89, + "content": "X _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 208, + 370, + 222 + ], + "score": 1.0, + "content": "or sampling a different kernel", + "type": "text" + }, + { + "bbox": [ + 371, + 209, + 381, + 219 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "(from a fixed family of kernels)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 218, + 158, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 158, + 233 + ], + "score": 1.0, + "content": "at each step.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 104, + 233, + 502, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 492, + 251 + ], + "score": 1.0, + "content": "The Label Solve algorithm consists of solving for the least-norm minimizer of (1) with respect to", + "type": "text" + }, + { + "bbox": [ + 493, + 239, + 502, + 248 + ], + "score": 0.85, + "content": "y _ { s }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 246, + 194, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 194, + 259 + ], + "score": 1.0, + "content": "This yields the labels", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 263, + 380, + 285 + ], + "lines": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "spans": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "score": 0.93, + "content": "y _ { s } ^ { * } = \\Big ( K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } \\Big ) ^ { + } y _ { t } ,", + "type": "interline_equation", + "image_path": "6400c985b95cd910d952871747652b49009ec08e5b543a0d2f75cb6d00886af7.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 133, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 147, + 302 + ], + "score": 0.89, + "content": "A ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 290, + 316, + 304 + ], + "score": 1.0, + "content": "denotes the pseudo-inverse of the matrix", + "type": "text" + }, + { + "bbox": [ + 316, + 292, + 325, + 302 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 290, + 390, + 304 + ], + "score": 1.0, + "content": ". Note that here", + "type": "text" + }, + { + "bbox": [ + 390, + 291, + 444, + 303 + ], + "score": 0.92, + "content": "( X _ { t } , y _ { t } ) = \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 290, + 506, + 304 + ], + "score": 1.0, + "content": ", i.e. the labels", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 256, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 256, + 315 + ], + "score": 1.0, + "content": "are solved using the whole target set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 356, + 330 + ], + "score": 1.0, + "content": "In our applications of KIP and Label Solve, the target dataset", + "type": "text" + }, + { + "bbox": [ + 356, + 319, + 366, + 329 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 319, + 504, + 330 + ], + "score": 1.0, + "content": "is always significantly larger than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 167, + 342 + ], + "score": 1.0, + "content": "the support set", + "type": "text" + }, + { + "bbox": [ + 168, + 330, + 203, + 342 + ], + "score": 0.92, + "content": "( X _ { s } , y _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 330, + 505, + 342 + ], + "score": 1.0, + "content": ". Hence, the learned support set or solved labels can be regarded as distilled", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 341, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 353 + ], + "score": 1.0, + "content": "versions of their respective targets. We also initialize our support images to be a subset of natural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 330, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 330, + 365 + ], + "score": 1.0, + "content": "images, though they could also be initialized randomly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 365, + 381 + ], + "score": 1.0, + "content": "Based on the infinite-width correspondence outlined above and in", + "type": "text" + }, + { + "bbox": [ + 365, + 369, + 375, + 379 + ], + "score": 0.55, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 366, + 506, + 381 + ], + "score": 1.0, + "content": ", dataset distillation using KIP or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 506, + 392 + ], + "score": 1.0, + "content": "LS that is optimized for KRR should extend to the corresponding finite-width neural network training.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 389, + 416, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 217, + 402 + ], + "score": 1.0, + "content": "Our experimental results in", + "type": "text" + }, + { + "bbox": [ + 218, + 390, + 229, + 401 + ], + "score": 0.57, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 389, + 416, + 402 + ], + "score": 1.0, + "content": "validate this expectation across many settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 413, + 284, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 284, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 284, + 427 + ], + "score": 1.0, + "content": "2.1 Client-Server Distributed Workflow", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "We invoke a client-server model of distributed computation3, in which a server distributes independent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 444, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 457 + ], + "score": 1.0, + "content": "workloads to a large pool of client workers that share a queue for receiving and sending work. Our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 396, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 396, + 469 + ], + "score": 1.0, + "content": "distributed implementation of the KIP algorithm has two distinct stages:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 504, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 455, + 485 + ], + "score": 1.0, + "content": "Forward pass: In this step, we compute the support-support and target-support matrices", + "type": "text" + }, + { + "bbox": [ + 455, + 472, + 504, + 484 + ], + "score": 0.91, + "content": "K ( X _ { s } , X _ { s } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 123, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 484, + 171, + 497 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 484, + 262, + 497 + ], + "score": 1.0, + "content": ". To do so, we partition", + "type": "text" + }, + { + "bbox": [ + 262, + 485, + 299, + 496 + ], + "score": 0.92, + "content": "X _ { s } \\times X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 484, + 316, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 317, + 485, + 353, + 496 + ], + "score": 0.92, + "content": "X _ { t } \\times X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 484, + 433, + 497 + ], + "score": 1.0, + "content": "into pairs of images", + "type": "text" + }, + { + "bbox": [ + 434, + 483, + 461, + 497 + ], + "score": 0.92, + "content": "( x , x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 484, + 505, + 497 + ], + "score": 1.0, + "content": ", each with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 150, + 510 + ], + "score": 1.0, + "content": "batch size", + "type": "text" + }, + { + "bbox": [ + 150, + 498, + 159, + 507 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 497, + 444, + 510 + ], + "score": 1.0, + "content": ". We send such pairs to workers compute the respective matrix block", + "type": "text" + }, + { + "bbox": [ + 444, + 496, + 481, + 509 + ], + "score": 0.93, + "content": "K ( \\boldsymbol { x } , \\boldsymbol { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 497, + 505, + 510 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 508, + 449, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 294, + 521 + ], + "score": 1.0, + "content": "server aggregates all these blocks to obtain the", + "type": "text" + }, + { + "bbox": [ + 295, + 508, + 343, + 520 + ], + "score": 0.93, + "content": "K ( \\bar { X } _ { s } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 508, + 361, + 521 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 361, + 508, + 408, + 520 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 508, + 449, + 521 + ], + "score": 1.0, + "content": "matrices.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 405, + 538 + ], + "score": 1.0, + "content": "Backward pass: In this step, we need to compute the gradient of the loss", + "type": "text" + }, + { + "bbox": [ + 405, + 525, + 413, + 535 + ], + "score": 0.7, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "(1) with respect to the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 153, + 549 + ], + "score": 1.0, + "content": "support set", + "type": "text" + }, + { + "bbox": [ + 154, + 536, + 167, + 547 + ], + "score": 0.89, + "content": "X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 535, + 267, + 549 + ], + "score": 1.0, + "content": ". We need only consider", + "type": "text" + }, + { + "bbox": [ + 267, + 536, + 304, + 547 + ], + "score": 0.92, + "content": "\\partial L / \\partial { \\bar { X } } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 535, + 329, + 549 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 329, + 536, + 363, + 547 + ], + "score": 0.93, + "content": "\\partial L / \\partial y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "is cheap to compute. By the chain", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 547, + 180, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 180, + 558 + ], + "score": 1.0, + "content": "rule, we can write", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 561, + 450, + 589 + ], + "lines": [ + { + "bbox": [ + 161, + 561, + 450, + 589 + ], + "spans": [ + { + "bbox": [ + 161, + 561, + 450, + 589 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial X _ { s } } = \\frac { \\partial L } { \\partial ( K ( X _ { s } , X _ { s } ) ) } \\frac { \\partial K ( X _ { s } , X _ { s } ) } { \\partial X _ { s } } + \\frac { \\partial L } { \\partial ( K ( X _ { t } , X _ { s } ) ) } \\frac { \\partial K ( X _ { t } , X _ { s } ) } { \\partial X _ { s } } .", + "type": "interline_equation", + "image_path": "a0223d220bd86139fdd8c7685f0a6f5ec74cfdd88e27573f6f19316bb7fbcc1f.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 161, + 561, + 450, + 570.3333333333334 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 161, + 570.3333333333334, + 450, + 579.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 161, + 579.6666666666667, + 450, + 589.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 506, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 185, + 605 + ], + "score": 1.0, + "content": "The derivatives of", + "type": "text" + }, + { + "bbox": [ + 185, + 593, + 193, + 603 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 592, + 439, + 605 + ], + "score": 1.0, + "content": "with respect to the kernel matrices are inexpensive, since", + "type": "text" + }, + { + "bbox": [ + 439, + 594, + 447, + 603 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "depends in a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "score": 1.0, + "content": "simple way on them (matrix multiplication and inversion). What is expensive to compute is the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "derivative of the kernel matrices with respect to the inputs. Each kernel element is an independent", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 627, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 637 + ], + "score": 1.0, + "content": "function of the inputs and a naive computation of the derivative of a block would require forward-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "mode differentiation, infeasible due to the size of the input images and the cost to compute the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "individual kernel elements. Thus our main novelty is to divide up the gradient computation into", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 456, + 671 + ], + "score": 1.0, + "content": "backward differentiation sub-computations, specifically by using the built-in function", + "type": "text" + }, + { + "bbox": [ + 456, + 659, + 493, + 670 + ], + "score": 0.85, + "content": "{ \\mathrm { j a x . v j p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 259, + 682 + ], + "score": 1.0, + "content": "JAX [Bradbury et al., 2018]. Denoting", + "type": "text" + }, + { + "bbox": [ + 259, + 669, + 329, + 681 + ], + "score": 0.93, + "content": "K = K \\bar { ( } X _ { s } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 669, + 341, + 682 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 341, + 669, + 388, + 681 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "for short-hand, we divide the", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 690, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 118, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 118, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "2The abbreviation “Vec” stands for vectorization, to indicate that activations of the network are vectorized", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 700, + 365, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 365, + 710 + ], + "score": 1.0, + "content": "(flattened) before the top fully-connected layer instead of being pooled.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 709, + 445, + 724 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 445, + 724 + ], + "score": 1.0, + "content": "3Implemented using Courier available at https://github.com/deepmind/launchpad.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 72, + 505, + 95 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 72, + 506, + 96 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 506, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 506, + 113 + ], + "score": 1.0, + "content": "Background on algorithms. We review the Kernel Inducing Points (KIP) and Label Solve (LS)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 110, + 506, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 354, + 124 + ], + "score": 1.0, + "content": "algorithms introduced by Nguyen et al. [2021]. Given a kernel", + "type": "text" + }, + { + "bbox": [ + 355, + 111, + 365, + 121 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 110, + 506, + 124 + ], + "score": 1.0, + "content": ", the kernel ridge-regression (KRR)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 487, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 273, + 135 + ], + "score": 1.0, + "content": "loss function trained on a support dataset", + "type": "text" + }, + { + "bbox": [ + 273, + 122, + 308, + 134 + ], + "score": 0.92, + "content": "( X _ { s } , y _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 121, + 442, + 135 + ], + "score": 1.0, + "content": "and evaluated on a target dataset", + "type": "text" + }, + { + "bbox": [ + 442, + 122, + 475, + 133 + ], + "score": 0.93, + "content": "( X _ { t } , y _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 121, + 487, + 135 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 98, + 506, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 137, + 412, + 160 + ], + "lines": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "spans": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "score": 0.91, + "content": "L ( X _ { s } , y _ { s } ) = \\frac { 1 } { 2 } \\left\\| y _ { t } - K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } y _ { s } \\right\\| _ { 2 } ^ { 2 } ,", + "type": "interline_equation", + "image_path": "4d09c5178edafa32325041f77ec541c226a9c85f24857929893b13d7a3119d0d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 198, + 137, + 412, + 160 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 142, + 178 + ], + "score": 1.0, + "content": "where if", + "type": "text" + }, + { + "bbox": [ + 142, + 166, + 151, + 175 + ], + "score": 0.84, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 164, + 169, + 178 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 169, + 166, + 178, + 175 + ], + "score": 0.82, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 164, + 214, + 178 + ], + "score": 1.0, + "content": "are sets,", + "type": "text" + }, + { + "bbox": [ + 215, + 165, + 237, + 177 + ], + "score": 0.91, + "content": "K _ { U V }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 164, + 368, + 178 + ], + "score": 1.0, + "content": "is the matrix of kernel elements", + "type": "text" + }, + { + "bbox": [ + 369, + 165, + 444, + 177 + ], + "score": 0.9, + "content": "( K ( u , v ) ) _ { u \\in U , v \\in V }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 164, + 470, + 178 + ], + "score": 1.0, + "content": ". Here", + "type": "text" + }, + { + "bbox": [ + 470, + 166, + 495, + 176 + ], + "score": 0.89, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 164, + 506, + 178 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "a fixed regularization parameter. The KIP algorithm consists of minimizing (1) with respect to the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 214, + 199 + ], + "score": 1.0, + "content": "support set (either just the", + "type": "text" + }, + { + "bbox": [ + 214, + 187, + 227, + 198 + ], + "score": 0.89, + "content": "X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 186, + 326, + 199 + ], + "score": 1.0, + "content": "or along with the labels", + "type": "text" + }, + { + "bbox": [ + 326, + 188, + 337, + 199 + ], + "score": 0.82, + "content": "y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 186, + 415, + 199 + ], + "score": 1.0, + "content": "). Here, we sample", + "type": "text" + }, + { + "bbox": [ + 415, + 187, + 449, + 199 + ], + "score": 0.92, + "content": "( X _ { t } , y _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "from a target", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 136, + 211 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 137, + 199, + 146, + 208 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "at every (meta)step, and update the support set using gradient-based methods. Additional", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 240, + 222 + ], + "score": 1.0, + "content": "variations include augmenting the", + "type": "text" + }, + { + "bbox": [ + 240, + 210, + 253, + 220 + ], + "score": 0.89, + "content": "X _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 208, + 370, + 222 + ], + "score": 1.0, + "content": "or sampling a different kernel", + "type": "text" + }, + { + "bbox": [ + 371, + 209, + 381, + 219 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "(from a fixed family of kernels)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 218, + 158, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 158, + 233 + ], + "score": 1.0, + "content": "at each step.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 164, + 506, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 104, + 233, + 502, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 233, + 492, + 251 + ], + "score": 1.0, + "content": "The Label Solve algorithm consists of solving for the least-norm minimizer of (1) with respect to", + "type": "text" + }, + { + "bbox": [ + 493, + 239, + 502, + 248 + ], + "score": 0.85, + "content": "y _ { s }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 246, + 194, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 194, + 259 + ], + "score": 1.0, + "content": "This yields the labels", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 233, + 502, + 259 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 263, + 380, + 285 + ], + "lines": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "spans": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "score": 0.93, + "content": "y _ { s } ^ { * } = \\Big ( K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } \\Big ) ^ { + } y _ { t } ,", + "type": "interline_equation", + "image_path": "6400c985b95cd910d952871747652b49009ec08e5b543a0d2f75cb6d00886af7.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 230, + 263, + 380, + 285 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 504, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 133, + 304 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 290, + 147, + 302 + ], + "score": 0.89, + "content": "A ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 290, + 316, + 304 + ], + "score": 1.0, + "content": "denotes the pseudo-inverse of the matrix", + "type": "text" + }, + { + "bbox": [ + 316, + 292, + 325, + 302 + ], + "score": 0.78, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 290, + 390, + 304 + ], + "score": 1.0, + "content": ". Note that here", + "type": "text" + }, + { + "bbox": [ + 390, + 291, + 444, + 303 + ], + "score": 0.92, + "content": "( X _ { t } , y _ { t } ) = \\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 290, + 506, + 304 + ], + "score": 1.0, + "content": ", i.e. the labels", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 302, + 256, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 256, + 315 + ], + "score": 1.0, + "content": "are solved using the whole target set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 290, + 506, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 106, + 319, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 356, + 330 + ], + "score": 1.0, + "content": "In our applications of KIP and Label Solve, the target dataset", + "type": "text" + }, + { + "bbox": [ + 356, + 319, + 366, + 329 + ], + "score": 0.81, + "content": "\\mathcal { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 319, + 504, + 330 + ], + "score": 1.0, + "content": "is always significantly larger than", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 167, + 342 + ], + "score": 1.0, + "content": "the support set", + "type": "text" + }, + { + "bbox": [ + 168, + 330, + 203, + 342 + ], + "score": 0.92, + "content": "( X _ { s } , y _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 330, + 505, + 342 + ], + "score": 1.0, + "content": ". Hence, the learned support set or solved labels can be regarded as distilled", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 341, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 506, + 353 + ], + "score": 1.0, + "content": "versions of their respective targets. We also initialize our support images to be a subset of natural", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 351, + 330, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 330, + 365 + ], + "score": 1.0, + "content": "images, though they could also be initialized randomly.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 319, + 506, + 365 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 367, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 365, + 381 + ], + "score": 1.0, + "content": "Based on the infinite-width correspondence outlined above and in", + "type": "text" + }, + { + "bbox": [ + 365, + 369, + 375, + 379 + ], + "score": 0.55, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 366, + 506, + 381 + ], + "score": 1.0, + "content": ", dataset distillation using KIP or", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 506, + 392 + ], + "score": 1.0, + "content": "LS that is optimized for KRR should extend to the corresponding finite-width neural network training.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 389, + 416, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 217, + 402 + ], + "score": 1.0, + "content": "Our experimental results in", + "type": "text" + }, + { + "bbox": [ + 218, + 390, + 229, + 401 + ], + "score": 0.57, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 389, + 416, + 402 + ], + "score": 1.0, + "content": "validate this expectation across many settings.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 366, + 506, + 402 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 413, + 284, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 284, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 284, + 427 + ], + "score": 1.0, + "content": "2.1 Client-Server Distributed Workflow", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "We invoke a client-server model of distributed computation3, in which a server distributes independent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 444, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 504, + 457 + ], + "score": 1.0, + "content": "workloads to a large pool of client workers that share a queue for receiving and sending work. Our", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 396, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 396, + 469 + ], + "score": 1.0, + "content": "distributed implementation of the KIP algorithm has two distinct stages:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 434, + 505, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 504, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 455, + 485 + ], + "score": 1.0, + "content": "Forward pass: In this step, we compute the support-support and target-support matrices", + "type": "text" + }, + { + "bbox": [ + 455, + 472, + 504, + 484 + ], + "score": 0.91, + "content": "K ( X _ { s } , X _ { s } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 483, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 123, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 484, + 171, + 497 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 484, + 262, + 497 + ], + "score": 1.0, + "content": ". To do so, we partition", + "type": "text" + }, + { + "bbox": [ + 262, + 485, + 299, + 496 + ], + "score": 0.92, + "content": "X _ { s } \\times X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 484, + 316, + 497 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 317, + 485, + 353, + 496 + ], + "score": 0.92, + "content": "X _ { t } \\times X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 484, + 433, + 497 + ], + "score": 1.0, + "content": "into pairs of images", + "type": "text" + }, + { + "bbox": [ + 434, + 483, + 461, + 497 + ], + "score": 0.92, + "content": "( x , x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 484, + 505, + 497 + ], + "score": 1.0, + "content": ", each with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 150, + 510 + ], + "score": 1.0, + "content": "batch size", + "type": "text" + }, + { + "bbox": [ + 150, + 498, + 159, + 507 + ], + "score": 0.78, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 497, + 444, + 510 + ], + "score": 1.0, + "content": ". We send such pairs to workers compute the respective matrix block", + "type": "text" + }, + { + "bbox": [ + 444, + 496, + 481, + 509 + ], + "score": 0.93, + "content": "K ( \\boldsymbol { x } , \\boldsymbol { x } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 497, + 505, + 510 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 508, + 449, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 294, + 521 + ], + "score": 1.0, + "content": "server aggregates all these blocks to obtain the", + "type": "text" + }, + { + "bbox": [ + 295, + 508, + 343, + 520 + ], + "score": 0.93, + "content": "K ( \\bar { X } _ { s } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 508, + 361, + 521 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 361, + 508, + 408, + 520 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 508, + 449, + 521 + ], + "score": 1.0, + "content": "matrices.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 471, + 505, + 521 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 405, + 538 + ], + "score": 1.0, + "content": "Backward pass: In this step, we need to compute the gradient of the loss", + "type": "text" + }, + { + "bbox": [ + 405, + 525, + 413, + 535 + ], + "score": 0.7, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "(1) with respect to the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 153, + 549 + ], + "score": 1.0, + "content": "support set", + "type": "text" + }, + { + "bbox": [ + 154, + 536, + 167, + 547 + ], + "score": 0.89, + "content": "X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 535, + 267, + 549 + ], + "score": 1.0, + "content": ". We need only consider", + "type": "text" + }, + { + "bbox": [ + 267, + 536, + 304, + 547 + ], + "score": 0.92, + "content": "\\partial L / \\partial { \\bar { X } } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 535, + 329, + 549 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 329, + 536, + 363, + 547 + ], + "score": 0.93, + "content": "\\partial L / \\partial y _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 535, + 505, + 549 + ], + "score": 1.0, + "content": "is cheap to compute. By the chain", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 547, + 180, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 180, + 558 + ], + "score": 1.0, + "content": "rule, we can write", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 524, + 505, + 558 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 561, + 450, + 589 + ], + "lines": [ + { + "bbox": [ + 161, + 561, + 450, + 589 + ], + "spans": [ + { + "bbox": [ + 161, + 561, + 450, + 589 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial X _ { s } } = \\frac { \\partial L } { \\partial ( K ( X _ { s } , X _ { s } ) ) } \\frac { \\partial K ( X _ { s } , X _ { s } ) } { \\partial X _ { s } } + \\frac { \\partial L } { \\partial ( K ( X _ { t } , X _ { s } ) ) } \\frac { \\partial K ( X _ { t } , X _ { s } ) } { \\partial X _ { s } } .", + "type": "interline_equation", + "image_path": "a0223d220bd86139fdd8c7685f0a6f5ec74cfdd88e27573f6f19316bb7fbcc1f.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 161, + 561, + 450, + 570.3333333333334 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 161, + 570.3333333333334, + 450, + 579.6666666666667 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 161, + 579.6666666666667, + 450, + 589.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 506, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 185, + 605 + ], + "score": 1.0, + "content": "The derivatives of", + "type": "text" + }, + { + "bbox": [ + 185, + 593, + 193, + 603 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 592, + 439, + 605 + ], + "score": 1.0, + "content": "with respect to the kernel matrices are inexpensive, since", + "type": "text" + }, + { + "bbox": [ + 439, + 594, + 447, + 603 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "depends in a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 616 + ], + "score": 1.0, + "content": "simple way on them (matrix multiplication and inversion). What is expensive to compute is the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 627 + ], + "score": 1.0, + "content": "derivative of the kernel matrices with respect to the inputs. Each kernel element is an independent", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 627, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 637 + ], + "score": 1.0, + "content": "function of the inputs and a naive computation of the derivative of a block would require forward-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 649 + ], + "score": 1.0, + "content": "mode differentiation, infeasible due to the size of the input images and the cost to compute the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 506, + 660 + ], + "score": 1.0, + "content": "individual kernel elements. Thus our main novelty is to divide up the gradient computation into", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 456, + 671 + ], + "score": 1.0, + "content": "backward differentiation sub-computations, specifically by using the built-in function", + "type": "text" + }, + { + "bbox": [ + 456, + 659, + 493, + 670 + ], + "score": 0.85, + "content": "{ \\mathrm { j a x . v j p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 669, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 259, + 682 + ], + "score": 1.0, + "content": "JAX [Bradbury et al., 2018]. Denoting", + "type": "text" + }, + { + "bbox": [ + 259, + 669, + 329, + 681 + ], + "score": 0.93, + "content": "K = K \\bar { ( } X _ { s } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 669, + 341, + 682 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 341, + 669, + 388, + 681 + ], + "score": 0.92, + "content": "K ( X _ { t } , X _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 669, + 506, + 682 + ], + "score": 1.0, + "content": "for short-hand, we divide the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 134, + 403 + ], + "score": 1.0, + "content": "matrix", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 135, + 390, + 169, + 402 + ], + "score": 0.79, + "content": "\\partial L / \\partial K", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 169, + 389, + 286, + 403 + ], + "score": 1.0, + "content": ", computed on the server, into", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 287, + 390, + 316, + 401 + ], + "score": 0.91, + "content": "B \\times B", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 316, + 389, + 414, + 403 + ], + "score": 1.0, + "content": "blocks corresponding to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 414, + 388, + 474, + 402 + ], + "score": 0.95, + "content": "\\partial L / \\partial K ( x , x ^ { ' } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 475, + 389, + 506, + 403 + ], + "score": 1.0, + "content": ", where", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 114, + 413 + ], + "score": 0.72, + "content": "x", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 114, + 402, + 131, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 132, + 401, + 141, + 413 + ], + "score": 0.8, + "content": "x ^ { \\prime }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 141, + 402, + 227, + 416 + ], + "score": 1.0, + "content": "each have batch size", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 227, + 403, + 236, + 413 + ], + "score": 0.7, + "content": "B", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 237, + 402, + 505, + 416 + ], + "score": 1.0, + "content": ". We send each such block, along with the corresponding block of", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 151, + 429 + ], + "score": 1.0, + "content": "image data", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 152, + 414, + 179, + 427 + ], + "score": 0.92, + "content": "( x , x ^ { \\prime } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 180, + 414, + 336, + 429 + ], + "score": 1.0, + "content": ", to a worker. The worker then treats the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 336, + 414, + 397, + 427 + ], + "score": 0.94, + "content": "\\partial L / \\partial K ( x , x ^ { \\prime } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 397, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "it receives as the cotangent", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 186, + 441 + ], + "score": 1.0, + "content": "vector argument of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 186, + 429, + 224, + 440 + ], + "score": 0.34, + "content": "{ \\mathrm { j a x . v j p } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 224, + 428, + 415, + 441 + ], + "score": 1.0, + "content": "that, via contraction, converts the derivative of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 415, + 426, + 452, + 440 + ], + "score": 0.94, + "content": "K ( x , x ^ { \\prime } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 452, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "with respect", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 117, + 452 + ], + "score": 1.0, + "content": "to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 117, + 441, + 124, + 449 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 125, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "into a scalar. The server aggregates all these partial gradient computations performed by the", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 449, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 210, + 463 + ], + "score": 1.0, + "content": "workers, over all possible", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 210, + 450, + 239, + 460 + ], + "score": 0.91, + "content": "B \\times B", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 240, + 449, + 389, + 463 + ], + "score": 1.0, + "content": "blocks, to compute the total gradient", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 389, + 450, + 426, + 461 + ], + "score": 0.92, + "content": "\\partial L / \\partial X _ { s }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 426, + 449, + 487, + 463 + ], + "score": 1.0, + "content": "used to update", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 488, + 450, + 501, + 461 + ], + "score": 0.9, + "content": "X _ { s }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 501, + 449, + 504, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 16 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 592, + 506, + 682 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 123, + 505, + 325 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 70, + 506, + 113 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 69, + 507, + 83 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 507, + 83 + ], + "score": 1.0, + "content": "Table 1: Comparison with other methods. The left group consists of neural network based methods.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 78, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 507, + 95 + ], + "score": 1.0, + "content": "The right group consists of kernel ridge-regression. All settings for KIP involve the use of label-learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 91, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 104 + ], + "score": 1.0, + "content": "Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 102, + 165, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 165, + 116 + ], + "score": 1.0, + "content": "preprocessing.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 123, + 505, + 325 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 325 + ], + "score": 0.986, + "html": "
Imgs/ ClassDC1DSA1KIP FC1 augLS ConvNet2,3 KIP ConvNet2
no augaug
MNIST191.7±0.588.7±0.685.5±0.173.497.3±0.196.5±0.1
1097.4±0.297.8±0.197.2±0.296.499.1±0.199.1±0.1
5098.8±0.199.2±0.198.4±0.198.399.4±0.199.5±0.1
Fashion- MNIST170.5±0.670.6±0.665.382.9±0.276.7±0.2
1082.3±0.484.6±0.380.891.0±0.188.8±0.1
5083.6±0.488.7±0.286.992.4±0.191.0±0.1
SVHN131.2±1.427.5±1.423.962.4±0.264.3±0.4
1076.1±0.679.2±0.552.879.3±0.181.1±0.5
5082.3±0.384.4±0.476.882.0±0.184.3±0.1
CIFAR-10128.3±0.528.8±0.740.5±0.426.164.7±0.263.4±0.1
1044.9±0.552.1±0.553.1±0.553.675.6±0.275.5±0.1
5053.9±0.560.6±0.558.6±0.465.978.2±0.280.6±0.1
CIFAR-100112.8±0.313.9±0.3-23.834.9±0.133.3±0.3
1025.2±0.332.3±0.3=39.247.9±0.249.5±0.3
", + "type": "table", + "image_path": "93a161c49cc38c7dc021cdfc3acc93e546f582a7e6e2e85d3f67088d33ea5aef.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 123, + 505, + 190.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 190.33333333333331, + 505, + 257.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 257.66666666666663, + 505, + 324.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 111, + 327, + 505, + 368 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 323, + 414, + 340 + ], + "spans": [ + { + "bbox": [ + 111, + 323, + 414, + 340 + ], + "score": 1.0, + "content": "1 DC [Zhao et al., 2021], DSA [Zhao and Bilen, 2021], KIP FC [Nguyen et al., 2021].", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 113, + 336, + 142, + 351 + ], + "spans": [ + { + "bbox": [ + 113, + 336, + 121, + 345 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 117, + 336, + 142, + 351 + ], + "score": 1.0, + "content": "Ours.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 113, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 113, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "3 LD [Bohdal et al., 2020] is another baseline which distills only labels using the AlexNet architecture. Our LS", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 118, + 356, + 350, + 370 + ], + "spans": [ + { + "bbox": [ + 118, + 356, + 350, + 370 + ], + "score": 1.0, + "content": "achieves higher test accuracy than theirs in every dataset category.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 134, + 403 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 390, + 169, + 402 + ], + "score": 0.79, + "content": "\\partial L / \\partial K", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 389, + 286, + 403 + ], + "score": 1.0, + "content": ", computed on the server, into", + "type": "text" + }, + { + "bbox": [ + 287, + 390, + 316, + 401 + ], + "score": 0.91, + "content": "B \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 389, + 414, + 403 + ], + "score": 1.0, + "content": "blocks corresponding to", + "type": "text" + }, + { + "bbox": [ + 414, + 388, + 474, + 402 + ], + "score": 0.95, + "content": "\\partial L / \\partial K ( x , x ^ { ' } )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 389, + 506, + 403 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 401, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 114, + 413 + ], + "score": 0.72, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 402, + 131, + 416 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 132, + 401, + 141, + 413 + ], + "score": 0.8, + "content": "x ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 402, + 227, + 416 + ], + "score": 1.0, + "content": "each have batch size", + "type": "text" + }, + { + "bbox": [ + 227, + 403, + 236, + 413 + ], + "score": 0.7, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 402, + 505, + 416 + ], + "score": 1.0, + "content": ". We send each such block, along with the corresponding block of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 414, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 151, + 429 + ], + "score": 1.0, + "content": "image data", + "type": "text" + }, + { + "bbox": [ + 152, + 414, + 179, + 427 + ], + "score": 0.92, + "content": "( x , x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 414, + 336, + 429 + ], + "score": 1.0, + "content": ", to a worker. The worker then treats the", + "type": "text" + }, + { + "bbox": [ + 336, + 414, + 397, + 427 + ], + "score": 0.94, + "content": "\\partial L / \\partial K ( x , x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 414, + 506, + 429 + ], + "score": 1.0, + "content": "it receives as the cotangent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 428, + 186, + 441 + ], + "score": 1.0, + "content": "vector argument of", + "type": "text" + }, + { + "bbox": [ + 186, + 429, + 224, + 440 + ], + "score": 0.34, + "content": "{ \\mathrm { j a x . v j p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 428, + 415, + 441 + ], + "score": 1.0, + "content": "that, via contraction, converts the derivative of", + "type": "text" + }, + { + "bbox": [ + 415, + 426, + 452, + 440 + ], + "score": 0.94, + "content": "K ( x , x ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 428, + 506, + 441 + ], + "score": 1.0, + "content": "with respect", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 117, + 452 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 441, + 124, + 449 + ], + "score": 0.74, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "into a scalar. The server aggregates all these partial gradient computations performed by the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 449, + 504, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 210, + 463 + ], + "score": 1.0, + "content": "workers, over all possible", + "type": "text" + }, + { + "bbox": [ + 210, + 450, + 239, + 460 + ], + "score": 0.91, + "content": "B \\times B", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 449, + 389, + 463 + ], + "score": 1.0, + "content": "blocks, to compute the total gradient", + "type": "text" + }, + { + "bbox": [ + 389, + 450, + 426, + 461 + ], + "score": 0.92, + "content": "\\partial L / \\partial X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 449, + 487, + 463 + ], + "score": 1.0, + "content": "used to update", + "type": "text" + }, + { + "bbox": [ + 488, + 450, + 501, + 461 + ], + "score": 0.9, + "content": "X _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 449, + 504, + 463 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 236, + 492 + ], + "lines": [ + { + "bbox": [ + 104, + 477, + 238, + 495 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 238, + 495 + ], + "score": 1.0, + "content": "3 Experimental Results", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 504, + 243, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 243, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 243, + 517 + ], + "score": 1.0, + "content": "3.1 Kernel Distillation Results", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "We apply the KIP and LS algorithms using the ConvNet architecture on the datasets MNIST [LeCun", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 535, + 507, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 507, + 550 + ], + "score": 1.0, + "content": "et al., 2010], Fashion MNIST [Xiao et al., 2017], SVHN [Netzer et al., 2011], CIFAR-10 [Krizhevsky,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "2009], and CIFAR-100. Here, the goal is to condense the train dataset down to a learned dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "of size 1, 10, or 50 images per class. We consider a variety of hyperparameter settings (image", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "preprocessing method, whether to augment target data, and whether to train the support labels for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 303, + 592 + ], + "score": 1.0, + "content": "KIP), the full details of which are described in", + "type": "text" + }, + { + "bbox": [ + 303, + 580, + 317, + 591 + ], + "score": 0.77, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 579, + 505, + 592 + ], + "score": 1.0, + "content": ". For space reasons, we show a subset of our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "results in Table 1, with results corresponding to the remaining set of hyperparameters left to Tables", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 615 + ], + "score": 1.0, + "content": "A3-A10. We highlight here that a crucial ingredient for our strong results in the RGB dataset setting", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "is the use of regularized ZCA preprocessing. Note the variable effect that our augmentations have", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 624, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 506, + 636 + ], + "score": 1.0, + "content": "on performance (see the last two columns of Table 1): they typically only provides a benefit for a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "sufficiently large support set. This result is consistent with Zhao et al. [2021], Zhao and Bilen [2021],", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "in which gains from augmentations are also generally obtained from larger support sets. We tried", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "varying the fraction (0.25 and 0.5) of each target batch that is augmented at each training step and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "found that while 10 images still did best without augmentations, 100 and 500 images typically did", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "slightly better with some partial augmentations (versus none or full). For instance, for 500 images on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 205, + 702 + ], + "score": 1.0, + "content": "CIFAR-10, we obtained", + "type": "text" + }, + { + "bbox": [ + 205, + 689, + 233, + 699 + ], + "score": 0.87, + "content": "8 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "test accuracy using augmentation rate 0.5. Thus, our observation is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "that given that larger support sets can distill larger target datasets, as the former increases in size, the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 710, + 481, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 481, + 723 + ], + "score": 1.0, + "content": "latter can be augmented more aggressively for obtaining optimal generalization performance.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 27.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 123, + 505, + 325 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 70, + 506, + 113 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 69, + 507, + 83 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 507, + 83 + ], + "score": 1.0, + "content": "Table 1: Comparison with other methods. The left group consists of neural network based methods.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 78, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 507, + 95 + ], + "score": 1.0, + "content": "The right group consists of kernel ridge-regression. All settings for KIP involve the use of label-learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 91, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 505, + 104 + ], + "score": 1.0, + "content": "Grayscale datasets use standard channel-wise preprocessing while RGB datasets use regularized ZCA", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 102, + 165, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 165, + 116 + ], + "score": 1.0, + "content": "preprocessing.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 123, + 505, + 325 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 325 + ], + "score": 0.986, + "html": "
Imgs/ ClassDC1DSA1KIP FC1 augLS ConvNet2,3 KIP ConvNet2
no augaug
MNIST191.7±0.588.7±0.685.5±0.173.497.3±0.196.5±0.1
1097.4±0.297.8±0.197.2±0.296.499.1±0.199.1±0.1
5098.8±0.199.2±0.198.4±0.198.399.4±0.199.5±0.1
Fashion- MNIST170.5±0.670.6±0.665.382.9±0.276.7±0.2
1082.3±0.484.6±0.380.891.0±0.188.8±0.1
5083.6±0.488.7±0.286.992.4±0.191.0±0.1
SVHN131.2±1.427.5±1.423.962.4±0.264.3±0.4
1076.1±0.679.2±0.552.879.3±0.181.1±0.5
5082.3±0.384.4±0.476.882.0±0.184.3±0.1
CIFAR-10128.3±0.528.8±0.740.5±0.426.164.7±0.263.4±0.1
1044.9±0.552.1±0.553.1±0.553.675.6±0.275.5±0.1
5053.9±0.560.6±0.558.6±0.465.978.2±0.280.6±0.1
CIFAR-100112.8±0.313.9±0.3-23.834.9±0.133.3±0.3
1025.2±0.332.3±0.3=39.247.9±0.249.5±0.3
", + "type": "table", + "image_path": "93a161c49cc38c7dc021cdfc3acc93e546f582a7e6e2e85d3f67088d33ea5aef.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 123, + 505, + 190.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 190.33333333333331, + 505, + 257.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 257.66666666666663, + 505, + 324.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 111, + 327, + 505, + 368 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 323, + 414, + 340 + ], + "spans": [ + { + "bbox": [ + 111, + 323, + 414, + 340 + ], + "score": 1.0, + "content": "1 DC [Zhao et al., 2021], DSA [Zhao and Bilen, 2021], KIP FC [Nguyen et al., 2021].", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 113, + 336, + 142, + 351 + ], + "spans": [ + { + "bbox": [ + 113, + 336, + 121, + 345 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 117, + 336, + 142, + 351 + ], + "score": 1.0, + "content": "Ours.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 113, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 113, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "3 LD [Bohdal et al., 2020] is another baseline which distills only labels using the AlexNet architecture. Our LS", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 118, + 356, + 350, + 370 + ], + "spans": [ + { + "bbox": [ + 118, + 356, + 350, + 370 + ], + "score": 1.0, + "content": "achieves higher test accuracy than theirs in every dataset category.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 462 + ], + "lines": [], + "index": 13.5, + "bbox_fs": [ + 105, + 388, + 506, + 463 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 236, + 492 + ], + "lines": [ + { + "bbox": [ + 104, + 477, + 238, + 495 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 238, + 495 + ], + "score": 1.0, + "content": "3 Experimental Results", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 504, + 243, + 516 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 243, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 243, + 517 + ], + "score": 1.0, + "content": "3.1 Kernel Distillation Results", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "We apply the KIP and LS algorithms using the ConvNet architecture on the datasets MNIST [LeCun", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 535, + 507, + 550 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 507, + 550 + ], + "score": 1.0, + "content": "et al., 2010], Fashion MNIST [Xiao et al., 2017], SVHN [Netzer et al., 2011], CIFAR-10 [Krizhevsky,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 559 + ], + "score": 1.0, + "content": "2009], and CIFAR-100. Here, the goal is to condense the train dataset down to a learned dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 505, + 571 + ], + "score": 1.0, + "content": "of size 1, 10, or 50 images per class. We consider a variety of hyperparameter settings (image", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "preprocessing method, whether to augment target data, and whether to train the support labels for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 579, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 303, + 592 + ], + "score": 1.0, + "content": "KIP), the full details of which are described in", + "type": "text" + }, + { + "bbox": [ + 303, + 580, + 317, + 591 + ], + "score": 0.77, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 579, + 505, + 592 + ], + "score": 1.0, + "content": ". For space reasons, we show a subset of our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 604 + ], + "score": 1.0, + "content": "results in Table 1, with results corresponding to the remaining set of hyperparameters left to Tables", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 599, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 615 + ], + "score": 1.0, + "content": "A3-A10. We highlight here that a crucial ingredient for our strong results in the RGB dataset setting", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "is the use of regularized ZCA preprocessing. Note the variable effect that our augmentations have", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 624, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 506, + 636 + ], + "score": 1.0, + "content": "on performance (see the last two columns of Table 1): they typically only provides a benefit for a", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "sufficiently large support set. This result is consistent with Zhao et al. [2021], Zhao and Bilen [2021],", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "in which gains from augmentations are also generally obtained from larger support sets. We tried", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "varying the fraction (0.25 and 0.5) of each target batch that is augmented at each training step and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 680 + ], + "score": 1.0, + "content": "found that while 10 images still did best without augmentations, 100 and 500 images typically did", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "slightly better with some partial augmentations (versus none or full). For instance, for 500 images on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 205, + 702 + ], + "score": 1.0, + "content": "CIFAR-10, we obtained", + "type": "text" + }, + { + "bbox": [ + 205, + 689, + 233, + 699 + ], + "score": 0.87, + "content": "8 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "test accuracy using augmentation rate 0.5. Thus, our observation is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "that given that larger support sets can distill larger target datasets, as the former increases in size, the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 710, + 481, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 481, + 723 + ], + "score": 1.0, + "content": "latter can be augmented more aggressively for obtaining optimal generalization performance.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 27.5, + "bbox_fs": [ + 104, + 525, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 118, + 72, + 492, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 72, + 492, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 72, + 492, + 239 + ], + "spans": [ + { + "bbox": [ + 118, + 72, + 492, + 239 + ], + "score": 0.891, + "type": "image", + "image_path": "148a563acf6ae0ac3256cedf7abae07a8148ed52736016b4de5e15cdee20844b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 72, + 492, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 127.66666666666666, + 492, + 183.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 183.33333333333331, + 492, + 238.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 506, + 360 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "Figure 1: KIP with kernel sampling vs individual kernels. Left: Evaluation of three kernels,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "ConvNet, Conv-Vec3, Conv-Vec8 for KRR with respect to four train settings: sampling KIP (“all”)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "score": 1.0, + "content": "which uses all the kernels or else KIP trained with the individual kernels. For all three kernels, “all”", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "is a close second place, outperformed only if the kernel used for training is exactly the same as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "one used for testing. Right: We take the learned images of the four train settings described above", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 304, + 507, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 507, + 317 + ], + "score": 1.0, + "content": "and transfer them to finite-width neural networks corresponding to ConvNet, Conv-Vec3, Conv-Vec8.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "Each point is a neural network trained on a specified KIP learned checkpoint. Top row is sampling", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "KIP images and bottom row is the baseline using just ConvNet for KIP. These plots indicate that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "sampling KIP improves performance across the architectures that are sampled, for both MSE and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 347, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 504, + 362 + ], + "score": 1.0, + "content": "cross entropy loss. Settings: CIFAR-10, 100 images, no augmentations, no ZCA, no label learning.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5 + } + ], + "index": 4.25 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Remarkably, our results in Table 1 outperform all prior baselines across all dataset settings. Our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "results are especially strong in the small support size regime, with our 1 image per class results", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "score": 1.0, + "content": "for KRR outperforming over 100 times as many natural images (see Table A1). We also obtain a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 447, + 426 + ], + "score": 1.0, + "content": "significant margin over prior art across all datasets, with our largest margin being a", + "type": "text" + }, + { + "bbox": [ + 447, + 414, + 468, + 424 + ], + "score": 0.86, + "content": "37 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 413, + 505, + 426 + ], + "score": 1.0, + "content": "absolute", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 281, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 281, + 437 + ], + "score": 1.0, + "content": "gain in test accuracy for the SVHN dataset.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 449, + 199, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 200, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 200, + 461 + ], + "score": 1.0, + "content": "3.2 Kernel Transfer", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 117, + 481 + ], + "score": 1.0, + "content": "In", + "type": "text" + }, + { + "bbox": [ + 117, + 469, + 136, + 480 + ], + "score": 0.39, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 469, + 505, + 481 + ], + "score": 1.0, + "content": ", we focused on obtaining state-of-the-art dataset distillation results for image classification", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "using a specific kernel (ConvNet). Here, we consider the variation of KIP in which we sample from a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "family of kernels (which we call sampling KIP). We validate that sampling KIP adds robustness to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 484, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 484, + 515 + ], + "score": 1.0, + "content": "the learned images in that they perform well for the family of kernels sampled during training.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "In Figure 1, we plot test performance of sampling KIP when using the kernels ConvNet, Conv-Vec3,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "and Conv-Vec8 (denoted by “all”) alongside KIP trained with just the individual kernels. Sampling", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "KIP performs well at test time when using any of the three kernels, whereas datasets trained using a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 552, + 426, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 426, + 563 + ], + "score": 1.0, + "content": "single kernel have a significant performance drop when using a different kernel.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 107, + 576, + 239, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 240, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 240, + 589 + ], + "score": 1.0, + "content": "3.3 Neural Network Transfer", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "In this section, we study how our distilled datasets optimized using KIP and LS transfer to the setting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "of finite-width neural networks. The main results are shown in Table 2. The third column shows the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "best neural network performance obtained by training on a KIP dataset of the corresponding size", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 444, + 641 + ], + "score": 1.0, + "content": "with respect to some choice of KIP and neural network training hyperparameters (see", + "type": "text" + }, + { + "bbox": [ + 444, + 630, + 458, + 640 + ], + "score": 0.79, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "for details).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "Since the datasets are optimized for kernel ridge-regression and not for neural network training itself,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "we expect some performance loss when transferring to finite-width networks, which we record in the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "score": 1.0, + "content": "fourth column. Remarkably, the drop due to this transfer is quite moderate or small and sometimes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "the transfer can even lead to gain in performance (see LS for SVHN dataset with 10 images per class).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "Overall, our transfer to finite-width networks outperforms prior art based on DC/DSA [Zhao et al.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "2021, Zhao and Bilen, 2021] in the 1 image per class setting for all the RGB datasets (SVHN,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 708, + 473, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 473, + 725 + ], + "score": 1.0, + "content": "CIFAR-10, CIFAR-100). Moreover, for CIFAR-10, we outperform DC/DSA in all settings.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 118, + 72, + 492, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 118, + 72, + 492, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 72, + 492, + 239 + ], + "spans": [ + { + "bbox": [ + 118, + 72, + 492, + 239 + ], + "score": 0.891, + "type": "image", + "image_path": "148a563acf6ae0ac3256cedf7abae07a8148ed52736016b4de5e15cdee20844b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 118, + 72, + 492, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 118, + 127.66666666666666, + 492, + 183.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 118, + 183.33333333333331, + 492, + 238.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 506, + 360 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 506, + 262 + ], + "score": 1.0, + "content": "Figure 1: KIP with kernel sampling vs individual kernels. Left: Evaluation of three kernels,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "ConvNet, Conv-Vec3, Conv-Vec8 for KRR with respect to four train settings: sampling KIP (“all”)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "score": 1.0, + "content": "which uses all the kernels or else KIP trained with the individual kernels. For all three kernels, “all”", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 295 + ], + "score": 1.0, + "content": "is a close second place, outperformed only if the kernel used for training is exactly the same as the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "one used for testing. Right: We take the learned images of the four train settings described above", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 304, + 507, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 507, + 317 + ], + "score": 1.0, + "content": "and transfer them to finite-width neural networks corresponding to ConvNet, Conv-Vec3, Conv-Vec8.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 314, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 104, + 314, + 506, + 329 + ], + "score": 1.0, + "content": "Each point is a neural network trained on a specified KIP learned checkpoint. Top row is sampling", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "KIP images and bottom row is the baseline using just ConvNet for KIP. These plots indicate that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "sampling KIP improves performance across the architectures that are sampled, for both MSE and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 347, + 504, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 504, + 362 + ], + "score": 1.0, + "content": "cross entropy loss. Settings: CIFAR-10, 100 images, no augmentations, no ZCA, no label learning.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7.5 + } + ], + "index": 4.25 + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "Remarkably, our results in Table 1 outperform all prior baselines across all dataset settings. Our", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "results are especially strong in the small support size regime, with our 1 image per class results", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 415 + ], + "score": 1.0, + "content": "for KRR outperforming over 100 times as many natural images (see Table A1). We also obtain a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 447, + 426 + ], + "score": 1.0, + "content": "significant margin over prior art across all datasets, with our largest margin being a", + "type": "text" + }, + { + "bbox": [ + 447, + 414, + 468, + 424 + ], + "score": 0.86, + "content": "37 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 413, + 505, + 426 + ], + "score": 1.0, + "content": "absolute", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 424, + 281, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 281, + 437 + ], + "score": 1.0, + "content": "gain in test accuracy for the SVHN dataset.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 380, + 506, + 437 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 449, + 199, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 200, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 200, + 461 + ], + "score": 1.0, + "content": "3.2 Kernel Transfer", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 469, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 117, + 481 + ], + "score": 1.0, + "content": "In", + "type": "text" + }, + { + "bbox": [ + 117, + 469, + 136, + 480 + ], + "score": 0.39, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 469, + 505, + 481 + ], + "score": 1.0, + "content": ", we focused on obtaining state-of-the-art dataset distillation results for image classification", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "using a specific kernel (ConvNet). Here, we consider the variation of KIP in which we sample from a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "family of kernels (which we call sampling KIP). We validate that sampling KIP adds robustness to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 484, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 484, + 515 + ], + "score": 1.0, + "content": "the learned images in that they perform well for the family of kernels sampled during training.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 469, + 506, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 518, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 506, + 531 + ], + "score": 1.0, + "content": "In Figure 1, we plot test performance of sampling KIP when using the kernels ConvNet, Conv-Vec3,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "and Conv-Vec8 (denoted by “all”) alongside KIP trained with just the individual kernels. Sampling", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "KIP performs well at test time when using any of the three kernels, whereas datasets trained using a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 552, + 426, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 426, + 563 + ], + "score": 1.0, + "content": "single kernel have a significant performance drop when using a different kernel.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 518, + 506, + 563 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 576, + 239, + 587 + ], + "lines": [ + { + "bbox": [ + 105, + 575, + 240, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 240, + 589 + ], + "score": 1.0, + "content": "3.3 Neural Network Transfer", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "In this section, we study how our distilled datasets optimized using KIP and LS transfer to the setting", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "of finite-width neural networks. The main results are shown in Table 2. The third column shows the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "best neural network performance obtained by training on a KIP dataset of the corresponding size", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 628, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 628, + 444, + 641 + ], + "score": 1.0, + "content": "with respect to some choice of KIP and neural network training hyperparameters (see", + "type": "text" + }, + { + "bbox": [ + 444, + 630, + 458, + 640 + ], + "score": 0.79, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 628, + 506, + 641 + ], + "score": 1.0, + "content": "for details).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 652 + ], + "score": 1.0, + "content": "Since the datasets are optimized for kernel ridge-regression and not for neural network training itself,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "we expect some performance loss when transferring to finite-width networks, which we record in the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 506, + 674 + ], + "score": 1.0, + "content": "fourth column. Remarkably, the drop due to this transfer is quite moderate or small and sometimes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 685 + ], + "score": 1.0, + "content": "the transfer can even lead to gain in performance (see LS for SVHN dataset with 10 images per class).", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 595, + 506, + 685 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "Overall, our transfer to finite-width networks outperforms prior art based on DC/DSA [Zhao et al.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 507, + 713 + ], + "score": 1.0, + "content": "2021, Zhao and Bilen, 2021] in the 1 image per class setting for all the RGB datasets (SVHN,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 708, + 473, + 725 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 473, + 725 + ], + "score": 1.0, + "content": "CIFAR-10, CIFAR-100). Moreover, for CIFAR-10, we outperform DC/DSA in all settings.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 688, + 507, + 725 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 150, + 486, + 365 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 69, + 505, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 69, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 505, + 82 + ], + "score": 1.0, + "content": "Table 2: Transfer of KIP and LS to neural network training. Datasets obtained from KIP and LS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 81, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 93 + ], + "score": 1.0, + "content": "using the ConvNet kernel are optimized for kernel ridge-regression and thus have reduced performance", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 90, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 105 + ], + "score": 1.0, + "content": "when used for training the corresponding finite-width ConvNet neural network. Remarkably, the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "loss in performance is mostly moderate and even small in many instances. Grayscale datasets use", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "KIP datasets used here can have augmentations or no augmentations and, unlike those in Table 1, can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 136, + 496, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 246, + 147 + ], + "score": 1.0, + "content": "have either fixed or learned labels.", + "type": "text" + }, + { + "bbox": [ + 246, + 137, + 254, + 145 + ], + "score": 0.56, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 136, + 496, + 147 + ], + "score": 1.0, + "content": "denotes best chosen transfer is obtained with learned labels.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 123, + 150, + 486, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 150, + 486, + 365 + ], + "spans": [ + { + "bbox": [ + 123, + 150, + 486, + 365 + ], + "score": 0.985, + "html": "
Imgs/ClassDC/DSAKIP to NNPerf. changeLS to NNPerf. change
MNIST191.7±0.590.1±0.1-5.571.0±0.2-2.4
1097.8±0.197.5±0.0-1.195.2±0.1-1.2
5099.2±0.198.3±0.1-0.897.9±0.0-0.4
Fashion-MNIST170.6±0.673.5±0.5*-9.861.2±0.1-4.1
1084.6±0.386.8±0.1-1.379.7±0.1-1.2
5088.7±0.288.0±0.1*-4.585.0±0.1-1.8
SVHN131.2±1.457.3±0.1*-8.323.8±0.2-0.2
1079.2±0.575.0±0.1-1.653.2±0.30.4
5084.4±0.480.5±0.1-1.076.5±0.3-0.4
CIFAR-10128.8±0.749.9±0.2-9.224.7±0.1-1.4
1052.1±0.562.7±0.3-4.649.3±0.1-4.3
5060.6±0.568.6±0.2-4.562.0±0.2-3.9
CIFAR-100113.9±0.315.7±0.2*-18.111.8±0.2-12.0
1032.3±0.328.3±0.1-17.425.0±0.1-14.2
", + "type": "table", + "image_path": "a34c200cfbe088aea4d855afa6db1cfcff2d63d3f3c589cc4baa786af48c2758.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 123, + 150, + 486, + 221.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 123, + 221.66666666666669, + 486, + 293.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 123, + 293.33333333333337, + 486, + 365.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 398 + ], + "score": 1.0, + "content": "Figures 2 and 3 provide a closer look at KIP transfer changes under various settings. The first of these", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "tracks how transfer performance changes when adding additional layers as function of the number", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "of KIP training steps used. The normalization layers appear to harm performance for MSE loss,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "which can be anticipated from their absence in the KIP and LS optimization procedures. However", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "they appear to provide some benefit for cross entropy loss. For Figure 3, we observe that as KIP", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "training progresses, the downstream finite-width network’s performance also improves in general. A", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "notable exception is observed when learning the labels in KIP, where longer training steps lead to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "deterioration of information useful to training finite-width neural networks. We also observe that as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 1.0, + "content": "predicted by infinite-width theory [Jacot et al., 2018, Lee et al., 2019], the overall gap between KIP", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "or LS performance and finite-width neural network decreases as the width increases. While our best", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "performing transfer is obtained with width 1024, Figure 3 (middle) suggest that even with modest", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 506, + 451, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 315, + 518 + ], + "score": 1.0, + "content": "width of 64, our transfer can outperform prior art of", + "type": "text" + }, + { + "bbox": [ + 315, + 506, + 342, + 516 + ], + "score": 0.86, + "content": "6 0 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 506, + 451, + 518 + ], + "score": 1.0, + "content": "by Zhao and Bilen [2021].", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "Finally, in Figure 4, we investigate the performance of KIP images over the course of training of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "a single run, as compared to natural images, over a range of hyperparameters. We find the outper-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "formance of KIP images above natural images consistent across hyperparameters and checkpoints.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "This suggests that our KIP images may also be effective for accelerated hyperparameter search, an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 565, + 459, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 459, + 579 + ], + "score": 1.0, + "content": "application of dataset distillation explored in Zhao et al. [2021], Zhao and Bilen [2021].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Altogether, we find our neural network training results encouraging. First, it validates the applicability", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "of infinite-width methods to the setting of finite width [Huang and Yau, 2020, Dyer and Gur-Ari,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "2020, Andreassen and Dyer, 2020, Yaida, 2020, Lee et al., 2020]. Second, we find some of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "score": 1.0, + "content": "transfer results quite surprising, including efficacy of label solve and the use of cross-entropy for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 281, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 187, + 637 + ], + "score": 1.0, + "content": "certain settings (see", + "type": "text" + }, + { + "bbox": [ + 187, + 626, + 201, + 637 + ], + "score": 0.75, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 626, + 281, + 637 + ], + "score": 1.0, + "content": "for the full details).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 652, + 326, + 667 + ], + "lines": [ + { + "bbox": [ + 104, + 652, + 326, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 652, + 326, + 669 + ], + "score": 1.0, + "content": "4 Understanding KIP Images and Labels", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "A natural question to consider is what causes KIP to improve generalization performance. Does it", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "simplify support images, removing noise and minor sources of variation while keeping only the core", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "features shared between many target images of a given class? Or does it make them more complex by", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "producing outputs that combine characteristics of many samples in a single resulting collage? While", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 123, + 150, + 486, + 365 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 69, + 505, + 146 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 69, + 505, + 82 + ], + "spans": [ + { + "bbox": [ + 105, + 69, + 505, + 82 + ], + "score": 1.0, + "content": "Table 2: Transfer of KIP and LS to neural network training. Datasets obtained from KIP and LS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 81, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 93 + ], + "score": 1.0, + "content": "using the ConvNet kernel are optimized for kernel ridge-regression and thus have reduced performance", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 90, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 506, + 105 + ], + "score": 1.0, + "content": "when used for training the corresponding finite-width ConvNet neural network. Remarkably, the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 506, + 115 + ], + "score": 1.0, + "content": "loss in performance is mostly moderate and even small in many instances. Grayscale datasets use", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "standard channel-wise preprocessing while RGB datasets use regularized ZCA preprocessing. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "KIP datasets used here can have augmentations or no augmentations and, unlike those in Table 1, can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 136, + 496, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 246, + 147 + ], + "score": 1.0, + "content": "have either fixed or learned labels.", + "type": "text" + }, + { + "bbox": [ + 246, + 137, + 254, + 145 + ], + "score": 0.56, + "content": "^ *", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 136, + 496, + 147 + ], + "score": 1.0, + "content": "denotes best chosen transfer is obtained with learned labels.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 123, + 150, + 486, + 365 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 150, + 486, + 365 + ], + "spans": [ + { + "bbox": [ + 123, + 150, + 486, + 365 + ], + "score": 0.985, + "html": "
Imgs/ClassDC/DSAKIP to NNPerf. changeLS to NNPerf. change
MNIST191.7±0.590.1±0.1-5.571.0±0.2-2.4
1097.8±0.197.5±0.0-1.195.2±0.1-1.2
5099.2±0.198.3±0.1-0.897.9±0.0-0.4
Fashion-MNIST170.6±0.673.5±0.5*-9.861.2±0.1-4.1
1084.6±0.386.8±0.1-1.379.7±0.1-1.2
5088.7±0.288.0±0.1*-4.585.0±0.1-1.8
SVHN131.2±1.457.3±0.1*-8.323.8±0.2-0.2
1079.2±0.575.0±0.1-1.653.2±0.30.4
5084.4±0.480.5±0.1-1.076.5±0.3-0.4
CIFAR-10128.8±0.749.9±0.2-9.224.7±0.1-1.4
1052.1±0.562.7±0.3-4.649.3±0.1-4.3
5060.6±0.568.6±0.2-4.562.0±0.2-3.9
CIFAR-100113.9±0.315.7±0.2*-18.111.8±0.2-12.0
1032.3±0.328.3±0.1-17.425.0±0.1-14.2
", + "type": "table", + "image_path": "a34c200cfbe088aea4d855afa6db1cfcff2d63d3f3c589cc4baa786af48c2758.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 123, + 150, + 486, + 221.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 123, + 221.66666666666669, + 486, + 293.33333333333337 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 123, + 293.33333333333337, + 486, + 365.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 398 + ], + "score": 1.0, + "content": "Figures 2 and 3 provide a closer look at KIP transfer changes under various settings. The first of these", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "tracks how transfer performance changes when adding additional layers as function of the number", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "of KIP training steps used. The normalization layers appear to harm performance for MSE loss,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "which can be anticipated from their absence in the KIP and LS optimization procedures. However", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "they appear to provide some benefit for cross entropy loss. For Figure 3, we observe that as KIP", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "training progresses, the downstream finite-width network’s performance also improves in general. A", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "notable exception is observed when learning the labels in KIP, where longer training steps lead to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "deterioration of information useful to training finite-width neural networks. We also observe that as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 485 + ], + "score": 1.0, + "content": "predicted by infinite-width theory [Jacot et al., 2018, Lee et al., 2019], the overall gap between KIP", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "or LS performance and finite-width neural network decreases as the width increases. While our best", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "performing transfer is obtained with width 1024, Figure 3 (middle) suggest that even with modest", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 506, + 451, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 315, + 518 + ], + "score": 1.0, + "content": "width of 64, our transfer can outperform prior art of", + "type": "text" + }, + { + "bbox": [ + 315, + 506, + 342, + 516 + ], + "score": 0.86, + "content": "6 0 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 506, + 451, + 518 + ], + "score": 1.0, + "content": "by Zhao and Bilen [2021].", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 385, + 506, + 518 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "Finally, in Figure 4, we investigate the performance of KIP images over the course of training of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "a single run, as compared to natural images, over a range of hyperparameters. We find the outper-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 557 + ], + "score": 1.0, + "content": "formance of KIP images above natural images consistent across hyperparameters and checkpoints.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "This suggests that our KIP images may also be effective for accelerated hyperparameter search, an", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 565, + 459, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 459, + 579 + ], + "score": 1.0, + "content": "application of dataset distillation explored in Zhao et al. [2021], Zhao and Bilen [2021].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 522, + 506, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Altogether, we find our neural network training results encouraging. First, it validates the applicability", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 605 + ], + "score": 1.0, + "content": "of infinite-width methods to the setting of finite width [Huang and Yau, 2020, Dyer and Gur-Ari,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "2020, Andreassen and Dyer, 2020, Yaida, 2020, Lee et al., 2020]. Second, we find some of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 506, + 627 + ], + "score": 1.0, + "content": "transfer results quite surprising, including efficacy of label solve and the use of cross-entropy for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 626, + 281, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 187, + 637 + ], + "score": 1.0, + "content": "certain settings (see", + "type": "text" + }, + { + "bbox": [ + 187, + 626, + 201, + 637 + ], + "score": 0.75, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 626, + 281, + 637 + ], + "score": 1.0, + "content": "for the full details).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 582, + 506, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 652, + 326, + 667 + ], + "lines": [ + { + "bbox": [ + 104, + 652, + 326, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 652, + 326, + 669 + ], + "score": 1.0, + "content": "4 Understanding KIP Images and Labels", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 690 + ], + "score": 1.0, + "content": "A natural question to consider is what causes KIP to improve generalization performance. Does it", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 702 + ], + "score": 1.0, + "content": "simplify support images, removing noise and minor sources of variation while keeping only the core", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "features shared between many target images of a given class? Or does it make them more complex by", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "producing outputs that combine characteristics of many samples in a single resulting collage? While", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "properly answering this question is subject to precise definitions of simplicity and complexity, we", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 240, + 483, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 483, + 254 + ], + "score": 1.0, + "content": "find that KIP tends to increase the complexity of pictures based on the following experiments:", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 678, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 72, + 491, + 191 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 72, + 491, + 191 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 119, + 72, + 491, + 191 + ], + "spans": [ + { + "bbox": [ + 119, + 72, + 491, + 191 + ], + "score": 0.966, + "type": "image", + "image_path": "4b2f59db73df265ffd78c4beb7e58efaa0c701708ef3304ac1729acf17834d3d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 72, + 491, + 111.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 111.66666666666666, + 491, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 151.33333333333331, + 491, + 190.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 118, + 291, + 492, + 394 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 202, + 506, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "score": 1.0, + "content": "Figure 2: Robustness to neural network variations. KIP ConvNet images (trained with fixed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "labels) are tested on variations of the ConvNet neural network, including those which have vari-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "ous normalization layers (layer, instance, batch). A similar architecture to ConvNet, the Myrtle5", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "architecture (without normalization layers) [Shankar et al., 2020], which differs from the ConvNet", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 245, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 260 + ], + "score": 1.0, + "content": "architecture by having an additional convolutional layer at the bottom and a global average pooling", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 256, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 271 + ], + "score": 1.0, + "content": "that replaces the final local average pooling at the top, is also tested. Finally, mean-square error is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "compared with cross-entropy loss (left versus right). Settings: CIFAR-10, 500 images, ZCA, no label", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 145, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 145, + 292 + ], + "score": 1.0, + "content": "learning.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "image_body", + "bbox": [ + 118, + 291, + 492, + 394 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 291, + 492, + 394 + ], + "spans": [ + { + "bbox": [ + 118, + 291, + 492, + 394 + ], + "score": 0.97, + "type": "image", + "image_path": "d7101d842d66d8536c0fe0794798318cf8448c9d5fec3295db42110b30f393b0.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 118, + 291, + 492, + 325.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 118, + 325.3333333333333, + 492, + 359.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 118, + 359.66666666666663, + 492, + 393.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 9.25 + }, + { + "type": "image", + "bbox": [ + 117, + 495, + 493, + 657 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 404, + 506, + 481 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Figure 3: Variations for neural network transfer. Left: Plot of transfer performance as a function", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "of KIP training steps across various train settings. Here (a) denotes augmentations used during", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 178, + 439 + ], + "score": 1.0, + "content": "KIP training and", + "type": "text" + }, + { + "bbox": [ + 178, + 427, + 198, + 437 + ], + "score": 0.62, + "content": "\\left( \\mathrm { a } { + } \\mathrm { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "denotes that additionally the labels were learned. MSE and XENT denote", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "mean-square-error and cross entropy loss for the neural network, where for the case of XENT and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 126, + 459 + ], + "score": 0.49, + "content": "\\left( \\mathrm { a } \\mathrm { + } \\mathrm { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 447, + 506, + 460 + ], + "score": 1.0, + "content": ", the labels for the neural network are the argmax of the learned labels. Middle: Exploring the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "effect of width on transferability of vanilla KIP data. Right: The effect of width on the transferability", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 470, + 350, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 350, + 482 + ], + "score": 1.0, + "content": "of label solved data. Settings: CIFAR-10, 500 images, ZCA.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "image_body", + "bbox": [ + 117, + 495, + 493, + 657 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 495, + 493, + 657 + ], + "spans": [ + { + "bbox": [ + 117, + 495, + 493, + 657 + ], + "score": 0.975, + "type": "image", + "image_path": "d4bafe9124596e9d37dbd9d82f76504e27d351417c7bcb6711299bb95919161d.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 117, + 495, + 493, + 549.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 117, + 549.0, + 493, + 603.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 117, + 603.0, + 493, + 657.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 668, + 506, + 733 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "Figure 4: Hyperparameter robustness. In the above, KIP images across eight different checkpoints", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "are used to train the ConvNet neural network. Each point in each plot is a neural network training", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "with a different hyperparameter, and its location records the final test accuracy when training on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "natural images versus the KIP images obtained from initializing from such images. For both MSE", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 711, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 507, + 724 + ], + "score": 1.0, + "content": "and cross entropy loss, KIP images consistently exceed natural images across many hyperparameters.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 721, + 415, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 415, + 736 + ], + "score": 1.0, + "content": "Settings: CIFAR-10, 500 images, ZCA, no augmentations, no label learning.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "index": 22 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 344, + 74, + 463, + 80 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 119, + 72, + 491, + 191 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 119, + 72, + 491, + 191 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 119, + 72, + 491, + 191 + ], + "spans": [ + { + "bbox": [ + 119, + 72, + 491, + 191 + ], + "score": 0.966, + "type": "image", + "image_path": "4b2f59db73df265ffd78c4beb7e58efaa0c701708ef3304ac1729acf17834d3d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 119, + 72, + 491, + 111.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 119, + 111.66666666666666, + 491, + 151.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 119, + 151.33333333333331, + 491, + 190.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "image", + "bbox": [ + 118, + 291, + 492, + 394 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 202, + 506, + 289 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "score": 1.0, + "content": "Figure 2: Robustness to neural network variations. KIP ConvNet images (trained with fixed", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 226 + ], + "score": 1.0, + "content": "labels) are tested on variations of the ConvNet neural network, including those which have vari-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 505, + 236 + ], + "score": 1.0, + "content": "ous normalization layers (layer, instance, batch). A similar architecture to ConvNet, the Myrtle5", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "architecture (without normalization layers) [Shankar et al., 2020], which differs from the ConvNet", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 245, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 260 + ], + "score": 1.0, + "content": "architecture by having an additional convolutional layer at the bottom and a global average pooling", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 256, + 506, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 506, + 271 + ], + "score": 1.0, + "content": "that replaces the final local average pooling at the top, is also tested. Finally, mean-square error is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 268, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 280 + ], + "score": 1.0, + "content": "compared with cross-entropy loss (left versus right). Settings: CIFAR-10, 500 images, ZCA, no label", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 278, + 145, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 145, + 292 + ], + "score": 1.0, + "content": "learning.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "image_body", + "bbox": [ + 118, + 291, + 492, + 394 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 291, + 492, + 394 + ], + "spans": [ + { + "bbox": [ + 118, + 291, + 492, + 394 + ], + "score": 0.97, + "type": "image", + "image_path": "d7101d842d66d8536c0fe0794798318cf8448c9d5fec3295db42110b30f393b0.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 118, + 291, + 492, + 325.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 118, + 325.3333333333333, + 492, + 359.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 118, + 359.66666666666663, + 492, + 393.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 9.25 + }, + { + "type": "image", + "bbox": [ + 117, + 495, + 493, + 657 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 106, + 404, + 506, + 481 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "Figure 3: Variations for neural network transfer. Left: Plot of transfer performance as a function", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "of KIP training steps across various train settings. Here (a) denotes augmentations used during", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 178, + 439 + ], + "score": 1.0, + "content": "KIP training and", + "type": "text" + }, + { + "bbox": [ + 178, + 427, + 198, + 437 + ], + "score": 0.62, + "content": "\\left( \\mathrm { a } { + } \\mathrm { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "denotes that additionally the labels were learned. MSE and XENT denote", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "mean-square-error and cross entropy loss for the neural network, where for the case of XENT and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 126, + 459 + ], + "score": 0.49, + "content": "\\left( \\mathrm { a } \\mathrm { + } \\mathrm { l } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 447, + 506, + 460 + ], + "score": 1.0, + "content": ", the labels for the neural network are the argmax of the learned labels. Middle: Exploring the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "effect of width on transferability of vanilla KIP data. Right: The effect of width on the transferability", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 470, + 350, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 350, + 482 + ], + "score": 1.0, + "content": "of label solved data. Settings: CIFAR-10, 500 images, ZCA.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17 + }, + { + "type": "image_body", + "bbox": [ + 117, + 495, + 493, + 657 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 117, + 495, + 493, + 657 + ], + "spans": [ + { + "bbox": [ + 117, + 495, + 493, + 657 + ], + "score": 0.975, + "type": "image", + "image_path": "d4bafe9124596e9d37dbd9d82f76504e27d351417c7bcb6711299bb95919161d.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 117, + 495, + 493, + 549.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 117, + 549.0, + 493, + 603.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 117, + 603.0, + 493, + 657.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 668, + 506, + 733 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 679 + ], + "score": 1.0, + "content": "Figure 4: Hyperparameter robustness. In the above, KIP images across eight different checkpoints", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "are used to train the ConvNet neural network. Each point in each plot is a neural network training", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "with a different hyperparameter, and its location records the final test accuracy when training on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "natural images versus the KIP images obtained from initializing from such images. For both MSE", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 711, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 507, + 724 + ], + "score": 1.0, + "content": "and cross entropy loss, KIP images consistently exceed natural images across many hyperparameters.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 721, + 415, + 736 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 415, + 736 + ], + "score": 1.0, + "content": "Settings: CIFAR-10, 500 images, ZCA, no augmentations, no label learning.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "index": 22 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 88, + 500, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 88, + 500, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 88, + 500, + 164 + ], + "spans": [ + { + "bbox": [ + 108, + 88, + 500, + 164 + ], + "score": 0.786, + "type": "image", + "image_path": "e6c595174262ae29110808481345bc35e97724fca04c12c87c4596c09e29c9e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 88, + 500, + 113.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 113.33333333333333, + 500, + 138.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 138.66666666666666, + 500, + 164.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 176, + 506, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Figure 5: Examples of learned images. Images are initialized from natural images in the top row", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 188, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 506, + 200 + ], + "score": 1.0, + "content": "(Init) and converge to images in the bottom row (Trained). Settings: 100 images distilled, no ZCA,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 199, + 240, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 240, + 210 + ], + "score": 1.0, + "content": "no label training, augmentations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "properly answering this question is subject to precise definitions of simplicity and complexity, we", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 240, + 483, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 483, + 254 + ], + "score": 1.0, + "content": "find that KIP tends to increase the complexity of pictures based on the following experiments:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 134, + 261, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 134, + 262, + 482, + 274 + ], + "spans": [ + { + "bbox": [ + 134, + 262, + 482, + 274 + ], + "score": 1.0, + "content": "• Visual analysis: qualitatively, KIP images tend to be richer in textures and contours.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 133, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 133, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "• Dimensional analysis: KIP produces images of higher intrinsic dimensionality (i.e. an", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "estimate of the dimensionality of the manifold on which the images lie) than natural images.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 134, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 134, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "• Spectral analysis: unlike natural images, for which the bulk of generalization performance", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "is explained by a small number of top few eigendirections, KIP images leverage the whole", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 326, + 259, + 338 + ], + "spans": [ + { + "bbox": [ + 142, + 326, + 259, + 338 + ], + "score": 1.0, + "content": "spectrum much more evenly.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "Combined, these results let us conclude that KIP usually increases complexity, integrating features", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 356, + 342, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 342, + 369 + ], + "score": 1.0, + "content": "from many target images into much fewer support images.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "Visual Analysis. A visual inspection of our learned data leads to intriguing observations in terms of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "interpretability. Figure 5 shows examples of KIP learned images from CIFAR-100. The resulting", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "images are heterogeneous in terms of how they can be interpreted as distilling the data. For instance,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "the distilled apple image seems to consist of many apples nested within a possibly larger apple,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "whereas the distilled bottle image starts off as two bottles and before transforming into one, while", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "other classes (like the beaver) are altogether visually indistinct. Investigating and quantifying aspects", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "that make these images generalize so well is a promising avenue for future work. We show examples", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 449, + 240, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 240, + 460 + ], + "score": 1.0, + "content": "from other datasets in Figure A2.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "In Figure 6, we compare MNIST KIP data learned with and without label learning. For the latter case", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "with images and labels optimized jointly, while labels become more informative, encoding richer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "inter-class information, the images become less interpretable. This behavior consistently leads to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "superior KRR results, but appears to not be leveraged as efficiently in the neural network transfer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 508, + 343, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 326, + 521 + ], + "score": 1.0, + "content": "setting (Table 2). Experimental details can be found in", + "type": "text" + }, + { + "bbox": [ + 326, + 509, + 339, + 520 + ], + "score": 0.73, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 508, + 343, + 521 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "Dimensional Analysis. We study the intrinsic dimension of KIP images and find that they tend to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "grow. Intrinsic dimension (ID) was first defined by Bennett [1969] as “the number of free parameters", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "required in a hypothetical signal generator capable of producing a close approximation to each signal", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "in the collection”. In our context, it is the dimensionality of the manifold embedded into the image", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "space which contains all the support images. Intuitively, simple datasets have a low ID as they can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 439, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 439, + 591 + ], + "score": 1.0, + "content": "described by a small number of coordinates on the low-dimensional data manifold.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "ID can be defined and estimated differently based on assumptions on the manifold structure and the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "probability density function of the images on this manifold (see [Camastra and Staiano, 2016] for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "review). We use the “Two-NN” method developed by [Facco et al., 2017], which makes relatively few", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "assumptions and allows to estimate ID only from two nearest-neighbor distances for each datapoint.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "Figure 7 shows that the ID is increasing for the learned KIP images as a function of the training step", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "across a variety of configurations (training with or without augmentations/label learning) and datasets.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "One might expect that a distillation procedure should decrease dimensionality. On the other hand,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Ansuini et al. [2019] showed that ID increases in the earlier layers of a trained neural network. It", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 504, + 700 + ], + "score": 1.0, + "content": "remains to be understood if this latter observation has any relationship with our increased ID. Note", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "that ZCA preprocessing, which played an important role for getting the best performance for our", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 424, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 424, + 723 + ], + "score": 1.0, + "content": "RGB datasets, increases dimensionality of the underlying data (see Figure A4).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 279, + 76, + 326, + 86 + ], + "lines": [ + { + "bbox": [ + 279, + 75, + 327, + 87 + ], + "spans": [ + { + "bbox": [ + 279, + 75, + 327, + 87 + ], + "score": 1.0, + "content": "CIFAR-100", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 88, + 500, + 164 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 88, + 500, + 164 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 88, + 500, + 164 + ], + "spans": [ + { + "bbox": [ + 108, + 88, + 500, + 164 + ], + "score": 0.786, + "type": "image", + "image_path": "e6c595174262ae29110808481345bc35e97724fca04c12c87c4596c09e29c9e0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 88, + 500, + 113.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 113.33333333333333, + 500, + 138.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 138.66666666666666, + 500, + 164.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 176, + 506, + 209 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Figure 5: Examples of learned images. Images are initialized from natural images in the top row", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 188, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 506, + 200 + ], + "score": 1.0, + "content": "(Init) and converge to images in the bottom row (Trained). Settings: 100 images distilled, no ZCA,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 199, + 240, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 240, + 210 + ], + "score": 1.0, + "content": "no label training, augmentations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 505, + 253 + ], + "lines": [], + "index": 6.5, + "bbox_fs": [ + 105, + 230, + 505, + 254 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 134, + 261, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 134, + 262, + 482, + 274 + ], + "spans": [ + { + "bbox": [ + 134, + 262, + 482, + 274 + ], + "score": 1.0, + "content": "• Visual analysis: qualitatively, KIP images tend to be richer in textures and contours.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 133, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 133, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "• Dimensional analysis: KIP produces images of higher intrinsic dimensionality (i.e. an", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 288, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 506, + 300 + ], + "score": 1.0, + "content": "estimate of the dimensionality of the manifold on which the images lie) than natural images.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 134, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 134, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "• Spectral analysis: unlike natural images, for which the bulk of generalization performance", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "is explained by a small number of top few eigendirections, KIP images leverage the whole", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 326, + 259, + 338 + ], + "spans": [ + { + "bbox": [ + 142, + 326, + 259, + 338 + ], + "score": 1.0, + "content": "spectrum much more evenly.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 133, + 262, + 506, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "Combined, these results let us conclude that KIP usually increases complexity, integrating features", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 356, + 342, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 342, + 369 + ], + "score": 1.0, + "content": "from many target images into much fewer support images.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 344, + 505, + 369 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 506, + 385 + ], + "score": 1.0, + "content": "Visual Analysis. A visual inspection of our learned data leads to intriguing observations in terms of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "interpretability. Figure 5 shows examples of KIP learned images from CIFAR-100. The resulting", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "images are heterogeneous in terms of how they can be interpreted as distilling the data. For instance,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "the distilled apple image seems to consist of many apples nested within a possibly larger apple,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "whereas the distilled bottle image starts off as two bottles and before transforming into one, while", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 440 + ], + "score": 1.0, + "content": "other classes (like the beaver) are altogether visually indistinct. Investigating and quantifying aspects", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "that make these images generalize so well is a promising avenue for future work. We show examples", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 449, + 240, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 240, + 460 + ], + "score": 1.0, + "content": "from other datasets in Figure A2.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 372, + 506, + 460 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "In Figure 6, we compare MNIST KIP data learned with and without label learning. For the latter case", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "with images and labels optimized jointly, while labels become more informative, encoding richer", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "inter-class information, the images become less interpretable. This behavior consistently leads to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "superior KRR results, but appears to not be leveraged as efficiently in the neural network transfer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 508, + 343, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 326, + 521 + ], + "score": 1.0, + "content": "setting (Table 2). Experimental details can be found in", + "type": "text" + }, + { + "bbox": [ + 326, + 509, + 339, + 520 + ], + "score": 0.73, + "content": "\\ S \\mathrm { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 508, + 343, + 521 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 465, + 506, + 521 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "Dimensional Analysis. We study the intrinsic dimension of KIP images and find that they tend to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "grow. Intrinsic dimension (ID) was first defined by Bennett [1969] as “the number of free parameters", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "required in a hypothetical signal generator capable of producing a close approximation to each signal", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 505, + 570 + ], + "score": 1.0, + "content": "in the collection”. In our context, it is the dimensionality of the manifold embedded into the image", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "space which contains all the support images. Intuitively, simple datasets have a low ID as they can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 579, + 439, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 439, + 591 + ], + "score": 1.0, + "content": "described by a small number of coordinates on the low-dimensional data manifold.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 524, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "ID can be defined and estimated differently based on assumptions on the manifold structure and the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "probability density function of the images on this manifold (see [Camastra and Staiano, 2016] for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "review). We use the “Two-NN” method developed by [Facco et al., 2017], which makes relatively few", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 630, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 506, + 641 + ], + "score": 1.0, + "content": "assumptions and allows to estimate ID only from two nearest-neighbor distances for each datapoint.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 595, + 506, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "Figure 7 shows that the ID is increasing for the learned KIP images as a function of the training step", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "across a variety of configurations (training with or without augmentations/label learning) and datasets.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "One might expect that a distillation procedure should decrease dimensionality. On the other hand,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "Ansuini et al. [2019] showed that ID increases in the earlier layers of a trained neural network. It", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 504, + 700 + ], + "score": 1.0, + "content": "remains to be understood if this latter observation has any relationship with our increased ID. Note", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "that ZCA preprocessing, which played an important role for getting the best performance for our", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 710, + 424, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 424, + 723 + ], + "score": 1.0, + "content": "RGB datasets, increases dimensionality of the underlying data (see Figure A4).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 644, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 135, + 68, + 476, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 68, + 476, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 68, + 476, + 298 + ], + "spans": [ + { + "bbox": [ + 135, + 68, + 476, + 298 + ], + "score": 0.977, + "type": "image", + "image_path": "744ef5e48025d1576b73820fcc92a143cc5fbf893ece6f8a392eca2b6478b9c4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 68, + 476, + 144.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 144.66666666666669, + 476, + 221.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 221.33333333333337, + 476, + 298.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 304, + 505, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "Figure 6: Dataset distillation with trainable and non-trainable labels. Top row: initialization of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "support images and labels. Middle row: trained images if labels remain fixed. Bottom row: trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 326, + 455, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 455, + 338 + ], + "score": 1.0, + "content": "images and labels, jointly optimized. Settings: 100 images distilled, no augmentations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 137, + 349, + 475, + 452 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 349, + 475, + 452 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 349, + 475, + 452 + ], + "spans": [ + { + "bbox": [ + 137, + 349, + 475, + 452 + ], + "score": 0.97, + "type": "image", + "image_path": "a06942204ec114b405c74d18fc52c11993ea495a87514472cc9da54909bdfd25.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 137, + 349, + 475, + 383.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 137, + 383.3333333333333, + 475, + 417.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 137, + 417.66666666666663, + 475, + 451.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 464, + 506, + 508 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "Figure 7: Intrinsic dimension of a learned datasets grows during training. As training progresses,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "intrinsic dimension of the learned dataset grows, indicating that training non-trivially transforms the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "data manifold. See Figures A2 and 6 for visual examples of learned images, and Figures A3 and A4", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 495, + 497, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 497, + 510 + ], + "score": 1.0, + "content": "for similar observations using other metrics and settings. Settings: 500 images distilled, no ZCA.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Spectral Analysis. Another distinguishing property of KIP images is how their spectral components", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "contribute to performance. In Figure 8, we spot how different spectral bands of KIP learned images", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "affect test performance as compared to their initial natural images. Here, we use the FC2, Conv-Vec8,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "and ConvNet architectures. We note that for natural images (light bars), most of their performance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 195, + 584 + ], + "score": 1.0, + "content": "is captured by the top", + "type": "text" + }, + { + "bbox": [ + 196, + 572, + 216, + 582 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "of eigenvalues. For KIP images, the performance is either more evenly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 583, + 484, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 484, + 594 + ], + "score": 1.0, + "content": "distributed across the bands (FC and Conv-Vec8) or else is skewed towards the tail (ConvNet).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 107, + 609, + 197, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 198, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 198, + 624 + ], + "score": 1.0, + "content": "5 Related Work", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "Dataset distillation was first studied in Wang et al. [2018]. The work of Sucholutsky and Schonlau", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "score": 1.0, + "content": "[2019], Bohdal et al. [2020] build upon it by distilling labels. Zhao et al. [2021] proposes condensing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "a training set by harnessing a gradient matching condition. Zhao and Bilen [2021] takes this idea", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "further by applying a suitable augmentation strategy. Note that while Zhao and Bilen [2021] is limited", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "score": 1.0, + "content": "in augmentation expressiveness (they have to apply a single augmentation per training iteration), we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "can sample augmentations independently per image in our target set per train step. Our work together", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "with Nguyen et al. [2021] are, to the best of our knowledge, the only works using kernel-based", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 710, + 362, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 362, + 723 + ], + "score": 1.0, + "content": "methods for dataset distillation on image classification datasets.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 752 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 135, + 68, + 476, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 68, + 476, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 68, + 476, + 298 + ], + "spans": [ + { + "bbox": [ + 135, + 68, + 476, + 298 + ], + "score": 0.977, + "type": "image", + "image_path": "744ef5e48025d1576b73820fcc92a143cc5fbf893ece6f8a392eca2b6478b9c4.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 135, + 68, + 476, + 144.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 144.66666666666669, + 476, + 221.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 135, + 221.33333333333337, + 476, + 298.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 304, + 505, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 317 + ], + "score": 1.0, + "content": "Figure 6: Dataset distillation with trainable and non-trainable labels. Top row: initialization of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "support images and labels. Middle row: trained images if labels remain fixed. Bottom row: trained", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 326, + 455, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 455, + 338 + ], + "score": 1.0, + "content": "images and labels, jointly optimized. Settings: 100 images distilled, no augmentations.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 137, + 349, + 475, + 452 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 137, + 349, + 475, + 452 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 349, + 475, + 452 + ], + "spans": [ + { + "bbox": [ + 137, + 349, + 475, + 452 + ], + "score": 0.97, + "type": "image", + "image_path": "a06942204ec114b405c74d18fc52c11993ea495a87514472cc9da54909bdfd25.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 137, + 349, + 475, + 383.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 137, + 383.3333333333333, + 475, + 417.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 137, + 417.66666666666663, + 475, + 451.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 464, + 506, + 508 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "Figure 7: Intrinsic dimension of a learned datasets grows during training. As training progresses,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "intrinsic dimension of the learned dataset grows, indicating that training non-trivially transforms the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "data manifold. See Figures A2 and 6 for visual examples of learned images, and Figures A3 and A4", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 495, + 497, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 497, + 510 + ], + "score": 1.0, + "content": "for similar observations using other metrics and settings. Settings: 500 images distilled, no ZCA.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "Spectral Analysis. Another distinguishing property of KIP images is how their spectral components", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "contribute to performance. In Figure 8, we spot how different spectral bands of KIP learned images", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "affect test performance as compared to their initial natural images. Here, we use the FC2, Conv-Vec8,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 561, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 573 + ], + "score": 1.0, + "content": "and ConvNet architectures. We note that for natural images (light bars), most of their performance", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 572, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 195, + 584 + ], + "score": 1.0, + "content": "is captured by the top", + "type": "text" + }, + { + "bbox": [ + 196, + 572, + 216, + 582 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 572, + 505, + 584 + ], + "score": 1.0, + "content": "of eigenvalues. For KIP images, the performance is either more evenly", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 583, + 484, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 484, + 594 + ], + "score": 1.0, + "content": "distributed across the bands (FC and Conv-Vec8) or else is skewed towards the tail (ConvNet).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 528, + 506, + 594 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 609, + 197, + 623 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 198, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 198, + 624 + ], + "score": 1.0, + "content": "5 Related Work", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "Dataset distillation was first studied in Wang et al. [2018]. The work of Sucholutsky and Schonlau", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 658 + ], + "score": 1.0, + "content": "[2019], Bohdal et al. [2020] build upon it by distilling labels. Zhao et al. [2021] proposes condensing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 668 + ], + "score": 1.0, + "content": "a training set by harnessing a gradient matching condition. Zhao and Bilen [2021] takes this idea", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "further by applying a suitable augmentation strategy. Note that while Zhao and Bilen [2021] is limited", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 689 + ], + "score": 1.0, + "content": "in augmentation expressiveness (they have to apply a single augmentation per training iteration), we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "can sample augmentations independently per image in our target set per train step. Our work together", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "with Nguyen et al. [2021] are, to the best of our knowledge, the only works using kernel-based", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 710, + 362, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 362, + 723 + ], + "score": 1.0, + "content": "methods for dataset distillation on image classification datasets.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 634, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 204, + 74, + 406, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 204, + 74, + 406, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 74, + 406, + 231 + ], + "spans": [ + { + "bbox": [ + 204, + 74, + 406, + 231 + ], + "score": 0.964, + "type": "image", + "image_path": "4c290bf4e301cc2883615e72ab385da78ab75a5398ad90dbbe6ea01579e15c20.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 204, + 74, + 406, + 86.07692307692308 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 204, + 86.07692307692308, + 406, + 98.15384615384616 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 204, + 98.15384615384616, + 406, + 110.23076923076924 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 110.23076923076924, + 406, + 122.30769230769232 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 122.30769230769232, + 406, + 134.3846153846154 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 204, + 134.3846153846154, + 406, + 146.46153846153845 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 204, + 146.46153846153845, + 406, + 158.53846153846152 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 204, + 158.53846153846152, + 406, + 170.61538461538458 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 204, + 170.61538461538458, + 406, + 182.69230769230765 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 204, + 182.69230769230765, + 406, + 194.76923076923072 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 204, + 194.76923076923072, + 406, + 206.84615384615378 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 204, + 206.84615384615378, + 406, + 218.92307692307685 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 204, + 218.92307692307685, + 406, + 230.99999999999991 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Figure 8: Spectral contribution to test accuracy shifts to the tail. By setting the ridge-parameter", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 255, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 307, + 272 + ], + "score": 1.0, + "content": "to zero in kernel-ridge regression and composing", + "type": "text" + }, + { + "bbox": [ + 307, + 255, + 337, + 270 + ], + "score": 0.93, + "content": "K _ { X _ { s } X _ { s } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 255, + 506, + 272 + ], + "score": 1.0, + "content": "with the spectral projection onto various", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "eigenspaces, we can explore how different spectral bands affect test accuracy of kernel ridge-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 456, + 291 + ], + "score": 1.0, + "content": "regression. We plot the relative change in test accuracy using contiguous bands of", + "type": "text" + }, + { + "bbox": [ + 456, + 279, + 476, + 289 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 290, + 382, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 365, + 302 + ], + "score": 1.0, + "content": "eigenvalues. Settings: CIFAR-10, 500 images. Further details in", + "type": "text" + }, + { + "bbox": [ + 365, + 290, + 379, + 300 + ], + "score": 0.82, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 290, + 382, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 506, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "Our use of kernels stems from the correspondence between infinitely-wide neural networks and kernel", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "methods [Neal, 1994, Lee et al., 2018, Matthews et al., 2018, Jacot et al., 2018, Novak et al., 2019,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "Garriga-Alonso et al., 2019, Arora et al., 2019, Yang, 2019a,b, Hron et al., 2020] and the extended cor-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "respondence with the finite width corrections [Dyer and Gur-Ari, 2020, Huang and Yau, 2020, Yaida,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "2020]. These correspondences underlie the transferability of our KRR results to neural networks ,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "and have been utilized in understanding trainability [Xiao et al., 2020], generalizations [Adlam and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "score": 1.0, + "content": "Pennington, 2020], training dynamics [Lewkowycz et al., 2020, Lewkowycz and Gur-Ari, 2020],", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "uncertainty [Adlam et al., 2021], and demonstrated their effectiveness for smaller datasets [Arora", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 428, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 428, + 425 + ], + "score": 1.0, + "content": "et al., 2020] and neural architecture search [Park et al., 2020, Chen et al., 2021].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 183, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 185, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 185, + 454 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "We performed an extensive study of dataset distillation using the KIP and LS algorithms applied to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "convolutional architectures, obtaining SOTA results on a variety of image classification datasets. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "some cases, our learned datasets were more effective than a natural dataset two orders of magnitude", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 498, + 473, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 473, + 510 + ], + "score": 1.0, + "content": "larger in size. There are many interesting followup directions and questions from our work:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "First, integrating efficient kernel-approximation methods into our algorithms, such as those of Zandieh", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "score": 1.0, + "content": "et al. [2021], will reduce computational burden and enable scaling up to larger datasets. In this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "direction, the understanding of how various resources (e.g. data, parameter count, compute) scale", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "when optimizing for neural network performance has received significant attention as machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "learning models continue to stretch computational limits [Hestness et al., 2017, Rosenfeld et al., 2020,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "Kaplan et al., 2020, Bahri et al., 2021]. Developing our understanding of how to harness smaller, yet", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "more useful representations data would aid in such endeavors. In particular, it would be especially", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 441, + 603 + ], + "score": 1.0, + "content": "interesting to explore how well datasets can be compressed as they scale up in size.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Second, LS and KIP with label learning shows that optimizing labels is a very powerful tool for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "dataset distillation. The labels we obtain are quite far away from standard, interpretable labels and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "we feel their effectiveness suggests that understanding of how to optimally label data warrants further", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 637, + 134, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 134, + 654 + ], + "score": 1.0, + "content": "study.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "Finally, the novel features obtained by our learned datasets, and those of dataset distillation methods", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "score": 1.0, + "content": "in general, may reveal insights into interpretability and the nature of sample-efficient representations.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "For instance, observe the bee and bicycle images in Figure 5: the bee class distills into what", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "appears to be spurious visual features (e.g. pollen), while the bicycle class distills to the essential", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "contours of a typical bicycle. Additional analyses and explorations of this type could offer insights", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 711, + 397, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 397, + 723 + ], + "score": 1.0, + "content": "into the perennial question of how neural networks learn and generalize.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 301, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 755 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 755 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 237, + 74, + 396, + 83 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 204, + 74, + 406, + 231 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 204, + 74, + 406, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 204, + 74, + 406, + 231 + ], + "spans": [ + { + "bbox": [ + 204, + 74, + 406, + 231 + ], + "score": 0.964, + "type": "image", + "image_path": "4c290bf4e301cc2883615e72ab385da78ab75a5398ad90dbbe6ea01579e15c20.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 204, + 74, + 406, + 86.07692307692308 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 204, + 86.07692307692308, + 406, + 98.15384615384616 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 204, + 98.15384615384616, + 406, + 110.23076923076924 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 204, + 110.23076923076924, + 406, + 122.30769230769232 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 204, + 122.30769230769232, + 406, + 134.3846153846154 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 204, + 134.3846153846154, + 406, + 146.46153846153845 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 204, + 146.46153846153845, + 406, + 158.53846153846152 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 204, + 158.53846153846152, + 406, + 170.61538461538458 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 204, + 170.61538461538458, + 406, + 182.69230769230765 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 204, + 182.69230769230765, + 406, + 194.76923076923072 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 204, + 194.76923076923072, + 406, + 206.84615384615378 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 204, + 206.84615384615378, + 406, + 218.92307692307685 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 204, + 218.92307692307685, + 406, + 230.99999999999991 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 243, + 505, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Figure 8: Spectral contribution to test accuracy shifts to the tail. By setting the ridge-parameter", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 255, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 307, + 272 + ], + "score": 1.0, + "content": "to zero in kernel-ridge regression and composing", + "type": "text" + }, + { + "bbox": [ + 307, + 255, + 337, + 270 + ], + "score": 0.93, + "content": "K _ { X _ { s } X _ { s } } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 255, + 506, + 272 + ], + "score": 1.0, + "content": "with the spectral projection onto various", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "eigenspaces, we can explore how different spectral bands affect test accuracy of kernel ridge-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 456, + 291 + ], + "score": 1.0, + "content": "regression. We plot the relative change in test accuracy using contiguous bands of", + "type": "text" + }, + { + "bbox": [ + 456, + 279, + 476, + 289 + ], + "score": 0.86, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "of the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 290, + 382, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 365, + 302 + ], + "score": 1.0, + "content": "eigenvalues. Settings: CIFAR-10, 500 images. Further details in", + "type": "text" + }, + { + "bbox": [ + 365, + 290, + 379, + 300 + ], + "score": 0.82, + "content": "\\ S", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 290, + 382, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 506, + 424 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "Our use of kernels stems from the correspondence between infinitely-wide neural networks and kernel", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 348 + ], + "score": 1.0, + "content": "methods [Neal, 1994, Lee et al., 2018, Matthews et al., 2018, Jacot et al., 2018, Novak et al., 2019,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "Garriga-Alonso et al., 2019, Arora et al., 2019, Yang, 2019a,b, Hron et al., 2020] and the extended cor-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 370 + ], + "score": 1.0, + "content": "respondence with the finite width corrections [Dyer and Gur-Ari, 2020, Huang and Yau, 2020, Yaida,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "2020]. These correspondences underlie the transferability of our KRR results to neural networks ,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "and have been utilized in understanding trainability [Xiao et al., 2020], generalizations [Adlam and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 402 + ], + "score": 1.0, + "content": "Pennington, 2020], training dynamics [Lewkowycz et al., 2020, Lewkowycz and Gur-Ari, 2020],", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "uncertainty [Adlam et al., 2021], and demonstrated their effectiveness for smaller datasets [Arora", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 412, + 428, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 428, + 425 + ], + "score": 1.0, + "content": "et al., 2020] and neural architecture search [Park et al., 2020, Chen et al., 2021].", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 325, + 506, + 425 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 183, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 185, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 185, + 454 + ], + "score": 1.0, + "content": "6 Conclusion", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "We performed an extensive study of dataset distillation using the KIP and LS algorithms applied to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "convolutional architectures, obtaining SOTA results on a variety of image classification datasets. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "some cases, our learned datasets were more effective than a natural dataset two orders of magnitude", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 498, + 473, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 473, + 510 + ], + "score": 1.0, + "content": "larger in size. There are many interesting followup directions and questions from our work:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 465, + 506, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "First, integrating efficient kernel-approximation methods into our algorithms, such as those of Zandieh", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 505, + 537 + ], + "score": 1.0, + "content": "et al. [2021], will reduce computational burden and enable scaling up to larger datasets. In this", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "score": 1.0, + "content": "direction, the understanding of how various resources (e.g. data, parameter count, compute) scale", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 558 + ], + "score": 1.0, + "content": "when optimizing for neural network performance has received significant attention as machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "learning models continue to stretch computational limits [Hestness et al., 2017, Rosenfeld et al., 2020,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 569, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 581 + ], + "score": 1.0, + "content": "Kaplan et al., 2020, Bahri et al., 2021]. Developing our understanding of how to harness smaller, yet", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 505, + 592 + ], + "score": 1.0, + "content": "more useful representations data would aid in such endeavors. In particular, it would be especially", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 590, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 441, + 603 + ], + "score": 1.0, + "content": "interesting to explore how well datasets can be compressed as they scale up in size.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 514, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 607, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "Second, LS and KIP with label learning shows that optimizing labels is a very powerful tool for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "dataset distillation. The labels we obtain are quite far away from standard, interpretable labels and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "we feel their effectiveness suggests that understanding of how to optimally label data warrants further", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 637, + 134, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 134, + 654 + ], + "score": 1.0, + "content": "study.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 606, + 505, + 654 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 505, + 667 + ], + "score": 1.0, + "content": "Finally, the novel features obtained by our learned datasets, and those of dataset distillation methods", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 679 + ], + "score": 1.0, + "content": "in general, may reveal insights into interpretability and the nature of sample-efficient representations.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "For instance, observe the bee and bicycle images in Figure 5: the bee class distills into what", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "appears to be spurious visual features (e.g. pollen), while the bicycle class distills to the essential", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "contours of a typical bicycle. Additional analyses and explorations of this type could offer insights", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 711, + 397, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 397, + 723 + ], + "score": 1.0, + "content": "into the perennial question of how neural networks learn and generalize.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 656, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "Acknowledgments We would like to acknowledge special thanks to Samuel S. Schoenholz, who", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "proposed and helped develop the overall strategy for our distributed KIP learning methodology. We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 436, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 436, + 107 + ], + "score": 1.0, + "content": "are also grateful to Ekin Dogus Cubuk and Manuel Kroiss for helpful discussions.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 120, + 164, + 133 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 165, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 165, + 136 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 139, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 505, + 150 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 149, + 423, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 423, + 161 + ], + "score": 1.0, + "content": "networks. Advances in neural information processing systems, 25:1097–1105, 2012.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 504, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 504, + 179 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 177, + 414, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 414, + 189 + ], + "score": 1.0, + "content": "transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 207, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 117, + 207, + 506, + 217 + ], + "score": 1.0, + "content": "Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 217, + 262, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 217, + 262, + 227 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 254, + 425, + 267 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 425, + 267 + ], + "score": 1.0, + "content": "Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 286 + ], + "score": 1.0, + "content": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A Efros. Dataset distillation. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 209, + 294 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 209, + 294 + ], + "score": 1.0, + "content": "arXiv:1811.10959, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "Ondrej Bohdal, Yongxin Yang, and Timothy Hospedales. Flexible dataset distillation: Learn labels instead of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 312, + 293, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 293, + 322 + ], + "score": 1.0, + "content": "images. arXiv preprint arXiv:2006.08572, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Timothy Nguyen, Zhourong Chen, and Jaehoon Lee. Dataset meta-learning from kernel ridge-regression. In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 339, + 340, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 340, + 351 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 504, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Bo Zhao and Hakan Bilen. Dataset condensation with differentiable siamese augmentation. In International", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 264, + 379 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 264, + 379 + ], + "score": 1.0, + "content": "Conference on Machine Learning, 2021.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 399 + ], + "score": 1.0, + "content": "Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 397, + 330, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 330, + 408 + ], + "score": 1.0, + "content": "Adversarial examples are not bugs, they are features, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 504, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Minyoung Huh, Pulkit Agrawal, and Alexei A Efros. What makes imagenet good for transfer learning? arXiv", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 425, + 240, + 436 + ], + "spans": [ + { + "bbox": [ + 114, + 425, + 240, + 436 + ], + "score": 1.0, + "content": "preprint arXiv:1608.08614, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 453, + 361, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 361, + 465 + ], + "score": 1.0, + "content": "architectures, and training. arXiv preprint arXiv:2006.12433, 2020.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 104, + 471, + 504, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Zalán Borsos, Mojmír Mutny, and Andreas Krause. Coresets via bilevel optimization for continual learning and `", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 482, + 303, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 482, + 303, + 493 + ], + "score": 1.0, + "content": "streaming. arXiv preprint arXiv:2006.03875, 2020.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 500, + 504, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Bo Zhao, Konda Reddy Mopuri, and Hakan Bilen. Dataset condensation with gradient matching. In International", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 510, + 291, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 291, + 522 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "Roman Novak, Lechao Xiao, Jaehoon Lee, Yasaman Bahri, Greg Yang, Jiri Hron, Daniel A. Abolafia, Jeffrey", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "Pennington, and Jascha Sohl-Dickstein. Bayesian deep convolutional networks with many channels are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 423, + 560 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 423, + 560 + ], + "score": 1.0, + "content": "gaussian processes. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 503, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "Adrià Garriga-Alonso, Laurence Aitchison, and Carl Edward Rasmussen. Deep convolutional networks as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 577, + 453, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 453, + 589 + ], + "score": 1.0, + "content": "shallow gaussian processes. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 616, + 272, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 616, + 272, + 627 + ], + "score": 1.0, + "content": "8141–8150. Curran Associates, Inc., 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 504, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 504, + 646 + ], + "score": 1.0, + "content": "Zhiyuan Li, Ruosong Wang, Dingli Yu, Simon S Du, Wei Hu, Ruslan Salakhutdinov, and Sanjeev Arora.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 644, + 435, + 655 + ], + "spans": [ + { + "bbox": [ + 116, + 644, + 435, + 655 + ], + "score": 1.0, + "content": "Enhanced convolutional neural tangent kernels. arXiv preprint arXiv:1911.00809, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "Vaishaal Shankar, Alex Chengyu Fang, Wenshuo Guo, Sara Fridovich-Keil, Ludwig Schmidt, Jonathan Ragan-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 673, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 116, + 673, + 505, + 684 + ], + "score": 1.0, + "content": "Kelley, and Benjamin Recht. Neural kernels without tangents. In International Conference on Machine", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 683, + 176, + 694 + ], + "spans": [ + { + "bbox": [ + 116, + 683, + 176, + 694 + ], + "score": 1.0, + "content": "Learning, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 105, + 701, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 714 + ], + "score": 1.0, + "content": "Alberto Bietti. Approximation and learning with deep convolutional models: a kernel perspective. arXiv preprint", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 711, + 209, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 711, + 209, + 722 + ], + "score": 1.0, + "content": "arXiv:2102.10032, 2021.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 310, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 312, + 754 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 72, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "Acknowledgments We would like to acknowledge special thanks to Samuel S. Schoenholz, who", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 505, + 96 + ], + "score": 1.0, + "content": "proposed and helped develop the overall strategy for our distributed KIP learning methodology. We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 436, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 436, + 107 + ], + "score": 1.0, + "content": "are also grateful to Ekin Dogus Cubuk and Manuel Kroiss for helpful discussions.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 72, + 505, + 107 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 120, + 164, + 133 + ], + "lines": [ + { + "bbox": [ + 106, + 119, + 165, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 165, + 136 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 139, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 505, + 150 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 149, + 423, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 149, + 423, + 161 + ], + "score": 1.0, + "content": "networks. Advances in neural information processing systems, 25:1097–1105, 2012.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 139, + 505, + 161 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 167, + 504, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 168, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 504, + 179 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 177, + 414, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 177, + 414, + 189 + ], + "score": 1.0, + "content": "transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 168, + 504, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 504, + 227 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 207, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 117, + 207, + 506, + 217 + ], + "score": 1.0, + "content": "Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 217, + 262, + 227 + ], + "spans": [ + { + "bbox": [ + 117, + 217, + 262, + 227 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 196, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 504, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 505, + 256 + ], + "score": 1.0, + "content": "Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 254, + 425, + 267 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 425, + 267 + ], + "score": 1.0, + "content": "Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 234, + 505, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 506, + 286 + ], + "score": 1.0, + "content": "Tongzhou Wang, Jun-Yan Zhu, Antonio Torralba, and Alexei A Efros. Dataset distillation. arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 282, + 209, + 294 + ], + "spans": [ + { + "bbox": [ + 115, + 282, + 209, + 294 + ], + "score": 1.0, + "content": "arXiv:1811.10959, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 270, + 506, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "Ondrej Bohdal, Yongxin Yang, and Timothy Hospedales. Flexible dataset distillation: Learn labels instead of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 312, + 293, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 293, + 322 + ], + "score": 1.0, + "content": "images. arXiv preprint arXiv:2006.08572, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 300, + 506, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 505, + 351 + ], + "lines": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "Timothy Nguyen, Zhourong Chen, and Jaehoon Lee. Dataset meta-learning from kernel ridge-regression. In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 339, + 340, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 339, + 340, + 351 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 329, + 505, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 504, + 379 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Bo Zhao and Hakan Bilen. Dataset condensation with differentiable siamese augmentation. In International", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 264, + 379 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 264, + 379 + ], + "score": 1.0, + "content": "Conference on Machine Learning, 2021.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 357, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 506, + 399 + ], + "score": 1.0, + "content": "Andrew Ilyas, Shibani Santurkar, Dimitris Tsipras, Logan Engstrom, Brandon Tran, and Aleksander Madry.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 397, + 330, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 330, + 408 + ], + "score": 1.0, + "content": "Adversarial examples are not bugs, they are features, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 385, + 506, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 504, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "Minyoung Huh, Pulkit Agrawal, and Alexei A Efros. What makes imagenet good for transfer learning? arXiv", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 114, + 425, + 240, + 436 + ], + "spans": [ + { + "bbox": [ + 114, + 425, + 240, + 436 + ], + "score": 1.0, + "content": "preprint arXiv:1608.08614, 2016.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 415, + 505, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 504, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Katherine L Hermann and Andrew K Lampinen. What shapes feature representations? exploring datasets,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 453, + 361, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 361, + 465 + ], + "score": 1.0, + "content": "architectures, and training. arXiv preprint arXiv:2006.12433, 2020.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 443, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 471, + 504, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "Zalán Borsos, Mojmír Mutny, and Andreas Krause. Coresets via bilevel optimization for continual learning and `", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 482, + 303, + 493 + ], + "spans": [ + { + "bbox": [ + 116, + 482, + 303, + 493 + ], + "score": 1.0, + "content": "streaming. arXiv preprint arXiv:2006.03875, 2020.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 471, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 500, + 504, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Bo Zhao, Konda Reddy Mopuri, and Hakan Bilen. Dataset condensation with gradient matching. In International", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 510, + 291, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 291, + 522 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 500, + 505, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "Roman Novak, Lechao Xiao, Jaehoon Lee, Yasaman Bahri, Greg Yang, Jiri Hron, Daniel A. Abolafia, Jeffrey", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "Pennington, and Jascha Sohl-Dickstein. Bayesian deep convolutional networks with many channels are", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 423, + 560 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 423, + 560 + ], + "score": 1.0, + "content": "gaussian processes. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 527, + 505, + 560 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 503, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 505, + 579 + ], + "score": 1.0, + "content": "Adrià Garriga-Alonso, Laurence Aitchison, and Carl Edward Rasmussen. Deep convolutional networks as", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 577, + 453, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 577, + 453, + 589 + ], + "score": 1.0, + "content": "shallow gaussian processes. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 568, + 505, + 589 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "Sanjeev Arora, Simon S Du, Wei Hu, Zhiyuan Li, Russ R Salakhutdinov, and Ruosong Wang. On exact", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 605, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 605, + 505, + 619 + ], + "score": 1.0, + "content": "computation with an infinitely wide neural net. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 616, + 272, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 616, + 272, + 627 + ], + "score": 1.0, + "content": "8141–8150. Curran Associates, Inc., 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 596, + 505, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 503, + 655 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 504, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 504, + 646 + ], + "score": 1.0, + "content": "Zhiyuan Li, Ruosong Wang, Dingli Yu, Simon S Du, Wei Hu, Ruslan Salakhutdinov, and Sanjeev Arora.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 644, + 435, + 655 + ], + "spans": [ + { + "bbox": [ + 116, + 644, + 435, + 655 + ], + "score": 1.0, + "content": "Enhanced convolutional neural tangent kernels. arXiv preprint arXiv:1911.00809, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 635, + 504, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "Vaishaal Shankar, Alex Chengyu Fang, Wenshuo Guo, Sara Fridovich-Keil, Ludwig Schmidt, Jonathan Ragan-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 673, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 116, + 673, + 505, + 684 + ], + "score": 1.0, + "content": "Kelley, and Benjamin Recht. Neural kernels without tangents. In International Conference on Machine", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 683, + 176, + 694 + ], + "spans": [ + { + "bbox": [ + 116, + 683, + 176, + 694 + ], + "score": 1.0, + "content": "Learning, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 662, + 505, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 701, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 714 + ], + "score": 1.0, + "content": "Alberto Bietti. Approximation and learning with deep convolutional models: a kernel perspective. arXiv preprint", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 711, + 209, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 711, + 209, + 722 + ], + "score": 1.0, + "content": "arXiv:2102.10032, 2021.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 700, + 505, + 722 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 42, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "score": 1.0, + "content": "Sanjeev Arora, Simon S. Du, Zhiyuan Li, Ruslan Salakhutdinov, Ruosong Wang, and Dingli Yu. Harnessing", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 114, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "the power of infinitely wide deep nets on small-data tasks. In International Conference on Learning", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 93, + 424, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 424, + 105 + ], + "score": 1.0, + "content": "Representations, 2020. URL https://openreview.net/forum?id=rkl8sJBYvH.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 110, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 122 + ], + "score": 1.0, + "content": "Jaehoon Lee, Samuel S Schoenholz, Jeffrey Pennington, Ben Adlam, Lechao Xiao, Roman Novak, and Jascha", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "Sohl-Dickstein. Finite versus infinite neural networks: an empirical study. In Advances in Neural Information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 129, + 215, + 144 + ], + "spans": [ + { + "bbox": [ + 114, + 129, + 215, + 144 + ], + "score": 1.0, + "content": "Processing Systems, 2020.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 148, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 506, + 160 + ], + "score": 1.0, + "content": "Roman Novak, Lechao Xiao, Jiri Hron, Jaehoon Lee, Alexander A. Alemi, Jascha Sohl-Dickstein, and Samuel S.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 115, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "Schoenholz. Neural tangents: Fast and easy infinite neural networks in python. In International Conference", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 168, + 464, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 168, + 464, + 180 + ], + "score": 1.0, + "content": "on Learning Representations, 2020. URL https://github.com/google/neural-tangents.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 114, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 114, + 194, + 381, + 209 + ], + "score": 1.0, + "content": "Skye Wanderman-Milne. JAX: composable transformations of Python", + "type": "text" + }, + { + "bbox": [ + 382, + 198, + 388, + 205 + ], + "score": 0.25, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "NumPy programs, 2018. URL", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 206, + 251, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 251, + 218 + ], + "score": 1.0, + "content": "http://github.com/google/jax.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 222, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 107, + 222, + 506, + 234 + ], + "score": 1.0, + "content": "Yann LeCun, Corinna Cortes, and CJ Burges. Mnist handwritten digit database. ATT Labs [Online]. Available:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 232, + 272, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 272, + 244 + ], + "score": 1.0, + "content": "http://yann.lecun.com/exdb/mnist, 2, 2010.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 261, + 215, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 215, + 272 + ], + "score": 1.0, + "content": "learning algorithms, 2017.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 107, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 288, + 324, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 324, + 300 + ], + "score": 1.0, + "content": "natural images with unsupervised feature learning. 2011.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 306, + 455, + 317 + ], + "spans": [ + { + "bbox": [ + 107, + 306, + 455, + 317 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and generalization in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 333, + 403, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 403, + 345 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Jaehoon Lee, Lechao Xiao, Samuel S. Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 114, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 114, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 370, + 330, + 382 + ], + "spans": [ + { + "bbox": [ + 114, + 370, + 330, + 382 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 399, + 314, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 314, + 409 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 416, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 506, + 428 + ], + "score": 1.0, + "content": "Ethan Dyer and Guy Gur-Ari. Asymptotics of wide networks from feynman diagrams. In International Confer-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 426, + 488, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 433, + 438 + ], + "score": 1.0, + "content": "ence on Learning Representations, 2020. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 433, + 427, + 439, + 434 + ], + "score": 0.28, + "content": "\\equiv", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 426, + 488, + 438 + ], + "score": 1.0, + "content": "S1gFvANKDS.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "Anders Andreassen and Ethan Dyer. Asymptotics of wide convolutional neural networks. arxiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 453, + 210, + 465 + ], + "spans": [ + { + "bbox": [ + 114, + 453, + 210, + 465 + ], + "score": 1.0, + "content": "arXiv:2008.08675, 2020.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "Sho Yaida. Non-Gaussian processes and neural networks at finite widths. In Mathematical and Scientific", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 480, + 253, + 492 + ], + "spans": [ + { + "bbox": [ + 114, + 480, + 253, + 492 + ], + "score": 1.0, + "content": "Machine Learning Conference, 2020.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 496, + 507, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 507, + 511 + ], + "score": 1.0, + "content": "R. Bennett. The intrinsic dimensionality of signal collections. IEEE Transactions on Information Theory, 15(5):", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 509, + 295, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 295, + 519 + ], + "score": 1.0, + "content": "517–525, 1969. doi: 10.1109/TIT.1969.1054365.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "Francesco Camastra and Antonino Staiano. Intrinsic dimension estimation: Advances and open problems.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 534, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 114, + 534, + 507, + 548 + ], + "score": 1.0, + "content": "Information Sciences, 328:26–41, 2016. ISSN 0020-0255. doi: https://doi.org/10.1016/j.ins.2015.08.029.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 546, + 456, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 456, + 558 + ], + "score": 1.0, + "content": "URL https://www.sciencedirect.com/science/article/pii/S0020025515006179.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 563, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 575 + ], + "score": 1.0, + "content": "Elena Facco, Maria d’Errico, Alex Rodriguez, and Alessandro Laio. Estimating the intrinsic dimension of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 574, + 419, + 586 + ], + "spans": [ + { + "bbox": [ + 115, + 574, + 419, + 586 + ], + "score": 1.0, + "content": "datasets by a minimal neighborhood information. Scientific reports, 7(1):1–8, 2017.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "A. Ansuini, A. Laio, J. Macke, and D. Zoccolan. Intrinsic dimension of data representations in deep neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 600, + 223, + 613 + ], + "spans": [ + { + "bbox": [ + 114, + 600, + 223, + 613 + ], + "score": 1.0, + "content": "networks. In NeurIPS, 2019.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "score": 1.0, + "content": "Ilia Sucholutsky and Matthias Schonlau. Soft-label dataset distillation and text dataset distillation. arXiv preprint", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 628, + 209, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 209, + 640 + ], + "score": 1.0, + "content": "arXiv:1910.02551, 2019.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 474, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 474, + 658 + ], + "score": 1.0, + "content": "Radford M. Neal. Priors for infinite networks (tech. rep. no. crg-tr-94-1). University of Toronto, 1994.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "Jaehoon Lee, Yasaman Bahri, Roman Novak, Sam Schoenholz, Jeffrey Pennington, and Jascha Sohl-dickstein.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 114, + 673, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 114, + 673, + 507, + 686 + ], + "score": 1.0, + "content": "Deep neural networks as gaussian processes. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "Alexander G. de G. Matthews, Jiri Hron, Mark Rowland, Richard E. Turner, and Zoubin Ghahramani. Gaussian", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 114, + 700, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 114, + 700, + 507, + 714 + ], + "score": 1.0, + "content": "process behaviour in wide deep neural networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 710, + 141, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 141, + 723 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 24 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 42, + 507, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 71, + 506, + 86 + ], + "score": 1.0, + "content": "Sanjeev Arora, Simon S. Du, Zhiyuan Li, Ruslan Salakhutdinov, Ruosong Wang, and Dingli Yu. Harnessing", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 114, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "the power of infinitely wide deep nets on small-data tasks. In International Conference on Learning", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 93, + 424, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 424, + 105 + ], + "score": 1.0, + "content": "Representations, 2020. URL https://openreview.net/forum?id=rkl8sJBYvH.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 110, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 122 + ], + "score": 1.0, + "content": "Jaehoon Lee, Samuel S Schoenholz, Jeffrey Pennington, Ben Adlam, Lechao Xiao, Roman Novak, and Jascha", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 121, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 121, + 505, + 133 + ], + "score": 1.0, + "content": "Sohl-Dickstein. Finite versus infinite neural networks: an empirical study. In Advances in Neural Information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 129, + 215, + 144 + ], + "spans": [ + { + "bbox": [ + 114, + 129, + 215, + 144 + ], + "score": 1.0, + "content": "Processing Systems, 2020.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 148, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 506, + 160 + ], + "score": 1.0, + "content": "Roman Novak, Lechao Xiao, Jiri Hron, Jaehoon Lee, Alexander A. Alemi, Jascha Sohl-Dickstein, and Samuel S.", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 115, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "Schoenholz. Neural tangents: Fast and easy infinite neural networks in python. In International Conference", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 168, + 464, + 180 + ], + "spans": [ + { + "bbox": [ + 115, + 168, + 464, + 180 + ], + "score": 1.0, + "content": "on Learning Representations, 2020. URL https://github.com/google/neural-tangents.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 185, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 505, + 198 + ], + "score": 1.0, + "content": "James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal Maclaurin, and", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 194, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 114, + 194, + 381, + 209 + ], + "score": 1.0, + "content": "Skye Wanderman-Milne. JAX: composable transformations of Python", + "type": "text" + }, + { + "bbox": [ + 382, + 198, + 388, + 205 + ], + "score": 0.25, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 194, + 506, + 209 + ], + "score": 1.0, + "content": "NumPy programs, 2018. URL", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 206, + 251, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 206, + 251, + 218 + ], + "score": 1.0, + "content": "http://github.com/google/jax.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 222, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 107, + 222, + 506, + 234 + ], + "score": 1.0, + "content": "Yann LeCun, Corinna Cortes, and CJ Burges. Mnist handwritten digit database. ATT Labs [Online]. Available:", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 232, + 272, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 272, + 244 + ], + "score": 1.0, + "content": "http://yann.lecun.com/exdb/mnist, 2, 2010.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 505, + 263 + ], + "score": 1.0, + "content": "Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-mnist: a novel image dataset for benchmarking machine", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 261, + 215, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 215, + 272 + ], + "score": 1.0, + "content": "learning algorithms, 2017.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 107, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 288, + 324, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 324, + 300 + ], + "score": 1.0, + "content": "natural images with unsupervised feature learning. 2011.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 306, + 455, + 317 + ], + "spans": [ + { + "bbox": [ + 107, + 306, + 455, + 317 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images. Technical report, 2009.", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "Arthur Jacot, Franck Gabriel, and Clement Hongler. Neural tangent kernel: Convergence and generalization in", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 333, + 403, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 403, + 345 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "Jaehoon Lee, Lechao Xiao, Samuel S. Schoenholz, Yasaman Bahri, Roman Novak, Jascha Sohl-Dickstein, and", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 114, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Jeffrey Pennington. Wide neural networks of any depth evolve as linear models under gradient descent. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 370, + 330, + 382 + ], + "spans": [ + { + "bbox": [ + 114, + 370, + 330, + 382 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "Jiaoyang Huang and Horng-Tzer Yau. Dynamics of deep neural networks and neural tangent hierarchy. In", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 399, + 314, + 409 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 314, + 409 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 416, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 506, + 428 + ], + "score": 1.0, + "content": "Ethan Dyer and Guy Gur-Ari. Asymptotics of wide networks from feynman diagrams. In International Confer-", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 426, + 488, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 426, + 433, + 438 + ], + "score": 1.0, + "content": "ence on Learning Representations, 2020. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 433, + 427, + 439, + 434 + ], + "score": 0.28, + "content": "\\equiv", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 426, + 488, + 438 + ], + "score": 1.0, + "content": "S1gFvANKDS.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "Anders Andreassen and Ethan Dyer. Asymptotics of wide convolutional neural networks. arxiv preprint", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 453, + 210, + 465 + ], + "spans": [ + { + "bbox": [ + 114, + 453, + 210, + 465 + ], + "score": 1.0, + "content": "arXiv:2008.08675, 2020.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "Sho Yaida. Non-Gaussian processes and neural networks at finite widths. In Mathematical and Scientific", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 480, + 253, + 492 + ], + "spans": [ + { + "bbox": [ + 114, + 480, + 253, + 492 + ], + "score": 1.0, + "content": "Machine Learning Conference, 2020.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 496, + 507, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 507, + 511 + ], + "score": 1.0, + "content": "R. Bennett. The intrinsic dimensionality of signal collections. IEEE Transactions on Information Theory, 15(5):", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 509, + 295, + 519 + ], + "spans": [ + { + "bbox": [ + 116, + 509, + 295, + 519 + ], + "score": 1.0, + "content": "517–525, 1969. doi: 10.1109/TIT.1969.1054365.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "Francesco Camastra and Antonino Staiano. Intrinsic dimension estimation: Advances and open problems.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 534, + 507, + 548 + ], + "spans": [ + { + "bbox": [ + 114, + 534, + 507, + 548 + ], + "score": 1.0, + "content": "Information Sciences, 328:26–41, 2016. ISSN 0020-0255. doi: https://doi.org/10.1016/j.ins.2015.08.029.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 546, + 456, + 558 + ], + "spans": [ + { + "bbox": [ + 115, + 546, + 456, + 558 + ], + "score": 1.0, + "content": "URL https://www.sciencedirect.com/science/article/pii/S0020025515006179.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 563, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 575 + ], + "score": 1.0, + "content": "Elena Facco, Maria d’Errico, Alex Rodriguez, and Alessandro Laio. Estimating the intrinsic dimension of", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 574, + 419, + 586 + ], + "spans": [ + { + "bbox": [ + 115, + 574, + 419, + 586 + ], + "score": 1.0, + "content": "datasets by a minimal neighborhood information. Scientific reports, 7(1):1–8, 2017.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "A. Ansuini, A. Laio, J. Macke, and D. Zoccolan. Intrinsic dimension of data representations in deep neural", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 600, + 223, + 613 + ], + "spans": [ + { + "bbox": [ + 114, + 600, + 223, + 613 + ], + "score": 1.0, + "content": "networks. In NeurIPS, 2019.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 631 + ], + "score": 1.0, + "content": "Ilia Sucholutsky and Matthias Schonlau. Soft-label dataset distillation and text dataset distillation. arXiv preprint", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 628, + 209, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 209, + 640 + ], + "score": 1.0, + "content": "arXiv:1910.02551, 2019.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 646, + 474, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 474, + 658 + ], + "score": 1.0, + "content": "Radford M. Neal. Priors for infinite networks (tech. rep. no. crg-tr-94-1). University of Toronto, 1994.", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 661, + 507, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 661, + 507, + 676 + ], + "score": 1.0, + "content": "Jaehoon Lee, Yasaman Bahri, Roman Novak, Sam Schoenholz, Jeffrey Pennington, and Jascha Sohl-dickstein.", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 673, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 114, + 673, + 507, + 686 + ], + "score": 1.0, + "content": "Deep neural networks as gaussian processes. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 506, + 703 + ], + "score": 1.0, + "content": "Alexander G. de G. Matthews, Jiri Hron, Mark Rowland, Richard E. Turner, and Zoubin Ghahramani. Gaussian", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 700, + 507, + 714 + ], + "spans": [ + { + "bbox": [ + 114, + 700, + 507, + 714 + ], + "score": 1.0, + "content": "process behaviour in wide deep neural networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 710, + 141, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 710, + 141, + 723 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 48, + "is_list_end_line": true + } + ], + "index": 24, + "bbox_fs": [ + 104, + 71, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 73, + 504, + 94 + ], + "lines": [ + { + "bbox": [ + 107, + 74, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 107, + 74, + 505, + 84 + ], + "score": 1.0, + "content": "Greg Yang. Scaling limits of wide neural networks with weight sharing: Gaussian process behavior, gradient", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 83, + 454, + 94 + ], + "spans": [ + { + "bbox": [ + 116, + 83, + 454, + 94 + ], + "score": 1.0, + "content": "independence, and neural tangent kernel derivation. arXiv preprint arXiv:1902.04760, 2019a.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 504, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Greg Yang. Wide feedforward or recurrent neural networks of any architecture are gaussian processes. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 111, + 335, + 123 + ], + "spans": [ + { + "bbox": [ + 114, + 111, + 335, + 123 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019b.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 128, + 503, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "score": 1.0, + "content": "Jiri Hron, Yasaman Bahri, Jascha Sohl-Dickstein, and Roman Novak. Infinite attention: NNGP and NTK for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 139, + 414, + 150 + ], + "spans": [ + { + "bbox": [ + 115, + 139, + 414, + 150 + ], + "score": 1.0, + "content": "deep attention networks. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 502, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Lechao Xiao, Jeffrey Pennington, and Samuel S Schoenholz. Disentangling trainability and generalization in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 167, + 378, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 167, + 378, + 178 + ], + "score": 1.0, + "content": "deep learning. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 506, + 196 + ], + "score": 1.0, + "content": "Ben Adlam and Jeffrey Pennington. The neural tangent kernel in high dimensions: Triple descent and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 506, + 207 + ], + "score": 1.0, + "content": "multi-scale theory of generalization. In International Conference on Machine Learning, pages 74–84. PMLR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 204, + 140, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 140, + 216 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 504, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "score": 1.0, + "content": "Aitor Lewkowycz, Yasaman Bahri, Ethan Dyer, Jascha Sohl-Dickstein, and Guy Gur-Ari. The large learning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 232, + 454, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 454, + 244 + ], + "score": 1.0, + "content": "rate phase of deep learning: the catapult mechanism. arXiv preprint arXiv:2003.02218, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 504, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "score": 1.0, + "content": "Aitor Lewkowycz and Guy Gur-Ari. On the training dynamics of deep networks with l_2 regularization. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 260, + 441, + 272 + ], + "spans": [ + { + "bbox": [ + 114, + 260, + 441, + 272 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, volume 33, pages 4790–4799, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 503, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Ben Adlam, Jaehoon Lee, Lechao Xiao, Jeffrey Pennington, and Jasper Snoek. Exploring the uncertainty", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "properties of neural networks’ implicit priors in the infinite-width limit. In International Conference on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 298, + 236, + 310 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 236, + 310 + ], + "score": 1.0, + "content": "Learning Representations, 2021.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 316, + 503, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "Daniel S Park, Jaehoon Lee, Daiyi Peng, Yuan Cao, and Jascha Sohl-Dickstein. Towards nngp-guided neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 326, + 335, + 338 + ], + "spans": [ + { + "bbox": [ + 116, + 326, + 335, + 338 + ], + "score": 1.0, + "content": "architecture search. arXiv preprint arXiv:2011.06006, 2020.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 458, + 356 + ], + "score": 1.0, + "content": "Wuyang Chen, Xinyu Gong, and Zhangyang Wang. Neural architecture search on imagenet in four", + "type": "text" + }, + { + "bbox": [ + 459, + 345, + 480, + 355 + ], + "score": 0.82, + "content": "\\{ { \\mathrm { g p u } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "hours:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 354, + 482, + 365 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 482, + 365 + ], + "score": 1.0, + "content": "A theoretically inspired perspective. In International Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "Amir Zandieh, Insu Han, Haim Avron, Neta Shoham, Chaewon Kim, and Jinwoo Shin. Scaling neural tangent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 382, + 498, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 498, + 394 + ], + "score": 1.0, + "content": "kernels via sketching and random features. In Advances in Neural Information Processing Systems, 2021.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 108, + 399, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "Joel Hestness, Sharan Narang, Newsha Ardalani, Gregory F. Diamos, Heewoo Jun, Hassan Kianinejad, Md.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "Mostofa Ali Patwary, Yang Yang, and Yanqi Zhou. Deep learning scaling is predictable, empirically. CoRR,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 420, + 371, + 431 + ], + "spans": [ + { + "bbox": [ + 117, + 420, + 371, + 431 + ], + "score": 1.0, + "content": "abs/1712.00409, 2017. URL http://arxiv.org/abs/1712.00409.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 449 + ], + "score": 1.0, + "content": "Jonathan S. Rosenfeld, Amir Rosenfeld, Yonatan Belinkov, and Nir Shavit. A constructive prediction of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 448, + 474, + 459 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 474, + 459 + ], + "score": 1.0, + "content": "generalization error across scales. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 476, + 458, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 476, + 458, + 488 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "Yasaman Bahri, Ethan Dyer, Jared Kaplan, Jaehoon Lee, and Utkarsh Sharma. Explaining neural scaling laws.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 504, + 263, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 263, + 514 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2102.06701, 2021.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Ekin D. Cubuk, Barret Zoph, Dandelion Mane, Vijay Vasudevan, and Quoc V. Le. Autoaugment: Learning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "augmentation strategies from data. In Proceedings of the IEEE/CVF Conference on Computer Vision and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 541, + 264, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 264, + 553 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), June 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "Jascha Sohl-Dickstein, Roman Novak, Samuel S Schoenholz, and Jaehoon Lee. On the infinite width limit of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 569, + 444, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 444, + 580 + ], + "score": 1.0, + "content": "neural networks with a standard parameterization. arXiv preprint arXiv:2001.07301, 2020.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 750 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 73, + 504, + 94 + ], + "lines": [ + { + "bbox": [ + 107, + 74, + 505, + 84 + ], + "spans": [ + { + "bbox": [ + 107, + 74, + 505, + 84 + ], + "score": 1.0, + "content": "Greg Yang. Scaling limits of wide neural networks with weight sharing: Gaussian process behavior, gradient", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 83, + 454, + 94 + ], + "spans": [ + { + "bbox": [ + 116, + 83, + 454, + 94 + ], + "score": 1.0, + "content": "independence, and neural tangent kernel derivation. arXiv preprint arXiv:1902.04760, 2019a.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 107, + 74, + 505, + 94 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 504, + 122 + ], + "lines": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "Greg Yang. Wide feedforward or recurrent neural networks of any architecture are gaussian processes. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 111, + 335, + 123 + ], + "spans": [ + { + "bbox": [ + 114, + 111, + 335, + 123 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019b.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 100, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 128, + 503, + 150 + ], + "lines": [ + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "score": 1.0, + "content": "Jiri Hron, Yasaman Bahri, Jascha Sohl-Dickstein, and Roman Novak. Infinite attention: NNGP and NTK for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 139, + 414, + 150 + ], + "spans": [ + { + "bbox": [ + 115, + 139, + 414, + 150 + ], + "score": 1.0, + "content": "deep attention networks. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 129, + 505, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 502, + 178 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 505, + 169 + ], + "score": 1.0, + "content": "Lechao Xiao, Jeffrey Pennington, and Samuel S Schoenholz. Disentangling trainability and generalization in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 167, + 378, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 167, + 378, + 178 + ], + "score": 1.0, + "content": "deep learning. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 155, + 505, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 185, + 504, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 185, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 506, + 196 + ], + "score": 1.0, + "content": "Ben Adlam and Jeffrey Pennington. The neural tangent kernel in high dimensions: Triple descent and a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 195, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 506, + 207 + ], + "score": 1.0, + "content": "multi-scale theory of generalization. In International Conference on Machine Learning, pages 74–84. PMLR,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 204, + 140, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 204, + 140, + 216 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 185, + 506, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 504, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 236 + ], + "score": 1.0, + "content": "Aitor Lewkowycz, Yasaman Bahri, Ethan Dyer, Jascha Sohl-Dickstein, and Guy Gur-Ari. The large learning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 232, + 454, + 244 + ], + "spans": [ + { + "bbox": [ + 115, + 232, + 454, + 244 + ], + "score": 1.0, + "content": "rate phase of deep learning: the catapult mechanism. arXiv preprint arXiv:2003.02218, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 221, + 506, + 244 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 250, + 504, + 272 + ], + "lines": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 505, + 262 + ], + "score": 1.0, + "content": "Aitor Lewkowycz and Guy Gur-Ari. On the training dynamics of deep networks with l_2 regularization. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 260, + 441, + 272 + ], + "spans": [ + { + "bbox": [ + 114, + 260, + 441, + 272 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, volume 33, pages 4790–4799, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 251, + 505, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 503, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Ben Adlam, Jaehoon Lee, Lechao Xiao, Jeffrey Pennington, and Jasper Snoek. Exploring the uncertainty", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "properties of neural networks’ implicit priors in the infinite-width limit. In International Conference on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 298, + 236, + 310 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 236, + 310 + ], + "score": 1.0, + "content": "Learning Representations, 2021.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 277, + 505, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 316, + 503, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "Daniel S Park, Jaehoon Lee, Daiyi Peng, Yuan Cao, and Jascha Sohl-Dickstein. Towards nngp-guided neural", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 326, + 335, + 338 + ], + "spans": [ + { + "bbox": [ + 116, + 326, + 335, + 338 + ], + "score": 1.0, + "content": "architecture search. arXiv preprint arXiv:2011.06006, 2020.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 316, + 505, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 458, + 356 + ], + "score": 1.0, + "content": "Wuyang Chen, Xinyu Gong, and Zhangyang Wang. Neural architecture search on imagenet in four", + "type": "text" + }, + { + "bbox": [ + 459, + 345, + 480, + 355 + ], + "score": 0.82, + "content": "\\{ { \\mathrm { g p u } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 344, + 506, + 356 + ], + "score": 1.0, + "content": "hours:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 354, + 482, + 365 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 482, + 365 + ], + "score": 1.0, + "content": "A theoretically inspired perspective. In International Conference on Learning Representations, 2021.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 344, + 506, + 365 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "Amir Zandieh, Insu Han, Haim Avron, Neta Shoham, Chaewon Kim, and Jinwoo Shin. Scaling neural tangent", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 382, + 498, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 498, + 394 + ], + "score": 1.0, + "content": "kernels via sketching and random features. In Advances in Neural Information Processing Systems, 2021.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 371, + 506, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 399, + 505, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 506, + 411 + ], + "score": 1.0, + "content": "Joel Hestness, Sharan Narang, Newsha Ardalani, Gregory F. Diamos, Heewoo Jun, Hassan Kianinejad, Md.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 116, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "Mostofa Ali Patwary, Yang Yang, and Yanqi Zhou. Deep learning scaling is predictable, empirically. CoRR,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 420, + 371, + 431 + ], + "spans": [ + { + "bbox": [ + 117, + 420, + 371, + 431 + ], + "score": 1.0, + "content": "abs/1712.00409, 2017. URL http://arxiv.org/abs/1712.00409.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 399, + 506, + 431 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 504, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 505, + 449 + ], + "score": 1.0, + "content": "Jonathan S. Rosenfeld, Amir Rosenfeld, Yonatan Belinkov, and Nir Shavit. A constructive prediction of the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 448, + 474, + 459 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 474, + 459 + ], + "score": 1.0, + "content": "generalization error across scales. In International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 438, + 505, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 506, + 478 + ], + "score": 1.0, + "content": "Jared Kaplan, Sam McCandlish, Tom Henighan, Tom B. Brown, Benjamin Chess, Rewon Child, Scott Gray,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 476, + 458, + 488 + ], + "spans": [ + { + "bbox": [ + 115, + 476, + 458, + 488 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, and Dario Amodei. Scaling laws for neural language models, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 464, + 506, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 493, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "Yasaman Bahri, Ethan Dyer, Jared Kaplan, Jaehoon Lee, and Utkarsh Sharma. Explaining neural scaling laws.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 504, + 263, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 263, + 514 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2102.06701, 2021.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 493, + 506, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 534 + ], + "score": 1.0, + "content": "Ekin D. Cubuk, Barret Zoph, Dandelion Mane, Vijay Vasudevan, and Quoc V. Le. Autoaugment: Learning", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "augmentation strategies from data. In Proceedings of the IEEE/CVF Conference on Computer Vision and", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 541, + 264, + 553 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 264, + 553 + ], + "score": 1.0, + "content": "Pattern Recognition (CVPR), June 2019.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 520, + 505, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "Jascha Sohl-Dickstein, Roman Novak, Samuel S Schoenholz, and Jaehoon Lee. On the infinite width limit of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 569, + 444, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 444, + 580 + ], + "score": 1.0, + "content": "neural networks with a standard parameterization. arXiv preprint arXiv:2001.07301, 2020.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 559, + 505, + 580 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/hXWPpJedrVP/hXWPpJedrVP_model.json b/parse/train/hXWPpJedrVP/hXWPpJedrVP_model.json new file mode 100644 index 0000000000000000000000000000000000000000..194c871ef4ba50bce7bdf99cc89d6f9dcaa534b1 --- /dev/null +++ b/parse/train/hXWPpJedrVP/hXWPpJedrVP_model.json @@ -0,0 +1,18776 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 808, + 1304, + 808, + 1304, + 1203, + 398, + 1203 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1492, + 1404, + 1492, + 1404, + 1797, + 298, + 1797 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1326, + 1404, + 1326, + 1404, + 1478, + 298, + 1478 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1811, + 1403, + 1811, + 1403, + 1934, + 299, + 1934 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 438, + 270, + 1261, + 270, + 1261, + 381, + 438, + 381 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 299, + 1256, + 530, + 1256, + 530, + 1295, + 299, + 1295 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 332, + 1955, + 722, + 1955, + 722, + 1983, + 332, + 1983 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 788, + 739, + 912, + 739, + 912, + 776, + 788, + 776 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 297, + 2033, + 1070, + 2033, + 1070, + 2062, + 297, + 2062 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 593, + 544, + 1100, + 544, + 1100, + 663, + 593, + 663 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 362, + 487, + 592, + 487, + 592, + 523, + 362, + 523 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 656, + 486, + 845, + 486, + 845, + 522, + 656, + 522 + ], + "score": 0.529 + }, + { + "category_id": 0, + "poly": [ + 1169, + 487, + 1334, + 487, + 1334, + 522, + 1169, + 522 + ], + "score": 0.503 + }, + { + "category_id": 1, + "poly": [ + 923, + 486, + 1090, + 486, + 1090, + 522, + 923, + 522 + ], + "score": 0.448 + }, + { + "category_id": 2, + "poly": [ + 1169, + 487, + 1334, + 487, + 1334, + 522, + 1169, + 522 + ], + "score": 0.132 + }, + { + "category_id": 13, + "poly": [ + 980, + 1021, + 1034, + 1021, + 1034, + 1050, + 980, + 1050 + ], + "score": 0.88, + "latex": "65 \\%" + }, + { + "category_id": 13, + "poly": [ + 530, + 1082, + 582, + 1082, + 582, + 1111, + 530, + 1111 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 523, + 1021, + 597, + 1021, + 597, + 1050, + 523, + 1050 + ], + "score": 0.84, + "latex": "0 . 0 2 \\%" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 270.0, + 1264.0, + 270.0, + 1264.0, + 329.0, + 436.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 328.0, + 1102.0, + 328.0, + 1102.0, + 379.0, + 599.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 536.0, + 1253.0, + 536.0, + 1301.0, + 292.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1949.0, + 726.0, + 1949.0, + 726.0, + 1988.0, + 329.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 739.0, + 917.0, + 739.0, + 917.0, + 778.0, + 784.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 485.0, + 594.0, + 485.0, + 594.0, + 526.0, + 358.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 484.0, + 1341.0, + 484.0, + 1341.0, + 524.0, + 1162.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 484.0, + 1341.0, + 484.0, + 1341.0, + 524.0, + 1162.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 807.0, + 1305.0, + 807.0, + 1305.0, + 842.0, + 395.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 835.0, + 1309.0, + 835.0, + 1309.0, + 875.0, + 394.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 869.0, + 1306.0, + 869.0, + 1306.0, + 904.0, + 394.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 899.0, + 1306.0, + 899.0, + 1306.0, + 933.0, + 393.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 929.0, + 1306.0, + 929.0, + 1306.0, + 964.0, + 393.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 961.0, + 1305.0, + 961.0, + 1305.0, + 992.0, + 393.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 990.0, + 1308.0, + 990.0, + 1308.0, + 1025.0, + 394.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1020.0, + 522.0, + 1020.0, + 522.0, + 1054.0, + 393.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1020.0, + 979.0, + 1020.0, + 979.0, + 1054.0, + 598.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1020.0, + 1308.0, + 1020.0, + 1308.0, + 1054.0, + 1035.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1051.0, + 1308.0, + 1051.0, + 1308.0, + 1088.0, + 393.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1082.0, + 529.0, + 1082.0, + 529.0, + 1117.0, + 393.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1082.0, + 1306.0, + 1082.0, + 1306.0, + 1117.0, + 583.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1109.0, + 1306.0, + 1109.0, + 1306.0, + 1147.0, + 392.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1143.0, + 1306.0, + 1143.0, + 1306.0, + 1178.0, + 394.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1171.0, + 859.0, + 1171.0, + 859.0, + 1209.0, + 393.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1491.0, + 1409.0, + 1491.0, + 1409.0, + 1527.0, + 296.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1524.0, + 1405.0, + 1524.0, + 1405.0, + 1556.0, + 296.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1551.0, + 1405.0, + 1551.0, + 1405.0, + 1589.0, + 292.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1581.0, + 1405.0, + 1581.0, + 1405.0, + 1619.0, + 293.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1614.0, + 1406.0, + 1614.0, + 1406.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1643.0, + 1406.0, + 1643.0, + 1406.0, + 1679.0, + 294.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1672.0, + 1404.0, + 1672.0, + 1404.0, + 1708.0, + 294.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1704.0, + 1404.0, + 1704.0, + 1404.0, + 1741.0, + 293.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1731.0, + 1406.0, + 1731.0, + 1406.0, + 1774.0, + 292.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 1242.0, + 1765.0, + 1242.0, + 1800.0, + 294.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1326.0, + 1402.0, + 1326.0, + 1402.0, + 1359.0, + 296.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1419.0, + 296.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1414.0, + 1405.0, + 1414.0, + 1405.0, + 1453.0, + 293.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1262.0, + 1447.0, + 1262.0, + 1483.0, + 294.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1812.0, + 1404.0, + 1812.0, + 1404.0, + 1845.0, + 295.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1841.0, + 1405.0, + 1841.0, + 1405.0, + 1877.0, + 294.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1871.0, + 1405.0, + 1871.0, + 1405.0, + 1906.0, + 294.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1904.0, + 1403.0, + 1904.0, + 1403.0, + 1936.0, + 295.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 545.0, + 1099.0, + 545.0, + 1099.0, + 586.0, + 590.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 593.0, + 1050.0, + 593.0, + 1050.0, + 629.0, + 649.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 631.0, + 1093.0, + 631.0, + 1093.0, + 665.0, + 609.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 484.0, + 848.0, + 484.0, + 848.0, + 525.0, + 652.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 482.0, + 1096.0, + 482.0, + 1096.0, + 526.0, + 919.0, + 526.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 279, + 1404, + 279, + 1404, + 553, + 298, + 553 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1338, + 1404, + 1338, + 1404, + 1612, + 298, + 1612 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1626, + 1404, + 1626, + 1404, + 1840, + 298, + 1840 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1854, + 1403, + 1854, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 300, + 566, + 1404, + 566, + 1404, + 719, + 300, + 719 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 295, + 203, + 1400, + 203, + 1400, + 264, + 295, + 264 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 300, + 733, + 828, + 733, + 828, + 764, + 300, + 764 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 1264, + 432, + 1264, + 432, + 1302, + 298, + 1302 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.708 + }, + { + "category_id": 1, + "poly": [ + 360, + 793, + 1407, + 793, + 1407, + 1214, + 360, + 1214 + ], + "score": 0.691 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 859, + 2062, + 859, + 2084, + 841, + 2084 + ], + "score": 0.143 + }, + { + "category_id": 13, + "poly": [ + 603, + 885, + 657, + 885, + 657, + 914, + 603, + 914 + ], + "score": 0.9, + "latex": "2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 707, + 885, + 761, + 885, + 761, + 914, + 707, + 914 + ], + "score": 0.87, + "latex": "37 \\%" + }, + { + "category_id": 13, + "poly": [ + 1175, + 462, + 1211, + 462, + 1211, + 491, + 1175, + 491 + ], + "score": 0.82, + "latex": "\\ S _ { \\mathrm { B } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1976, + 335, + 1976, + 335, + 2007, + 297, + 2007 + ], + "score": 0.75, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1401, + 1130, + 1401, + 1130, + 1431, + 1097, + 1431 + ], + "score": 0.63, + "latex": "\\ S 5" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1257.0, + 439.0, + 1257.0, + 439.0, + 1315.0, + 290.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 1405.0, + 278.0, + 1405.0, + 313.0, + 293.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1404.0, + 308.0, + 1404.0, + 345.0, + 293.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 338.0, + 1404.0, + 338.0, + 1404.0, + 374.0, + 294.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 368.0, + 1406.0, + 368.0, + 1406.0, + 404.0, + 293.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 400.0, + 1405.0, + 400.0, + 1405.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 468.0, + 293.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 460.0, + 1174.0, + 460.0, + 1174.0, + 493.0, + 296.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 460.0, + 1401.0, + 460.0, + 1401.0, + 493.0, + 1212.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 1406.0, + 491.0, + 1406.0, + 528.0, + 294.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 517.0, + 571.0, + 517.0, + 571.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1370.0, + 1405.0, + 1370.0, + 1405.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1096.0, + 1397.0, + 1096.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 1397.0, + 1409.0, + 1397.0, + 1409.0, + 1437.0, + 1131.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1430.0, + 1405.0, + 1430.0, + 1405.0, + 1462.0, + 296.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1408.0, + 1458.0, + 1408.0, + 1494.0, + 294.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1554.0, + 293.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1550.0, + 1406.0, + 1550.0, + 1406.0, + 1587.0, + 294.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1582.0, + 921.0, + 1582.0, + 921.0, + 1613.0, + 294.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1625.0, + 1402.0, + 1625.0, + 1402.0, + 1659.0, + 296.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 1408.0, + 1653.0, + 1408.0, + 1693.0, + 293.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1405.0, + 1685.0, + 1405.0, + 1721.0, + 293.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1749.0, + 1402.0, + 1749.0, + 1402.0, + 1780.0, + 296.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1780.0, + 1402.0, + 1780.0, + 1402.0, + 1810.0, + 296.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1810.0, + 904.0, + 1810.0, + 904.0, + 1841.0, + 296.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1888.0, + 295.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1982.0, + 294.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2012.0, + 336.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 567.0, + 1403.0, + 567.0, + 1403.0, + 600.0, + 295.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 594.0, + 1405.0, + 594.0, + 1405.0, + 635.0, + 291.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 661.0, + 295.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 686.0, + 615.0, + 686.0, + 615.0, + 726.0, + 293.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 202.0, + 1404.0, + 202.0, + 1404.0, + 237.0, + 296.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 232.0, + 1062.0, + 232.0, + 1062.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 731.0, + 831.0, + 731.0, + 831.0, + 768.0, + 295.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 793.0, + 1407.0, + 793.0, + 1407.0, + 826.0, + 364.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 824.0, + 1406.0, + 824.0, + 1406.0, + 857.0, + 394.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 855.0, + 1406.0, + 855.0, + 1406.0, + 890.0, + 394.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 881.0, + 602.0, + 881.0, + 602.0, + 921.0, + 392.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 881.0, + 706.0, + 881.0, + 706.0, + 921.0, + 658.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 881.0, + 1406.0, + 881.0, + 1406.0, + 921.0, + 762.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 916.0, + 1220.0, + 916.0, + 1220.0, + 949.0, + 395.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 960.0, + 1408.0, + 960.0, + 1408.0, + 999.0, + 358.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 995.0, + 1003.0, + 995.0, + 1003.0, + 1028.0, + 395.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1042.0, + 1408.0, + 1042.0, + 1408.0, + 1076.0, + 358.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1074.0, + 956.0, + 1074.0, + 956.0, + 1107.0, + 395.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1122.0, + 1407.0, + 1122.0, + 1407.0, + 1155.0, + 359.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1154.0, + 1401.0, + 1154.0, + 1401.0, + 1186.0, + 394.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1183.0, + 861.0, + 1183.0, + 861.0, + 1219.0, + 394.0, + 1219.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 458, + 1405, + 458, + 1405, + 644, + 297, + 644 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 885, + 1404, + 885, + 1404, + 1010, + 297, + 1010 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1312, + 1404, + 1312, + 1404, + 1447, + 297, + 1447 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1205, + 1404, + 1205, + 1404, + 1299, + 298, + 1299 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1647, + 1406, + 1647, + 1406, + 1895, + 297, + 1895 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1459, + 1404, + 1459, + 1404, + 1550, + 297, + 1550 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1022, + 1405, + 1022, + 1405, + 1116, + 297, + 1116 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 278, + 1406, + 278, + 1406, + 372, + 297, + 372 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 295, + 809, + 1402, + 809, + 1402, + 874, + 295, + 874 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 297, + 1917, + 1404, + 1917, + 1404, + 2008, + 297, + 2008 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 446, + 1561, + 1247, + 1561, + 1247, + 1639, + 446, + 1639 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 638, + 734, + 1058, + 734, + 1058, + 793, + 638, + 793 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 291, + 200, + 1403, + 200, + 1403, + 266, + 291, + 266 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 551, + 386, + 1148, + 386, + 1148, + 447, + 551, + 447 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 299, + 1149, + 789, + 1149, + 789, + 1183, + 299, + 1183 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 656, + 1404, + 656, + 1404, + 718, + 297, + 718 + ], + "score": 0.926 + }, + { + "category_id": 9, + "poly": [ + 1366, + 749, + 1400, + 749, + 1400, + 779, + 1366, + 779 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 405, + 1400, + 405, + 1400, + 434, + 1366, + 434 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.663 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.468 + }, + { + "category_id": 14, + "poly": [ + 640, + 733, + 1058, + 733, + 1058, + 792, + 640, + 792 + ], + "score": 0.93, + "latex": "y _ { s } ^ { * } = \\Big ( K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } \\Big ) ^ { + } y _ { t } ," + }, + { + "category_id": 13, + "poly": [ + 1229, + 340, + 1322, + 340, + 1322, + 372, + 1229, + 372 + ], + "score": 0.93, + "latex": "( X _ { t } , y _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 916, + 1489, + 1009, + 1489, + 1009, + 1522, + 916, + 1522 + ], + "score": 0.93, + "latex": "\\partial L / \\partial y _ { s }" + }, + { + "category_id": 13, + "poly": [ + 820, + 1413, + 953, + 1413, + 953, + 1446, + 820, + 1446 + ], + "score": 0.93, + "latex": "K ( \\bar { X } _ { s } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 722, + 1860, + 915, + 1860, + 915, + 1893, + 722, + 1893 + ], + "score": 0.93, + "latex": "K = K \\bar { ( } X _ { s } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1379, + 1337, + 1379, + 1337, + 1416, + 1235, + 1416 + ], + "score": 0.93, + "latex": "K ( \\boldsymbol { x } , \\boldsymbol { x } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1413, + 1136, + 1413, + 1136, + 1446, + 1005, + 1446 + ], + "score": 0.92, + "latex": "K ( X _ { t } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 949, + 1861, + 1080, + 1861, + 1080, + 1893, + 949, + 1893 + ], + "score": 0.92, + "latex": "K ( X _ { t } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 344, + 1347, + 475, + 1347, + 475, + 1382, + 344, + 1382 + ], + "score": 0.92, + "latex": "K ( X _ { t } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1155, + 521, + 1249, + 521, + 1249, + 553, + 1155, + 553 + ], + "score": 0.92, + "latex": "( X _ { t } , y _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1085, + 811, + 1235, + 811, + 1235, + 844, + 1085, + 844 + ], + "score": 0.92, + "latex": "( X _ { t } , y _ { t } ) = \\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1349, + 981, + 1349, + 981, + 1380, + 881, + 1380 + ], + "score": 0.92, + "latex": "X _ { t } \\times X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 467, + 917, + 564, + 917, + 564, + 950, + 467, + 950 + ], + "score": 0.92, + "latex": "( X _ { s } , y _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 730, + 1348, + 832, + 1348, + 832, + 1380, + 730, + 1380 + ], + "score": 0.92, + "latex": "X _ { s } \\times X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1344, + 1282, + 1344, + 1282, + 1381, + 1206, + 1381 + ], + "score": 0.92, + "latex": "( x , x ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 760, + 340, + 857, + 340, + 857, + 373, + 760, + 373 + ], + "score": 0.92, + "latex": "( X _ { s } , y _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 743, + 1489, + 846, + 1489, + 846, + 1522, + 743, + 1522 + ], + "score": 0.92, + "latex": "\\partial L / \\partial { \\bar { X } } _ { s }" + }, + { + "category_id": 14, + "poly": [ + 448, + 1561, + 1252, + 1561, + 1252, + 1638, + 448, + 1638 + ], + "score": 0.92, + "latex": "\\frac { \\partial L } { \\partial X _ { s } } = \\frac { \\partial L } { \\partial ( K ( X _ { s } , X _ { s } ) ) } \\frac { \\partial K ( X _ { s } , X _ { s } ) } { \\partial X _ { s } } + \\frac { \\partial L } { \\partial ( K ( X _ { t } , X _ { s } ) ) } \\frac { \\partial K ( X _ { t } , X _ { s } ) } { \\partial X _ { s } } ." + }, + { + "category_id": 14, + "poly": [ + 550, + 383, + 1147, + 383, + 1147, + 446, + 550, + 446 + ], + "score": 0.91, + "latex": "L ( X _ { s } , y _ { s } ) = \\frac { 1 } { 2 } \\left\\| y _ { t } - K _ { X _ { t } X _ { s } } ( K _ { X _ { s } X _ { s } } + \\lambda I ) ^ { - 1 } y _ { s } \\right\\| _ { 2 } ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 1266, + 1312, + 1400, + 1312, + 1400, + 1346, + 1266, + 1346 + ], + "score": 0.91, + "latex": "K ( X _ { s } , X _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 598, + 461, + 660, + 461, + 660, + 492, + 598, + 492 + ], + "score": 0.91, + "latex": "K _ { U V }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 459, + 1235, + 459, + 1235, + 494, + 1025, + 494 + ], + "score": 0.9, + "latex": "( K ( u , v ) ) _ { u \\in U , v \\in V }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 462, + 1375, + 462, + 1375, + 489, + 1308, + 489 + ], + "score": 0.89, + "latex": "\\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 373, + 807, + 411, + 807, + 411, + 840, + 373, + 840 + ], + "score": 0.89, + "latex": "A ^ { + }" + }, + { + "category_id": 13, + "poly": [ + 596, + 522, + 633, + 522, + 633, + 552, + 596, + 552 + ], + "score": 0.89, + "latex": "X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1491, + 465, + 1491, + 465, + 1521, + 428, + 1521 + ], + "score": 0.89, + "latex": "X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 668, + 584, + 703, + 584, + 703, + 613, + 668, + 613 + ], + "score": 0.89, + "latex": "X _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1370, + 664, + 1397, + 664, + 1397, + 690, + 1370, + 690 + ], + "score": 0.85, + "latex": "y _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1833, + 1372, + 1833, + 1372, + 1863, + 1268, + 1863 + ], + "score": 0.85, + "latex": "{ \\mathrm { j a x . v j p } }" + }, + { + "category_id": 13, + "poly": [ + 987, + 311, + 1015, + 311, + 1015, + 337, + 987, + 337 + ], + "score": 0.84, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1031, + 583, + 1059, + 583, + 1059, + 609, + 1031, + 609 + ], + "score": 0.84, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 396, + 463, + 421, + 463, + 421, + 488, + 396, + 488 + ], + "score": 0.84, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 472, + 462, + 497, + 462, + 497, + 488, + 472, + 488 + ], + "score": 0.82, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 908, + 524, + 937, + 524, + 937, + 553, + 908, + 553 + ], + "score": 0.82, + "latex": "y _ { s }" + }, + { + "category_id": 13, + "poly": [ + 515, + 1649, + 538, + 1649, + 538, + 1676, + 515, + 1676 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 381, + 553, + 407, + 553, + 407, + 579, + 381, + 579 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 991, + 888, + 1017, + 888, + 1017, + 914, + 991, + 914 + ], + "score": 0.81, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1650, + 1244, + 1650, + 1244, + 1677, + 1221, + 1677 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 880, + 812, + 903, + 812, + 903, + 839, + 880, + 839 + ], + "score": 0.78, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 418, + 1385, + 443, + 1385, + 443, + 1411, + 418, + 1411 + ], + "score": 0.78, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1461, + 1148, + 1461, + 1148, + 1488, + 1126, + 1488 + ], + "score": 0.7, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 606, + 1085, + 637, + 1085, + 637, + 1114, + 606, + 1114 + ], + "score": 0.57, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 1015, + 1025, + 1044, + 1025, + 1044, + 1054, + 1015, + 1054 + ], + "score": 0.55, + "latex": "\\ S" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1952.0, + 329.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1945.0, + 1014.0, + 1945.0, + 1014.0, + 1974.0, + 296.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1972.0, + 1238.0, + 1972.0, + 1238.0, + 2013.0, + 331.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 791.0, + 1148.0, + 791.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 458.0, + 395.0, + 458.0, + 395.0, + 497.0, + 294.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 458.0, + 471.0, + 458.0, + 471.0, + 497.0, + 422.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 458.0, + 597.0, + 458.0, + 597.0, + 497.0, + 498.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 458.0, + 1024.0, + 458.0, + 1024.0, + 497.0, + 661.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 458.0, + 1307.0, + 458.0, + 1307.0, + 497.0, + 1236.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 458.0, + 1406.0, + 458.0, + 1406.0, + 497.0, + 1376.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 490.0, + 1405.0, + 490.0, + 1405.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 519.0, + 595.0, + 519.0, + 595.0, + 555.0, + 292.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 519.0, + 907.0, + 519.0, + 907.0, + 555.0, + 634.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 519.0, + 1154.0, + 519.0, + 1154.0, + 555.0, + 938.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 519.0, + 1406.0, + 519.0, + 1406.0, + 555.0, + 1250.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 380.0, + 548.0, + 380.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 587.0, + 408.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 579.0, + 667.0, + 579.0, + 667.0, + 617.0, + 291.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 579.0, + 1030.0, + 579.0, + 1030.0, + 617.0, + 704.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 579.0, + 1407.0, + 579.0, + 1407.0, + 617.0, + 1060.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 608.0, + 441.0, + 608.0, + 441.0, + 648.0, + 293.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 887.0, + 990.0, + 887.0, + 990.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 887.0, + 1402.0, + 887.0, + 1402.0, + 919.0, + 1018.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 917.0, + 466.0, + 917.0, + 466.0, + 950.0, + 295.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 950.0, + 565.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 948.0, + 1406.0, + 948.0, + 1406.0, + 981.0, + 292.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 917.0, + 976.0, + 917.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1265.0, + 1311.0, + 1265.0, + 1349.0, + 294.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1311.0, + 1404.0, + 1311.0, + 1404.0, + 1349.0, + 1401.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1346.0, + 343.0, + 1346.0, + 343.0, + 1383.0, + 292.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1346.0, + 729.0, + 1346.0, + 729.0, + 1383.0, + 476.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1346.0, + 880.0, + 1346.0, + 880.0, + 1383.0, + 833.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1346.0, + 1205.0, + 1346.0, + 1205.0, + 1383.0, + 982.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1383.0, + 1283.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 417.0, + 1381.0, + 417.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1381.0, + 1234.0, + 1381.0, + 1234.0, + 1417.0, + 444.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1381.0, + 1405.0, + 1381.0, + 1405.0, + 1417.0, + 1338.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 819.0, + 1413.0, + 819.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1413.0, + 1004.0, + 1413.0, + 1004.0, + 1449.0, + 954.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1413.0, + 1249.0, + 1413.0, + 1249.0, + 1449.0, + 1137.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1241.0, + 294.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1402.0, + 1236.0, + 1402.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1265.0, + 1101.0, + 1265.0, + 1101.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 514.0, + 1647.0, + 514.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1647.0, + 1220.0, + 1647.0, + 1220.0, + 1683.0, + 539.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1647.0, + 1406.0, + 1647.0, + 1406.0, + 1683.0, + 1245.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1712.0, + 296.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 1406.0, + 1708.0, + 1406.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1742.0, + 1407.0, + 1742.0, + 1407.0, + 1772.0, + 296.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1769.0, + 1406.0, + 1769.0, + 1406.0, + 1804.0, + 294.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1799.0, + 1406.0, + 1799.0, + 1406.0, + 1835.0, + 294.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1828.0, + 1267.0, + 1828.0, + 1267.0, + 1866.0, + 294.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1828.0, + 1406.0, + 1828.0, + 1406.0, + 1866.0, + 1373.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1859.0, + 721.0, + 1859.0, + 721.0, + 1897.0, + 292.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1859.0, + 948.0, + 1859.0, + 948.0, + 1897.0, + 916.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1859.0, + 1407.0, + 1859.0, + 1407.0, + 1897.0, + 1081.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1456.0, + 1125.0, + 1456.0, + 1125.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1456.0, + 1404.0, + 1456.0, + 1404.0, + 1495.0, + 1149.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1487.0, + 427.0, + 1487.0, + 427.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1487.0, + 742.0, + 1487.0, + 742.0, + 1526.0, + 466.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1487.0, + 915.0, + 1487.0, + 915.0, + 1526.0, + 847.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1526.0, + 1010.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 502.0, + 1520.0, + 502.0, + 1551.0, + 295.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1019.0, + 1014.0, + 1019.0, + 1014.0, + 1059.0, + 292.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1019.0, + 1406.0, + 1019.0, + 1406.0, + 1059.0, + 1045.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1050.0, + 1408.0, + 1050.0, + 1408.0, + 1091.0, + 291.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1082.0, + 605.0, + 1082.0, + 605.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1082.0, + 1157.0, + 1082.0, + 1157.0, + 1119.0, + 638.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 274.0, + 1407.0, + 274.0, + 1407.0, + 315.0, + 292.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 986.0, + 307.0, + 986.0, + 346.0, + 294.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 307.0, + 1407.0, + 307.0, + 1407.0, + 346.0, + 1016.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 338.0, + 759.0, + 338.0, + 759.0, + 376.0, + 294.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 338.0, + 1228.0, + 338.0, + 1228.0, + 376.0, + 858.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 338.0, + 1354.0, + 338.0, + 1354.0, + 376.0, + 1323.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 807.0, + 372.0, + 807.0, + 372.0, + 847.0, + 294.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 807.0, + 879.0, + 807.0, + 879.0, + 847.0, + 412.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 807.0, + 1084.0, + 807.0, + 1084.0, + 847.0, + 904.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 847.0, + 1236.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 713.0, + 840.0, + 713.0, + 876.0, + 295.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 202.0, + 1406.0, + 202.0, + 1406.0, + 238.0, + 295.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 234.0, + 1266.0, + 234.0, + 1266.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 648.0, + 1369.0, + 648.0, + 1369.0, + 698.0, + 291.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 648.0, + 1410.0, + 648.0, + 1410.0, + 698.0, + 1398.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 539.0, + 686.0, + 539.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 342, + 1405, + 342, + 1405, + 904, + 296, + 904 + ], + "score": 0.986, + "html": "
Imgs/ ClassDC1DSA1KIP FC1 augLS ConvNet2,3 KIP ConvNet2
no augaug
MNIST191.7±0.588.7±0.685.5±0.173.497.3±0.196.5±0.1
1097.4±0.297.8±0.197.2±0.296.499.1±0.199.1±0.1
5098.8±0.199.2±0.198.4±0.198.399.4±0.199.5±0.1
Fashion- MNIST170.5±0.670.6±0.665.382.9±0.276.7±0.2
1082.3±0.484.6±0.380.891.0±0.188.8±0.1
5083.6±0.488.7±0.286.992.4±0.191.0±0.1
SVHN131.2±1.427.5±1.423.962.4±0.264.3±0.4
1076.1±0.679.2±0.552.879.3±0.181.1±0.5
5082.3±0.384.4±0.476.882.0±0.184.3±0.1
CIFAR-10128.3±0.528.8±0.740.5±0.426.164.7±0.263.4±0.1
1044.9±0.552.1±0.553.1±0.553.675.6±0.275.5±0.1
5053.9±0.560.6±0.558.6±0.465.978.2±0.280.6±0.1
CIFAR-100112.8±0.313.9±0.3-23.834.9±0.133.3±0.3
1025.2±0.332.3±0.3=39.247.9±0.249.5±0.3
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1457, + 1405, + 1457, + 1405, + 2008, + 297, + 2008 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1083, + 1405, + 1083, + 1405, + 1284, + 298, + 1284 + ], + "score": 0.981 + }, + { + "category_id": 6, + "poly": [ + 296, + 195, + 1406, + 195, + 1406, + 315, + 296, + 315 + ], + "score": 0.972 + }, + { + "category_id": 7, + "poly": [ + 311, + 910, + 1404, + 910, + 1404, + 1024, + 311, + 1024 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 299, + 1401, + 676, + 1401, + 676, + 1434, + 299, + 1434 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1330, + 657, + 1330, + 657, + 1368, + 299, + 1368 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.764 + }, + { + "category_id": 13, + "poly": [ + 1152, + 1079, + 1319, + 1079, + 1319, + 1119, + 1152, + 1119 + ], + "score": 0.95, + "latex": "\\partial L / \\partial K ( x , x ^ { ' } )" + }, + { + "category_id": 13, + "poly": [ + 936, + 1151, + 1103, + 1151, + 1103, + 1188, + 936, + 1188 + ], + "score": 0.94, + "latex": "\\partial L / \\partial K ( x , x ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1186, + 1256, + 1186, + 1256, + 1223, + 1154, + 1223 + ], + "score": 0.94, + "latex": "K ( x , x ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1251, + 1184, + 1251, + 1184, + 1283, + 1082, + 1283 + ], + "score": 0.92, + "latex": "\\partial L / \\partial X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 423, + 1151, + 499, + 1151, + 499, + 1188, + 423, + 1188 + ], + "score": 0.92, + "latex": "( x , x ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 798, + 1086, + 878, + 1086, + 878, + 1114, + 798, + 1114 + ], + "score": 0.91, + "latex": "B \\times B" + }, + { + "category_id": 13, + "poly": [ + 586, + 1252, + 666, + 1252, + 666, + 1280, + 586, + 1280 + ], + "score": 0.91, + "latex": "B \\times B" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1252, + 1392, + 1252, + 1392, + 1283, + 1356, + 1283 + ], + "score": 0.9, + "latex": "X _ { s }" + }, + { + "category_id": 13, + "poly": [ + 571, + 1915, + 648, + 1915, + 648, + 1944, + 571, + 1944 + ], + "score": 0.87, + "latex": "8 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 367, + 1116, + 392, + 1116, + 392, + 1148, + 367, + 1148 + ], + "score": 0.8, + "latex": "x ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1084, + 470, + 1084, + 470, + 1117, + 375, + 1117 + ], + "score": 0.79, + "latex": "\\partial L / \\partial K" + }, + { + "category_id": 13, + "poly": [ + 844, + 1612, + 883, + 1612, + 883, + 1643, + 844, + 1643 + ], + "score": 0.77, + "latex": "\\ S \\mathrm { A }" + }, + { + "category_id": 13, + "poly": [ + 326, + 1226, + 347, + 1226, + 347, + 1248, + 326, + 1248 + ], + "score": 0.74, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 297, + 1127, + 317, + 1127, + 317, + 1148, + 297, + 1148 + ], + "score": 0.72, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 633, + 1121, + 658, + 1121, + 658, + 1148, + 633, + 1148 + ], + "score": 0.7, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 518, + 1193, + 623, + 1193, + 623, + 1224, + 518, + 1224 + ], + "score": 0.34, + "latex": "{ \\mathrm { j a x . v j p } }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 192.0, + 1409.0, + 192.0, + 1409.0, + 232.0, + 293.0, + 232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 219.0, + 1409.0, + 219.0, + 1409.0, + 266.0, + 291.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 255.0, + 1404.0, + 255.0, + 1404.0, + 289.0, + 296.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 284.0, + 459.0, + 284.0, + 459.0, + 324.0, + 294.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 899.0, + 1151.0, + 899.0, + 1151.0, + 947.0, + 310.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 934.0, + 395.0, + 934.0, + 395.0, + 976.0, + 325.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 936.0, + 337.0, + 936.0, + 337.0, + 959.0, + 314.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 963.0, + 1403.0, + 963.0, + 1403.0, + 999.0, + 316.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 991.0, + 973.0, + 991.0, + 973.0, + 1029.0, + 329.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1401.0, + 675.0, + 1401.0, + 675.0, + 1437.0, + 295.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1326.0, + 662.0, + 1326.0, + 662.0, + 1377.0, + 289.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1405.0, + 1459.0, + 1405.0, + 1495.0, + 295.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1487.0, + 1410.0, + 1487.0, + 1410.0, + 1528.0, + 291.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1518.0, + 1407.0, + 1518.0, + 1407.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1549.0, + 1405.0, + 1549.0, + 1405.0, + 1588.0, + 292.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1581.0, + 1407.0, + 1581.0, + 1407.0, + 1616.0, + 292.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1609.0, + 843.0, + 1609.0, + 843.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1609.0, + 1405.0, + 1609.0, + 1405.0, + 1646.0, + 884.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1642.0, + 1405.0, + 1642.0, + 1405.0, + 1678.0, + 294.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1711.0, + 292.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1702.0, + 1405.0, + 1702.0, + 1405.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1735.0, + 1406.0, + 1735.0, + 1406.0, + 1767.0, + 295.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1763.0, + 1407.0, + 1763.0, + 1407.0, + 1799.0, + 295.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1830.0, + 294.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 1406.0, + 1823.0, + 1406.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1406.0, + 1852.0, + 1406.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 1406.0, + 1884.0, + 1406.0, + 1919.0, + 295.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 570.0, + 1912.0, + 570.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1950.0, + 649.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1983.0, + 291.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1974.0, + 1337.0, + 1974.0, + 1337.0, + 2011.0, + 292.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1081.0, + 374.0, + 1081.0, + 374.0, + 1122.0, + 292.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1081.0, + 797.0, + 1081.0, + 797.0, + 1122.0, + 471.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1081.0, + 1151.0, + 1081.0, + 1151.0, + 1122.0, + 879.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1081.0, + 1406.0, + 1081.0, + 1406.0, + 1122.0, + 1320.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 296.0, + 1119.0, + 296.0, + 1157.0, + 293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1119.0, + 366.0, + 1119.0, + 366.0, + 1157.0, + 318.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1119.0, + 632.0, + 1119.0, + 632.0, + 1157.0, + 393.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1157.0, + 659.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1151.0, + 422.0, + 1151.0, + 422.0, + 1193.0, + 295.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1151.0, + 935.0, + 1151.0, + 935.0, + 1193.0, + 500.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1151.0, + 1407.0, + 1151.0, + 1407.0, + 1193.0, + 1104.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1189.0, + 517.0, + 1189.0, + 517.0, + 1226.0, + 295.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1189.0, + 1153.0, + 1189.0, + 1153.0, + 1226.0, + 624.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1189.0, + 1406.0, + 1189.0, + 1406.0, + 1226.0, + 1257.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 325.0, + 1220.0, + 325.0, + 1257.0, + 295.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1257.0, + 348.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 585.0, + 1249.0, + 585.0, + 1288.0, + 293.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1249.0, + 1081.0, + 1249.0, + 1081.0, + 1288.0, + 667.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1249.0, + 1355.0, + 1249.0, + 1355.0, + 1288.0, + 1185.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 1249.0, + 1402.0, + 1249.0, + 1402.0, + 1288.0, + 1393.0, + 1288.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1656, + 1405, + 1656, + 1405, + 1901, + 297, + 1901 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1303, + 1403, + 1303, + 1403, + 1427, + 299, + 1427 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1440, + 1403, + 1440, + 1403, + 1564, + 299, + 1564 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1057, + 1403, + 1057, + 1403, + 1211, + 298, + 1211 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 296, + 694, + 1407, + 694, + 1407, + 1000, + 296, + 1000 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1915, + 1406, + 1915, + 1406, + 2007, + 300, + 2007 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 299, + 1600, + 665, + 1600, + 665, + 1633, + 299, + 1633 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 298, + 1248, + 553, + 1248, + 553, + 1281, + 298, + 1281 + ], + "score": 0.917 + }, + { + "category_id": 3, + "poly": [ + 329, + 201, + 1369, + 201, + 1369, + 665, + 329, + 665 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.708 + }, + { + "category_id": 13, + "poly": [ + 1244, + 1150, + 1300, + 1150, + 1300, + 1179, + 1244, + 1179 + ], + "score": 0.86, + "latex": "37 \\%" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1750, + 1273, + 1750, + 1273, + 1779, + 1236, + 1779 + ], + "score": 0.79, + "latex": "\\ S \\mathrm { A }" + }, + { + "category_id": 13, + "poly": [ + 327, + 1305, + 378, + 1305, + 378, + 1336, + 327, + 1336 + ], + "score": 0.39, + "latex": "\\ S" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 697.0, + 1407.0, + 697.0, + 1407.0, + 729.0, + 295.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 724.0, + 1408.0, + 724.0, + 1408.0, + 762.0, + 293.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 757.0, + 1408.0, + 757.0, + 1408.0, + 789.0, + 295.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1409.0, + 847.0, + 1409.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 874.0, + 1408.0, + 874.0, + 1408.0, + 916.0, + 291.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1407.0, + 908.0, + 1407.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 938.0, + 1405.0, + 938.0, + 1405.0, + 974.0, + 294.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 966.0, + 1402.0, + 966.0, + 1402.0, + 1007.0, + 293.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1598.0, + 667.0, + 1598.0, + 667.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1246.0, + 557.0, + 1246.0, + 557.0, + 1283.0, + 292.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 198.0, + 1100.0, + 198.0, + 1100.0, + 228.0, + 935.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 199.0, + 1340.0, + 199.0, + 1340.0, + 226.0, + 1175.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 217.0, + 1082.0, + 217.0, + 1082.0, + 239.0, + 955.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 218.0, + 1326.0, + 218.0, + 1326.0, + 240.0, + 1192.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 246.0, + 384.0, + 246.0, + 384.0, + 268.0, + 350.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 269.0, + 890.0, + 269.0, + 890.0, + 369.0, + 866.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 278.0, + 913.0, + 278.0, + 913.0, + 300.0, + 882.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 299.0, + 392.0, + 299.0, + 392.0, + 328.0, + 348.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 330.0, + 914.0, + 330.0, + 914.0, + 355.0, + 880.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 327.0, + 1341.0, + 327.0, + 1341.0, + 351.0, + 1273.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 346.0, + 1352.0, + 346.0, + 1352.0, + 370.0, + 1273.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 358.0, + 392.0, + 358.0, + 392.0, + 384.0, + 349.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 366.0, + 1352.0, + 366.0, + 1352.0, + 390.0, + 1272.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 381.0, + 357.0, + 381.0, + 357.0, + 454.0, + 330.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 385.0, + 913.0, + 385.0, + 913.0, + 406.0, + 882.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 396.0, + 1081.0, + 396.0, + 1081.0, + 421.0, + 954.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 396.0, + 1321.0, + 396.0, + 1321.0, + 421.0, + 1195.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 414.0, + 387.0, + 414.0, + 387.0, + 440.0, + 348.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 422.0, + 1077.0, + 422.0, + 1077.0, + 450.0, + 958.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 422.0, + 1318.0, + 422.0, + 1318.0, + 450.0, + 1199.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 441.0, + 1081.0, + 441.0, + 1081.0, + 464.0, + 955.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 441.0, + 1325.0, + 441.0, + 1325.0, + 464.0, + 1192.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 465.0, + 1076.0, + 465.0, + 1076.0, + 478.0, + 1059.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 466.0, + 1098.0, + 466.0, + 1098.0, + 475.0, + 1089.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 472.0, + 391.0, + 472.0, + 391.0, + 498.0, + 349.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 474.0, + 1108.0, + 474.0, + 1108.0, + 484.0, + 1098.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 486.0, + 508.0, + 486.0, + 508.0, + 528.0, + 405.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 493.0, + 914.0, + 493.0, + 914.0, + 592.0, + 865.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 528.0, + 387.0, + 528.0, + 387.0, + 554.0, + 349.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 523.0, + 503.0, + 523.0, + 503.0, + 547.0, + 431.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 545.0, + 518.0, + 545.0, + 518.0, + 568.0, + 432.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 553.0, + 914.0, + 553.0, + 914.0, + 579.0, + 880.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 566.0, + 518.0, + 566.0, + 518.0, + 589.0, + 432.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 585.0, + 386.0, + 585.0, + 386.0, + 610.0, + 349.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 601.0, + 495.0, + 601.0, + 495.0, + 625.0, + 424.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 601.0, + 638.0, + 601.0, + 638.0, + 625.0, + 553.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 601.0, + 773.0, + 601.0, + 773.0, + 623.0, + 687.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 608.0, + 914.0, + 608.0, + 914.0, + 630.0, + 882.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 621.0, + 932.0, + 621.0, + 932.0, + 647.0, + 898.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 621.0, + 1034.0, + 621.0, + 1034.0, + 648.0, + 1000.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 623.0, + 1136.0, + 623.0, + 1136.0, + 646.0, + 1104.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 621.0, + 1275.0, + 621.0, + 1275.0, + 647.0, + 1241.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 622.0, + 1376.0, + 622.0, + 1376.0, + 648.0, + 1343.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 633.0, + 640.0, + 633.0, + 640.0, + 659.0, + 551.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 640.0, + 1082.0, + 640.0, + 1082.0, + 668.0, + 953.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 640.0, + 1322.0, + 640.0, + 1322.0, + 668.0, + 1193.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.75, + 547.0, + 1347.75, + 547.0, + 1347.75, + 560.0, + 1334.75, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 624.0, + 1173.0, + 624.0, + 1173.0, + 645.0, + 1136.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1654.0, + 1406.0, + 1654.0, + 1406.0, + 1693.0, + 291.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1405.0, + 1687.0, + 1405.0, + 1721.0, + 294.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1716.0, + 1405.0, + 1716.0, + 1405.0, + 1751.0, + 292.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1747.0, + 1235.0, + 1747.0, + 1235.0, + 1783.0, + 291.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1747.0, + 1408.0, + 1747.0, + 1408.0, + 1783.0, + 1274.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1777.0, + 1407.0, + 1777.0, + 1407.0, + 1812.0, + 294.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 1406.0, + 1808.0, + 1406.0, + 1843.0, + 292.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1838.0, + 1406.0, + 1838.0, + 1406.0, + 1873.0, + 292.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1868.0, + 1407.0, + 1868.0, + 1407.0, + 1904.0, + 294.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1304.0, + 326.0, + 1304.0, + 326.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1304.0, + 1403.0, + 1304.0, + 1403.0, + 1337.0, + 379.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1333.0, + 1407.0, + 1333.0, + 1407.0, + 1371.0, + 293.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1393.0, + 1346.0, + 1393.0, + 1346.0, + 1433.0, + 293.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1440.0, + 1408.0, + 1440.0, + 1408.0, + 1476.0, + 293.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 1408.0, + 1500.0, + 1408.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1534.0, + 1186.0, + 1534.0, + 1186.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1405.0, + 1057.0, + 1405.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 1405.0, + 1089.0, + 1405.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1118.0, + 1407.0, + 1118.0, + 1407.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1243.0, + 1149.0, + 1243.0, + 1186.0, + 293.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1149.0, + 1405.0, + 1149.0, + 1405.0, + 1186.0, + 1301.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 783.0, + 1179.0, + 783.0, + 1216.0, + 293.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1913.0, + 1407.0, + 1913.0, + 1407.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1411.0, + 1944.0, + 1411.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1315.0, + 1969.0, + 1315.0, + 2015.0, + 292.0, + 2015.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 343, + 419, + 1351, + 419, + 1351, + 1014, + 343, + 1014 + ], + "score": 0.985, + "html": "
Imgs/ClassDC/DSAKIP to NNPerf. changeLS to NNPerf. change
MNIST191.7±0.590.1±0.1-5.571.0±0.2-2.4
1097.8±0.197.5±0.0-1.195.2±0.1-1.2
5099.2±0.198.3±0.1-0.897.9±0.0-0.4
Fashion-MNIST170.6±0.673.5±0.5*-9.861.2±0.1-4.1
1084.6±0.386.8±0.1-1.379.7±0.1-1.2
5088.7±0.288.0±0.1*-4.585.0±0.1-1.8
SVHN131.2±1.457.3±0.1*-8.323.8±0.2-0.2
1079.2±0.575.0±0.1-1.653.2±0.30.4
5084.4±0.480.5±0.1-1.076.5±0.3-0.4
CIFAR-10128.8±0.749.9±0.2-9.224.7±0.1-1.4
1052.1±0.562.7±0.3-4.649.3±0.1-4.3
5060.6±0.568.6±0.2-4.562.0±0.2-3.9
CIFAR-100113.9±0.315.7±0.2*-18.111.8±0.2-12.0
1032.3±0.328.3±0.1-17.425.0±0.1-14.2
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1403, + 1884, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1618, + 1405, + 1618, + 1405, + 1772, + 298, + 1772 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1451, + 1405, + 1451, + 1405, + 1606, + 298, + 1606 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 299, + 1813, + 906, + 1813, + 906, + 1853, + 299, + 1853 + ], + "score": 0.932 + }, + { + "category_id": 6, + "poly": [ + 296, + 193, + 1405, + 193, + 1405, + 408, + 296, + 408 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 297, + 1070, + 1406, + 1070, + 1406, + 1438, + 297, + 1438 + ], + "score": 0.708 + }, + { + "category_id": 4, + "poly": [ + 297, + 1070, + 1406, + 1070, + 1406, + 1438, + 297, + 1438 + ], + "score": 0.218 + }, + { + "category_id": 1, + "poly": [ + 296, + 193, + 1405, + 193, + 1405, + 408, + 296, + 408 + ], + "score": 0.119 + }, + { + "category_id": 13, + "poly": [ + 876, + 1407, + 952, + 1407, + 952, + 1436, + 876, + 1436 + ], + "score": 0.86, + "latex": "6 0 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 522, + 1741, + 560, + 1741, + 560, + 1770, + 522, + 1770 + ], + "score": 0.75, + "latex": "\\ S" + }, + { + "category_id": 13, + "poly": [ + 686, + 381, + 708, + 381, + 708, + 404, + 686, + 404 + ], + "score": 0.56, + "latex": "^ *" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1812.0, + 908.0, + 1812.0, + 908.0, + 1859.0, + 291.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 192.0, + 1405.0, + 192.0, + 1405.0, + 228.0, + 293.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 260.0, + 295.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 252.0, + 1406.0, + 252.0, + 1406.0, + 292.0, + 293.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 284.0, + 1406.0, + 284.0, + 1406.0, + 321.0, + 293.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 314.0, + 1405.0, + 314.0, + 1405.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 346.0, + 1405.0, + 346.0, + 1405.0, + 380.0, + 295.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 378.0, + 685.0, + 378.0, + 685.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 378.0, + 1379.0, + 378.0, + 1379.0, + 409.0, + 709.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 1406.0, + 1070.0, + 1406.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1100.0, + 1407.0, + 1100.0, + 1407.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1165.0, + 1404.0, + 1165.0, + 1404.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1228.0, + 292.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1289.0, + 292.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1315.0, + 1407.0, + 1315.0, + 1407.0, + 1349.0, + 292.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1409.0, + 292.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 875.0, + 1406.0, + 875.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1406.0, + 1254.0, + 1406.0, + 1254.0, + 1440.0, + 953.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1407.0, + 1885.0, + 1407.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1982.0, + 293.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 1404.0, + 1976.0, + 1404.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1618.0, + 1403.0, + 1618.0, + 1403.0, + 1651.0, + 296.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1647.0, + 1406.0, + 1647.0, + 1406.0, + 1682.0, + 293.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1712.0, + 296.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1710.0, + 1406.0, + 1710.0, + 1406.0, + 1743.0, + 296.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1740.0, + 521.0, + 1740.0, + 521.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1740.0, + 782.0, + 1740.0, + 782.0, + 1772.0, + 561.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1450.0, + 1406.0, + 1450.0, + 1406.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1408.0, + 1481.0, + 1408.0, + 1519.0, + 292.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1510.0, + 1408.0, + 1510.0, + 1408.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1578.0, + 293.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 1275.0, + 1572.0, + 1275.0, + 1610.0, + 295.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 1406.0, + 1070.0, + 1406.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1100.0, + 1407.0, + 1100.0, + 1407.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1165.0, + 1404.0, + 1165.0, + 1404.0, + 1196.0, + 295.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1193.0, + 1407.0, + 1193.0, + 1407.0, + 1228.0, + 292.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1289.0, + 292.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1315.0, + 1407.0, + 1315.0, + 1407.0, + 1349.0, + 292.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1406.0, + 1344.0, + 1406.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1409.0, + 292.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 875.0, + 1406.0, + 875.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1406.0, + 1254.0, + 1406.0, + 1254.0, + 1440.0, + 953.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 192.0, + 1405.0, + 192.0, + 1405.0, + 228.0, + 293.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 260.0, + 295.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 252.0, + 1406.0, + 252.0, + 1406.0, + 292.0, + 293.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 284.0, + 1406.0, + 284.0, + 1406.0, + 321.0, + 293.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 314.0, + 1405.0, + 314.0, + 1405.0, + 350.0, + 293.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 346.0, + 1405.0, + 346.0, + 1405.0, + 380.0, + 295.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 378.0, + 685.0, + 378.0, + 685.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 378.0, + 1379.0, + 378.0, + 1379.0, + 409.0, + 709.0, + 409.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 326, + 1376, + 1370, + 1376, + 1370, + 1826, + 326, + 1826 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 330, + 810, + 1367, + 810, + 1367, + 1095, + 330, + 1095 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 332, + 202, + 1364, + 202, + 1364, + 532, + 332, + 532 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 295, + 1124, + 1406, + 1124, + 1406, + 1338, + 295, + 1338 + ], + "score": 0.958 + }, + { + "category_id": 4, + "poly": [ + 295, + 563, + 1406, + 563, + 1406, + 804, + 295, + 804 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 296, + 1856, + 1407, + 1856, + 1407, + 2038, + 296, + 2038 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.72 + }, + { + "category_id": 2, + "poly": [ + 957, + 206, + 1287, + 206, + 1287, + 223, + 957, + 223 + ], + "score": 0.16 + }, + { + "category_id": 13, + "poly": [ + 496, + 1187, + 552, + 1187, + 552, + 1216, + 496, + 1216 + ], + "score": 0.62, + "latex": "\\left( \\mathrm { a } { + } \\mathrm { l } \\right)" + }, + { + "category_id": 13, + "poly": [ + 297, + 1247, + 352, + 1247, + 352, + 1276, + 297, + 1276 + ], + "score": 0.49, + "latex": "\\left( \\mathrm { a } \\mathrm { + } \\mathrm { l } \\right)" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1379.0, + 576.0, + 1379.0, + 576.0, + 1397.0, + 390.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1379.0, + 834.0, + 1379.0, + 834.0, + 1398.0, + 642.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1379.0, + 1086.0, + 1379.0, + 1086.0, + 1398.0, + 897.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1378.0, + 1344.0, + 1378.0, + 1344.0, + 1400.0, + 1146.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1387.0, + 374.0, + 1387.0, + 374.0, + 1409.0, + 342.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1413.0, + 386.0, + 1413.0, + 386.0, + 1551.0, + 319.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1423.0, + 1218.0, + 1423.0, + 1218.0, + 1467.0, + 1198.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1472.0, + 370.0, + 1472.0, + 370.0, + 1494.0, + 342.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1468.0, + 706.0, + 1468.0, + 706.0, + 1489.0, + 685.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1462.0, + 1198.0, + 1462.0, + 1198.0, + 1478.0, + 1173.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1484.0, + 700.0, + 1484.0, + 700.0, + 1505.0, + 681.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1494.0, + 1189.0, + 1494.0, + 1189.0, + 1505.0, + 1179.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 1509.0, + 924.0, + 1509.0, + 924.0, + 1521.0, + 914.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1515.0, + 371.0, + 1515.0, + 371.0, + 1533.0, + 342.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1540.0, + 393.0, + 1540.0, + 393.0, + 1551.0, + 382.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1536.0, + 452.0, + 1536.0, + 452.0, + 1547.0, + 440.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1532.0, + 589.0, + 1532.0, + 589.0, + 1548.0, + 460.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1527.0, + 648.0, + 1527.0, + 648.0, + 1542.0, + 634.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1535.0, + 707.0, + 1535.0, + 707.0, + 1549.0, + 693.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1532.0, + 842.0, + 1532.0, + 842.0, + 1548.0, + 713.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1536.0, + 900.0, + 1536.0, + 900.0, + 1546.0, + 889.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1535.0, + 961.0, + 1535.0, + 961.0, + 1549.0, + 947.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1532.0, + 1096.0, + 1532.0, + 1096.0, + 1548.0, + 966.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1536.0, + 1214.0, + 1536.0, + 1214.0, + 1547.0, + 1202.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1532.0, + 1350.0, + 1532.0, + 1350.0, + 1548.0, + 1220.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1548.0, + 452.0, + 1548.0, + 452.0, + 1559.0, + 440.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1545.0, + 593.0, + 1545.0, + 593.0, + 1564.0, + 458.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1546.0, + 707.0, + 1546.0, + 707.0, + 1560.0, + 692.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1546.0, + 846.0, + 1546.0, + 846.0, + 1562.0, + 713.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1548.0, + 960.0, + 1548.0, + 960.0, + 1559.0, + 949.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1545.0, + 1102.0, + 1545.0, + 1102.0, + 1564.0, + 966.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1548.0, + 1214.0, + 1548.0, + 1214.0, + 1559.0, + 1202.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1546.0, + 1353.0, + 1546.0, + 1353.0, + 1562.0, + 1220.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1557.0, + 380.0, + 1557.0, + 380.0, + 1578.0, + 342.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1556.0, + 1142.0, + 1556.0, + 1142.0, + 1570.0, + 1127.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1569.0, + 383.0, + 1569.0, + 383.0, + 1587.0, + 357.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1569.0, + 440.0, + 1569.0, + 440.0, + 1587.0, + 415.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1568.0, + 496.0, + 1568.0, + 496.0, + 1587.0, + 471.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1569.0, + 552.0, + 1569.0, + 552.0, + 1587.0, + 527.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1568.0, + 638.0, + 1568.0, + 638.0, + 1589.0, + 585.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1569.0, + 694.0, + 1569.0, + 694.0, + 1587.0, + 668.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1567.0, + 751.0, + 1567.0, + 751.0, + 1589.0, + 723.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1567.0, + 809.0, + 1567.0, + 809.0, + 1589.0, + 780.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1568.0, + 892.0, + 1568.0, + 892.0, + 1589.0, + 837.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1567.0, + 949.0, + 1567.0, + 949.0, + 1589.0, + 921.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1567.0, + 1005.0, + 1567.0, + 1005.0, + 1589.0, + 977.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1567.0, + 1062.0, + 1567.0, + 1062.0, + 1589.0, + 1034.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1568.0, + 1146.0, + 1568.0, + 1146.0, + 1589.0, + 1091.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1569.0, + 1201.0, + 1569.0, + 1201.0, + 1587.0, + 1174.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1567.0, + 1259.0, + 1567.0, + 1259.0, + 1589.0, + 1231.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1567.0, + 1316.0, + 1567.0, + 1316.0, + 1589.0, + 1288.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1569.0, + 1371.0, + 1569.0, + 1371.0, + 1587.0, + 1346.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1579.0, + 544.0, + 1579.0, + 544.0, + 1605.0, + 422.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1579.0, + 798.0, + 1579.0, + 798.0, + 1605.0, + 676.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1577.0, + 1052.0, + 1577.0, + 1052.0, + 1605.0, + 930.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1579.0, + 1306.0, + 1579.0, + 1306.0, + 1605.0, + 1183.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1605.0, + 582.0, + 1605.0, + 582.0, + 1624.0, + 386.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1605.0, + 840.0, + 1605.0, + 840.0, + 1624.0, + 636.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1605.0, + 1092.0, + 1605.0, + 1092.0, + 1624.0, + 890.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1605.0, + 1350.0, + 1605.0, + 1350.0, + 1624.0, + 1140.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1613.0, + 371.0, + 1613.0, + 371.0, + 1635.0, + 342.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1627.0, + 973.0, + 1627.0, + 973.0, + 1650.0, + 954.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1645.0, + 706.0, + 1645.0, + 706.0, + 1665.0, + 686.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1675.0, + 436.0, + 1675.0, + 436.0, + 1709.0, + 409.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1671.0, + 700.0, + 1671.0, + 700.0, + 1692.0, + 686.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1672.0, + 955.0, + 1672.0, + 955.0, + 1688.0, + 940.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1670.0, + 1209.0, + 1670.0, + 1209.0, + 1702.0, + 1192.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1699.0, + 369.0, + 1699.0, + 369.0, + 1718.0, + 343.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1709.0, + 940.0, + 1709.0, + 940.0, + 1727.0, + 920.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1709.0, + 1194.0, + 1709.0, + 1194.0, + 1721.0, + 1183.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1724.0, + 1190.0, + 1724.0, + 1190.0, + 1741.0, + 1176.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1737.0, + 371.0, + 1737.0, + 371.0, + 1761.0, + 342.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1762.0, + 452.0, + 1762.0, + 452.0, + 1773.0, + 440.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1758.0, + 589.0, + 1758.0, + 589.0, + 1774.0, + 458.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1762.0, + 706.0, + 1762.0, + 706.0, + 1773.0, + 694.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1758.0, + 842.0, + 1758.0, + 842.0, + 1774.0, + 712.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1762.0, + 960.0, + 1762.0, + 960.0, + 1773.0, + 948.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1758.0, + 1097.0, + 1758.0, + 1097.0, + 1774.0, + 966.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1762.0, + 1214.0, + 1762.0, + 1214.0, + 1773.0, + 1202.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1758.0, + 1350.0, + 1758.0, + 1350.0, + 1774.0, + 1220.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1772.0, + 455.0, + 1772.0, + 455.0, + 1786.0, + 439.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1770.0, + 592.0, + 1770.0, + 592.0, + 1786.0, + 460.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1770.0, + 709.0, + 1770.0, + 709.0, + 1786.0, + 692.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1769.0, + 847.0, + 1769.0, + 847.0, + 1789.0, + 711.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1773.0, + 960.0, + 1773.0, + 960.0, + 1784.0, + 948.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1768.0, + 1102.0, + 1768.0, + 1102.0, + 1789.0, + 965.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1772.0, + 1216.0, + 1772.0, + 1216.0, + 1785.0, + 1201.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1769.0, + 1354.0, + 1769.0, + 1354.0, + 1789.0, + 1219.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1781.0, + 374.0, + 1781.0, + 374.0, + 1804.0, + 343.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1793.0, + 384.0, + 1793.0, + 384.0, + 1815.0, + 356.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1793.0, + 442.0, + 1793.0, + 442.0, + 1815.0, + 413.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1791.0, + 499.0, + 1791.0, + 499.0, + 1813.0, + 469.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1793.0, + 555.0, + 1793.0, + 555.0, + 1815.0, + 525.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1794.0, + 638.0, + 1794.0, + 638.0, + 1813.0, + 582.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1793.0, + 695.0, + 1793.0, + 695.0, + 1815.0, + 667.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1791.0, + 753.0, + 1791.0, + 753.0, + 1815.0, + 723.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1793.0, + 809.0, + 1793.0, + 809.0, + 1815.0, + 780.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1794.0, + 892.0, + 1794.0, + 892.0, + 1813.0, + 837.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1793.0, + 949.0, + 1793.0, + 949.0, + 1815.0, + 921.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1791.0, + 1005.0, + 1791.0, + 1005.0, + 1815.0, + 977.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1793.0, + 1062.0, + 1793.0, + 1062.0, + 1815.0, + 1033.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1793.0, + 1146.0, + 1793.0, + 1146.0, + 1813.0, + 1091.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1793.0, + 1203.0, + 1793.0, + 1203.0, + 1815.0, + 1173.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1791.0, + 1259.0, + 1791.0, + 1259.0, + 1813.0, + 1231.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1791.0, + 1316.0, + 1791.0, + 1316.0, + 1815.0, + 1288.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1795.0, + 1369.0, + 1795.0, + 1369.0, + 1811.0, + 1343.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1803.0, + 544.0, + 1803.0, + 544.0, + 1830.0, + 423.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1803.0, + 798.0, + 1803.0, + 798.0, + 1830.0, + 676.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1803.0, + 1052.0, + 1803.0, + 1052.0, + 1830.0, + 929.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1803.0, + 1305.0, + 1803.0, + 1305.0, + 1830.0, + 1184.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.75, + 1406.0, + 1219.75, + 1406.0, + 1219.75, + 1436.5, + 1214.75, + 1436.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1417.0, + 966.0, + 1417.0, + 966.0, + 1445.0, + 960.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1428.0, + 712.0, + 1428.0, + 712.0, + 1460.0, + 708.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1453.0, + 457.0, + 1453.0, + 457.0, + 1477.5, + 452.0, + 1477.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1450.5, + 950.0, + 1450.5, + 950.0, + 1489.0, + 945.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.25, + 1478.0, + 934.25, + 1478.0, + 934.25, + 1507.0, + 926.25, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.75, + 1500.5, + 696.75, + 1500.5, + 696.75, + 1518.5, + 649.75, + 1518.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1503.5, + 462.0, + 1503.5, + 462.0, + 1520.5, + 407.0, + 1520.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1625.0, + 712.0, + 1625.0, + 712.0, + 1651.0, + 707.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.25, + 1626.0, + 1220.25, + 1626.0, + 1220.25, + 1650.0, + 1214.25, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1646.5, + 952.0, + 1646.5, + 952.0, + 1668.0, + 948.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.25, + 1643.0, + 476.25, + 1643.0, + 476.25, + 1660.0, + 413.25, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.75, + 1656.0, + 1218.75, + 1656.0, + 1218.75, + 1668.5, + 1188.75, + 1668.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.25, + 1699.5, + 692.25, + 1699.5, + 692.25, + 1708.5, + 664.25, + 1708.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 811.0, + 587.0, + 811.0, + 587.0, + 830.0, + 471.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 808.0, + 922.0, + 808.0, + 922.0, + 834.0, + 801.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 812.0, + 1256.0, + 812.0, + 1256.0, + 831.0, + 1140.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 824.0, + 608.0, + 824.0, + 608.0, + 847.0, + 448.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 825.0, + 940.0, + 825.0, + 940.0, + 844.0, + 792.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 825.0, + 1299.0, + 825.0, + 1299.0, + 844.0, + 1104.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 839.0, + 382.0, + 839.0, + 382.0, + 865.0, + 344.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 874.0, + 376.0, + 874.0, + 376.0, + 897.0, + 345.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 888.0, + 659.0, + 888.0, + 659.0, + 897.0, + 650.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 896.0, + 546.0, + 896.0, + 546.0, + 912.0, + 532.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 903.0, + 354.0, + 903.0, + 354.0, + 996.0, + 330.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 904.0, + 610.0, + 904.0, + 610.0, + 918.0, + 584.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 909.0, + 376.0, + 909.0, + 376.0, + 931.0, + 345.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 909.0, + 519.0, + 909.0, + 519.0, + 922.0, + 504.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 926.0, + 606.0, + 926.0, + 606.0, + 936.0, + 595.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 931.0, + 484.0, + 931.0, + 484.0, + 940.0, + 472.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 939.0, + 375.0, + 939.0, + 375.0, + 965.0, + 346.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 943.0, + 453.0, + 943.0, + 453.0, + 954.0, + 441.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 967.0, + 576.0, + 967.0, + 576.0, + 977.0, + 567.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 975.0, + 375.0, + 975.0, + 375.0, + 997.0, + 345.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 974.0, + 614.0, + 974.0, + 614.0, + 987.0, + 594.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 987.0, + 639.0, + 987.0, + 639.0, + 998.0, + 628.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 998.0, + 966.0, + 998.0, + 966.0, + 1017.0, + 898.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 998.0, + 1297.0, + 998.0, + 1297.0, + 1017.0, + 1232.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1009.0, + 377.0, + 1009.0, + 377.0, + 1032.0, + 345.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1015.0, + 472.0, + 1015.0, + 472.0, + 1036.0, + 426.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1012.0, + 569.0, + 1012.0, + 569.0, + 1036.0, + 516.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1015.0, + 671.0, + 1015.0, + 671.0, + 1034.0, + 613.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1014.0, + 985.0, + 1014.0, + 985.0, + 1033.0, + 897.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1014.0, + 1316.0, + 1014.0, + 1316.0, + 1033.0, + 1232.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1029.0, + 479.0, + 1029.0, + 479.0, + 1050.0, + 427.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1033.0, + 516.0, + 1033.0, + 516.0, + 1046.0, + 494.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1029.0, + 574.0, + 1029.0, + 574.0, + 1050.0, + 519.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1033.0, + 610.0, + 1033.0, + 610.0, + 1046.0, + 589.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1029.0, + 676.0, + 1029.0, + 676.0, + 1050.0, + 613.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1044.0, + 381.0, + 1044.0, + 381.0, + 1066.0, + 345.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1055.0, + 455.0, + 1055.0, + 455.0, + 1079.0, + 426.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1055.0, + 520.0, + 1055.0, + 520.0, + 1078.0, + 492.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1055.0, + 586.0, + 1055.0, + 586.0, + 1078.0, + 556.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1055.0, + 650.0, + 1055.0, + 650.0, + 1079.0, + 620.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1060.0, + 719.0, + 1060.0, + 719.0, + 1076.0, + 704.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1058.0, + 768.0, + 1058.0, + 768.0, + 1076.0, + 744.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1057.0, + 812.0, + 1057.0, + 812.0, + 1076.0, + 787.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1058.0, + 854.0, + 1058.0, + 854.0, + 1075.0, + 831.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1057.0, + 902.0, + 1057.0, + 902.0, + 1075.0, + 872.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1053.0, + 946.0, + 1053.0, + 946.0, + 1078.0, + 903.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1056.0, + 989.0, + 1056.0, + 989.0, + 1078.0, + 956.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1057.0, + 1037.0, + 1057.0, + 1037.0, + 1078.0, + 995.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1060.0, + 1055.0, + 1060.0, + 1055.0, + 1075.0, + 1038.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1058.0, + 1103.0, + 1058.0, + 1103.0, + 1076.0, + 1081.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1057.0, + 1147.0, + 1057.0, + 1147.0, + 1076.0, + 1122.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1058.0, + 1191.0, + 1058.0, + 1191.0, + 1075.0, + 1166.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1053.0, + 1238.0, + 1053.0, + 1238.0, + 1079.0, + 1206.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1056.0, + 1281.0, + 1056.0, + 1281.0, + 1078.0, + 1248.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1056.0, + 1370.0, + 1056.0, + 1370.0, + 1078.0, + 1291.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1071.0, + 587.0, + 1071.0, + 587.0, + 1097.0, + 469.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1070.0, + 948.0, + 1070.0, + 948.0, + 1095.0, + 778.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1072.0, + 1283.0, + 1072.0, + 1283.0, + 1094.0, + 1114.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.25, + 906.5, + 660.25, + 906.5, + 660.25, + 923.5, + 617.25, + 923.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 952.5, + 459.0, + 952.5, + 459.0, + 976.5, + 370.0, + 976.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1026.5, + 1011.0, + 1026.5, + 1011.0, + 1050.5, + 898.0, + 1050.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1026.5, + 1348.0, + 1026.5, + 1348.0, + 1050.5, + 1233.0, + 1050.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1055.0, + 394.0, + 1055.0, + 394.0, + 1078.5, + 358.0, + 1078.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 202.0, + 784.0, + 202.0, + 784.0, + 225.0, + 459.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 202.0, + 1289.0, + 202.0, + 1289.0, + 225.0, + 955.0, + 225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 213.0, + 392.0, + 213.0, + 392.0, + 240.0, + 348.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 251.0, + 392.0, + 251.0, + 392.0, + 278.0, + 348.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 290.0, + 392.0, + 290.0, + 392.0, + 316.0, + 348.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 299.0, + 360.0, + 299.0, + 360.0, + 411.0, + 330.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 328.0, + 390.0, + 328.0, + 390.0, + 354.0, + 349.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 354.0, + 578.0, + 354.0, + 578.0, + 363.0, + 567.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 366.0, + 390.0, + 366.0, + 390.0, + 391.0, + 348.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 404.0, + 390.0, + 404.0, + 390.0, + 431.0, + 348.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 416.0, + 578.0, + 416.0, + 578.0, + 429.0, + 557.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 408.0, + 632.0, + 408.0, + 632.0, + 437.0, + 586.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 412.0, + 843.0, + 412.0, + 843.0, + 435.0, + 754.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 442.0, + 392.0, + 442.0, + 392.0, + 468.0, + 348.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 439.0, + 572.0, + 439.0, + 572.0, + 449.0, + 559.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 432.0, + 675.0, + 432.0, + 675.0, + 456.0, + 585.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 432.0, + 814.0, + 432.0, + 814.0, + 456.0, + 752.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 443.0, + 967.0, + 443.0, + 967.0, + 453.0, + 956.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 454.0, + 694.0, + 454.0, + 694.0, + 477.0, + 586.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 449.0, + 844.0, + 449.0, + 844.0, + 477.0, + 752.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 483.0, + 642.0, + 483.0, + 642.0, + 516.0, + 604.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 485.0, + 755.0, + 485.0, + 755.0, + 514.0, + 721.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 488.0, + 875.0, + 488.0, + 875.0, + 514.0, + 836.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 487.0, + 1024.0, + 487.0, + 1024.0, + 515.0, + 990.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 485.0, + 1140.0, + 485.0, + 1140.0, + 514.0, + 1105.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 487.0, + 1255.0, + 487.0, + 1255.0, + 514.0, + 1221.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 506.0, + 691.0, + 506.0, + 691.0, + 537.0, + 554.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 506.0, + 1190.0, + 506.0, + 1190.0, + 536.0, + 1054.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 486.5, + 413.0, + 486.5, + 413.0, + 514.5, + 373.0, + 514.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 487.5, + 526.0, + 487.5, + 526.0, + 514.5, + 487.0, + 514.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 487.0, + 912.0, + 487.0, + 912.0, + 513.0, + 869.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.75, + 487.0, + 1371.75, + 487.0, + 1371.75, + 514.0, + 1331.75, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1124.0, + 1404.0, + 1124.0, + 1404.0, + 1159.0, + 295.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1154.0, + 1404.0, + 1154.0, + 1404.0, + 1191.0, + 294.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1186.0, + 495.0, + 1186.0, + 495.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1186.0, + 1406.0, + 1186.0, + 1406.0, + 1220.0, + 553.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 1404.0, + 1216.0, + 1404.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1244.0, + 296.0, + 1244.0, + 296.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1244.0, + 1406.0, + 1244.0, + 1406.0, + 1280.0, + 353.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1276.0, + 1404.0, + 1276.0, + 1404.0, + 1311.0, + 294.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1307.0, + 974.0, + 1307.0, + 974.0, + 1341.0, + 295.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 566.0, + 1403.0, + 566.0, + 1403.0, + 596.0, + 297.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 594.0, + 1407.0, + 594.0, + 1407.0, + 628.0, + 295.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 1404.0, + 624.0, + 1404.0, + 657.0, + 294.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 656.0, + 1406.0, + 656.0, + 1406.0, + 689.0, + 295.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 681.0, + 1406.0, + 681.0, + 1406.0, + 724.0, + 294.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 713.0, + 1406.0, + 713.0, + 1406.0, + 753.0, + 293.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 746.0, + 1404.0, + 746.0, + 1404.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 774.0, + 403.0, + 774.0, + 403.0, + 813.0, + 293.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1856.0, + 1404.0, + 1856.0, + 1404.0, + 1888.0, + 296.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1922.0, + 293.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1952.0, + 294.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1981.0, + 294.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 1410.0, + 1976.0, + 1410.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1153.0, + 2004.0, + 1153.0, + 2045.0, + 294.0, + 2045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2091.0, + 839.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 203.0, + 1289.0, + 203.0, + 1289.0, + 226.0, + 955.0, + 226.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1035, + 1405, + 1035, + 1405, + 1279, + 298, + 1279 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1460, + 1403, + 1460, + 1403, + 1642, + 298, + 1642 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1293, + 1403, + 1293, + 1403, + 1446, + 298, + 1446 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1792, + 1404, + 1792, + 1404, + 2008, + 298, + 2008 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 1657, + 1403, + 1657, + 1403, + 1780, + 299, + 1780 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 491, + 1406, + 491, + 1406, + 583, + 296, + 583 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 299, + 960, + 1401, + 960, + 1401, + 1022, + 299, + 1022 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 373, + 727, + 1405, + 727, + 1405, + 935, + 373, + 935 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 640, + 1403, + 640, + 1403, + 704, + 294, + 704 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.798 + }, + { + "category_id": 3, + "poly": [ + 300, + 246, + 1391, + 246, + 1391, + 458, + 300, + 458 + ], + "score": 0.786 + }, + { + "category_id": 2, + "poly": [ + 776, + 213, + 908, + 213, + 908, + 240, + 776, + 240 + ], + "score": 0.201 + }, + { + "category_id": 13, + "poly": [ + 907, + 1416, + 944, + 1416, + 944, + 1446, + 907, + 1446 + ], + "score": 0.73, + "latex": "\\ S \\mathrm { A }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 529.0, + 293.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 523.0, + 1407.0, + 523.0, + 1407.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 553.0, + 667.0, + 553.0, + 667.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2090.0, + 838.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 248.0, + 618.0, + 248.0, + 618.0, + 279.0, + 343.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 251.0, + 724.0, + 251.0, + 724.0, + 275.0, + 672.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 251.0, + 842.0, + 251.0, + 842.0, + 275.0, + 770.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 250.0, + 936.0, + 250.0, + 936.0, + 275.0, + 891.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 252.0, + 1043.0, + 252.0, + 1043.0, + 274.0, + 1001.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 251.0, + 1163.0, + 251.0, + 1163.0, + 275.0, + 1096.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 251.0, + 1272.0, + 251.0, + 1272.0, + 275.0, + 1202.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 251.0, + 1376.0, + 251.0, + 1376.0, + 275.0, + 1314.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 312.0, + 324.0, + 312.0, + 324.0, + 334.0, + 306.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 362.0, + 779.0, + 362.0, + 779.0, + 462.0, + 301.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 211.0, + 910.0, + 211.0, + 910.0, + 243.0, + 776.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1070.0, + 295.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1405.0, + 1066.0, + 1405.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1097.0, + 1407.0, + 1097.0, + 1407.0, + 1131.0, + 295.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 1406.0, + 1126.0, + 1406.0, + 1162.0, + 295.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1192.0, + 295.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1186.0, + 1405.0, + 1186.0, + 1405.0, + 1223.0, + 293.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1218.0, + 1405.0, + 1218.0, + 1405.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 669.0, + 1248.0, + 669.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1458.0, + 1405.0, + 1458.0, + 1405.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1489.0, + 1408.0, + 1489.0, + 1408.0, + 1526.0, + 292.0, + 1526.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": [ + 293.0, + 1550.0, + 1405.0, + 1550.0, + 1405.0, + 1586.0, + 293.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1581.0, + 1405.0, + 1581.0, + 1405.0, + 1615.0, + 293.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 1220.0, + 1611.0, + 1220.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1404.0, + 1292.0, + 1404.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1323.0, + 1405.0, + 1323.0, + 1405.0, + 1356.0, + 296.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1355.0, + 1405.0, + 1355.0, + 1405.0, + 1388.0, + 296.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1383.0, + 1408.0, + 1383.0, + 1408.0, + 1420.0, + 292.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1413.0, + 906.0, + 1413.0, + 906.0, + 1449.0, + 293.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1413.0, + 955.0, + 1413.0, + 955.0, + 1449.0, + 945.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1832.0, + 292.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1408.0, + 1826.0, + 1408.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1854.0, + 1408.0, + 1854.0, + 1408.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1916.0, + 1402.0, + 1916.0, + 1402.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1406.0, + 1946.0, + 1406.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1180.0, + 1974.0, + 1180.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1655.0, + 1407.0, + 1655.0, + 1407.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1408.0, + 1687.0, + 1408.0, + 1723.0, + 294.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1717.0, + 1407.0, + 1717.0, + 1407.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 1407.0, + 1750.0, + 1407.0, + 1782.0, + 295.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 997.0, + 294.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 950.0, + 991.0, + 950.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 729.0, + 1339.0, + 729.0, + 1339.0, + 762.0, + 373.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 805.0, + 370.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 800.0, + 1407.0, + 800.0, + 1407.0, + 836.0, + 393.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 841.0, + 1403.0, + 841.0, + 1403.0, + 878.0, + 373.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 874.0, + 1403.0, + 874.0, + 1403.0, + 908.0, + 393.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 906.0, + 722.0, + 906.0, + 722.0, + 940.0, + 395.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 1343.0, + 669.0, + 1343.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1762, + 1405, + 1762, + 1405, + 2007, + 297, + 2007 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1467, + 1405, + 1467, + 1405, + 1650, + 298, + 1650 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 376, + 189, + 1324, + 189, + 1324, + 828, + 376, + 828 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 382, + 971, + 1321, + 971, + 1321, + 1257, + 382, + 1257 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 298, + 1289, + 1407, + 1289, + 1407, + 1412, + 298, + 1412 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 298, + 846, + 1405, + 846, + 1405, + 940, + 298, + 940 + ], + "score": 0.956 + }, + { + "category_id": 0, + "poly": [ + 298, + 1693, + 548, + 1693, + 548, + 1731, + 298, + 1731 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 858, + 2061, + 858, + 2084, + 840, + 2084 + ], + "score": 0.798 + }, + { + "category_id": 13, + "poly": [ + 545, + 1590, + 601, + 1590, + 601, + 1619, + 545, + 1619 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 184.0, + 1251.0, + 184.0, + 1251.0, + 352.0, + 464.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 258.0, + 579.0, + 258.0, + 579.0, + 274.0, + 557.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 260.0, + 1022.0, + 260.0, + 1022.0, + 272.0, + 1014.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 256.0, + 1279.0, + 256.0, + 1279.0, + 271.0, + 1250.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 273.0, + 724.0, + 273.0, + 724.0, + 281.0, + 712.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 269.0, + 974.0, + 269.0, + 974.0, + 282.0, + 966.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 267.0, + 1080.0, + 267.0, + 1080.0, + 289.0, + 1064.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 278.0, + 1069.0, + 278.0, + 1069.0, + 286.0, + 1062.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 282.0, + 1022.0, + 282.0, + 1022.0, + 290.0, + 1014.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 325.0, + 404.0, + 325.0, + 404.0, + 367.0, + 376.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 289.0, + 437.0, + 289.0, + 437.0, + 360.0, + 415.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 333.0, + 965.0, + 333.0, + 965.0, + 340.0, + 937.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 334.0, + 1021.0, + 334.0, + 1021.0, + 341.0, + 1001.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 361.0, + 432.0, + 361.0, + 432.0, + 410.0, + 413.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 369.0, + 477.0, + 369.0, + 477.0, + 377.0, + 456.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 369.0, + 521.0, + 369.0, + 521.0, + 377.0, + 482.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 367.0, + 574.0, + 367.0, + 574.0, + 378.0, + 548.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 367.0, + 735.0, + 367.0, + 735.0, + 378.0, + 711.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 367.0, + 762.0, + 367.0, + 762.0, + 378.0, + 741.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 367.0, + 833.0, + 367.0, + 833.0, + 378.0, + 800.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 367.0, + 878.0, + 367.0, + 878.0, + 378.0, + 835.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 367.0, + 966.0, + 367.0, + 966.0, + 378.0, + 886.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 367.0, + 1027.0, + 367.0, + 1027.0, + 378.0, + 976.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 367.0, + 1054.0, + 367.0, + 1054.0, + 378.0, + 1028.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 367.0, + 1122.0, + 367.0, + 1122.0, + 378.0, + 1065.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 367.0, + 1145.0, + 367.0, + 1145.0, + 378.0, + 1124.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 367.0, + 1190.0, + 367.0, + 1190.0, + 378.0, + 1152.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 367.0, + 1216.0, + 367.0, + 1216.0, + 378.0, + 1192.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 413.0, + 774.0, + 413.0, + 774.0, + 483.0, + 715.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 423.0, + 693.0, + 423.0, + 693.0, + 438.0, + 654.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 472.0, + 431.0, + 472.0, + 431.0, + 588.0, + 402.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 490.0, + 405.0, + 490.0, + 405.0, + 570.0, + 375.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 584.0, + 524.0, + 584.0, + 524.0, + 595.0, + 453.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 584.0, + 611.0, + 584.0, + 611.0, + 595.0, + 533.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 584.0, + 699.0, + 584.0, + 699.0, + 595.0, + 621.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 583.0, + 790.0, + 583.0, + 790.0, + 598.0, + 708.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 583.0, + 878.0, + 583.0, + 878.0, + 598.0, + 798.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 583.0, + 966.0, + 583.0, + 966.0, + 598.0, + 886.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 584.0, + 1028.0, + 584.0, + 1028.0, + 595.0, + 976.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 584.0, + 1053.0, + 584.0, + 1053.0, + 595.0, + 1029.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 583.0, + 1143.0, + 583.0, + 1143.0, + 598.0, + 1064.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 583.0, + 1221.0, + 583.0, + 1221.0, + 598.0, + 1152.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 584.0, + 1314.0, + 584.0, + 1314.0, + 595.0, + 1242.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 596.0, + 1178.0, + 596.0, + 1178.0, + 753.0, + 559.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 630.0, + 433.0, + 630.0, + 433.0, + 805.0, + 401.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 649.0, + 610.0, + 649.0, + 610.0, + 702.0, + 551.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 662.0, + 566.0, + 662.0, + 566.0, + 680.0, + 549.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 675.0, + 581.0, + 675.0, + 581.0, + 683.0, + 574.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 680.0, + 402.0, + 680.0, + 402.0, + 758.0, + 377.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 743.0, + 753.0, + 743.0, + 753.0, + 754.0, + 734.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 745.0, + 788.0, + 745.0, + 788.0, + 754.0, + 777.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 746.0, + 813.0, + 746.0, + 813.0, + 758.0, + 799.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 746.0, + 835.0, + 746.0, + 835.0, + 754.0, + 822.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 745.0, + 1053.0, + 745.0, + 1053.0, + 757.0, + 1034.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 754.0, + 1018.0, + 754.0, + 1018.0, + 765.0, + 1000.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 780.0, + 639.0, + 780.0, + 639.0, + 797.0, + 619.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 765.0, + 698.0, + 765.0, + 698.0, + 798.0, + 648.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 770.0, + 881.0, + 770.0, + 881.0, + 799.0, + 791.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 768.0, + 1061.0, + 768.0, + 1061.0, + 800.0, + 968.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 760.0, + 1107.0, + 760.0, + 1107.0, + 771.0, + 1087.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 781.0, + 1144.0, + 781.0, + 1144.0, + 797.0, + 1115.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 766.0, + 1207.0, + 766.0, + 1207.0, + 794.0, + 1162.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 778.0, + 1223.0, + 778.0, + 1223.0, + 787.0, + 1215.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 801.0, + 632.0, + 801.0, + 632.0, + 810.0, + 623.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 801.0, + 671.0, + 801.0, + 671.0, + 809.0, + 660.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 803.0, + 1199.0, + 803.0, + 1199.0, + 811.0, + 1184.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 814.0, + 1274.0, + 814.0, + 1274.0, + 823.0, + 1265.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.75, + 250.0, + 1020.75, + 250.0, + 1020.75, + 259.0, + 1010.75, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 771.0, + 795.0, + 771.0, + 795.0, + 799.5, + 715.0, + 799.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.75, + 778.0, + 970.75, + 778.0, + 970.75, + 799.0, + 898.75, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 781.5, + 1112.0, + 781.5, + 1112.0, + 793.5, + 1083.0, + 793.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 973.0, + 821.0, + 973.0, + 821.0, + 994.0, + 756.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1021.0, + 405.0, + 1021.0, + 405.0, + 1233.0, + 377.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1012.0, + 544.0, + 1012.0, + 544.0, + 1037.0, + 475.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1015.0, + 755.0, + 1015.0, + 755.0, + 1036.0, + 635.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1013.0, + 909.0, + 1013.0, + 909.0, + 1038.0, + 853.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1014.0, + 1129.0, + 1014.0, + 1129.0, + 1038.0, + 1003.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1043.0, + 1272.0, + 1043.0, + 1272.0, + 1070.0, + 1169.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1060.0, + 591.0, + 1060.0, + 591.0, + 1095.0, + 571.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1067.0, + 1216.0, + 1067.0, + 1216.0, + 1093.0, + 1172.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1091.0, + 428.0, + 1091.0, + 428.0, + 1112.0, + 402.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1087.0, + 1215.0, + 1087.0, + 1215.0, + 1111.0, + 1176.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1109.0, + 1322.0, + 1109.0, + 1322.0, + 1140.0, + 1169.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1134.0, + 1216.0, + 1134.0, + 1216.0, + 1161.0, + 1171.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1160.0, + 427.0, + 1160.0, + 427.0, + 1181.0, + 402.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1155.0, + 1214.0, + 1155.0, + 1214.0, + 1178.0, + 1171.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1177.0, + 690.0, + 1177.0, + 690.0, + 1187.0, + 671.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1213.0, + 449.0, + 1213.0, + 449.0, + 1234.0, + 428.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1209.0, + 600.0, + 1209.0, + 600.0, + 1235.0, + 511.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1212.0, + 635.0, + 1212.0, + 635.0, + 1234.0, + 612.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1209.0, + 785.0, + 1209.0, + 785.0, + 1235.0, + 696.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1213.0, + 818.0, + 1213.0, + 818.0, + 1232.0, + 800.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1209.0, + 972.0, + 1209.0, + 972.0, + 1235.0, + 881.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1213.0, + 1003.0, + 1213.0, + 1003.0, + 1232.0, + 985.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1209.0, + 1156.0, + 1209.0, + 1156.0, + 1235.0, + 1066.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1227.0, + 566.0, + 1227.0, + 566.0, + 1259.0, + 457.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1228.0, + 751.0, + 1228.0, + 751.0, + 1259.0, + 642.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1227.0, + 936.0, + 1227.0, + 936.0, + 1259.0, + 827.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1227.0, + 1121.0, + 1227.0, + 1121.0, + 1259.0, + 1013.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1164.0, + 923.0, + 1164.0, + 923.0, + 1184.5, + 836.0, + 1184.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1285.0, + 1408.0, + 1285.0, + 1408.0, + 1325.0, + 293.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1319.0, + 1405.0, + 1319.0, + 1405.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 1407.0, + 1347.0, + 1407.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1377.0, + 1381.0, + 1377.0, + 1381.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 1406.0, + 845.0, + 1406.0, + 881.0, + 293.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 877.0, + 1405.0, + 877.0, + 1405.0, + 909.0, + 293.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 908.0, + 1264.0, + 908.0, + 1264.0, + 941.0, + 296.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1692.0, + 551.0, + 1692.0, + 551.0, + 1736.0, + 292.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2060.0, + 860.0, + 2060.0, + 860.0, + 2090.0, + 839.0, + 2090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 1405.0, + 1762.0, + 1405.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 1405.0, + 1791.0, + 1405.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1825.0, + 1406.0, + 1825.0, + 1406.0, + 1856.0, + 292.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1888.0, + 295.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 1402.0, + 1886.0, + 1402.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1916.0, + 1406.0, + 1916.0, + 1406.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1008.0, + 1974.0, + 1008.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1503.0, + 296.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 1403.0, + 1497.0, + 1403.0, + 1532.0, + 293.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1528.0, + 1408.0, + 1528.0, + 1408.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1559.0, + 1406.0, + 1559.0, + 1406.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 544.0, + 1591.0, + 544.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1591.0, + 1403.0, + 1591.0, + 1403.0, + 1623.0, + 602.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1620.0, + 1347.0, + 1620.0, + 1347.0, + 1652.0, + 297.0, + 1652.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1428, + 1404, + 1428, + 1404, + 1674, + 297, + 1674 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 903, + 1407, + 903, + 1407, + 1179, + 298, + 1179 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1293, + 1403, + 1293, + 1403, + 1415, + 299, + 1415 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1823, + 1403, + 1823, + 1403, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1687, + 1403, + 1687, + 1403, + 1810, + 299, + 1810 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 569, + 208, + 1128, + 208, + 1128, + 642, + 569, + 642 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 677, + 1405, + 677, + 1405, + 838, + 296, + 838 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 298, + 1217, + 509, + 1217, + 509, + 1255, + 298, + 1255 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 837, + 2061, + 865, + 2061, + 865, + 2085, + 837, + 2085 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 661, + 208, + 1102, + 208, + 1102, + 231, + 661, + 231 + ], + "score": 0.135 + }, + { + "category_id": 13, + "poly": [ + 855, + 709, + 938, + 709, + 938, + 750, + 855, + 750 + ], + "score": 0.93, + "latex": "K _ { X _ { s } X _ { s } } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1268, + 775, + 1324, + 775, + 1324, + 805, + 1268, + 805 + ], + "score": 0.86, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1015, + 807, + 1053, + 807, + 1053, + 836, + 1015, + 836 + ], + "score": 0.82, + "latex": "\\ S" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 206.0, + 1103.0, + 206.0, + 1103.0, + 234.0, + 662.0, + 234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 249.0, + 636.0, + 249.0, + 636.0, + 283.0, + 595.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 241.0, + 927.0, + 241.0, + 927.0, + 294.0, + 834.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 291.0, + 976.0, + 291.0, + 976.0, + 316.0, + 836.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 296.0, + 599.0, + 296.0, + 599.0, + 497.0, + 570.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 310.0, + 635.0, + 310.0, + 635.0, + 340.0, + 595.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 314.0, + 949.0, + 314.0, + 949.0, + 340.0, + 836.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 335.0, + 967.0, + 335.0, + 967.0, + 363.0, + 834.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 366.0, + 637.0, + 366.0, + 637.0, + 406.0, + 593.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 359.0, + 942.0, + 359.0, + 942.0, + 388.0, + 835.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 425.0, + 635.0, + 425.0, + 635.0, + 460.0, + 595.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 486.0, + 634.0, + 486.0, + 634.0, + 515.0, + 595.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 548.0, + 633.0, + 548.0, + 633.0, + 572.0, + 596.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 578.5, + 688.0, + 578.5, + 688.0, + 620.5, + 593.0, + 620.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 578.5, + 787.0, + 578.5, + 787.0, + 624.5, + 681.0, + 624.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 577.5, + 879.0, + 577.5, + 879.0, + 623.5, + 774.0, + 623.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 578.0, + 974.0, + 578.0, + 974.0, + 625.0, + 866.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.25, + 584.0, + 1068.25, + 584.0, + 1068.25, + 627.0, + 957.25, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 679.0, + 1403.0, + 679.0, + 1403.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 710.0, + 854.0, + 710.0, + 854.0, + 756.0, + 290.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 710.0, + 1408.0, + 710.0, + 1408.0, + 756.0, + 939.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 744.0, + 1407.0, + 744.0, + 1407.0, + 781.0, + 293.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 775.0, + 1267.0, + 775.0, + 1267.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 775.0, + 1405.0, + 775.0, + 1405.0, + 810.0, + 1325.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 806.0, + 1014.0, + 806.0, + 1014.0, + 840.0, + 296.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 806.0, + 1063.0, + 806.0, + 1063.0, + 840.0, + 1054.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1213.0, + 514.0, + 1213.0, + 514.0, + 1262.0, + 292.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2057.0, + 871.0, + 2057.0, + 871.0, + 2098.0, + 831.0, + 2098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 204.0, + 1104.0, + 204.0, + 1104.0, + 236.0, + 661.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1430.0, + 1405.0, + 1430.0, + 1405.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1462.0, + 1404.0, + 1462.0, + 1404.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 1404.0, + 1489.0, + 1404.0, + 1525.0, + 294.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1522.0, + 1404.0, + 1522.0, + 1404.0, + 1552.0, + 296.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1552.0, + 1405.0, + 1552.0, + 1405.0, + 1582.0, + 295.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1581.0, + 1406.0, + 1581.0, + 1406.0, + 1615.0, + 296.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1612.0, + 1404.0, + 1612.0, + 1404.0, + 1646.0, + 295.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1641.0, + 1225.0, + 1641.0, + 1225.0, + 1677.0, + 294.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 904.0, + 1405.0, + 904.0, + 1405.0, + 937.0, + 297.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 933.0, + 1408.0, + 933.0, + 1408.0, + 968.0, + 292.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 965.0, + 1408.0, + 965.0, + 1408.0, + 998.0, + 296.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 993.0, + 1408.0, + 993.0, + 1408.0, + 1029.0, + 292.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1024.0, + 1408.0, + 1024.0, + 1408.0, + 1059.0, + 295.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1057.0, + 1404.0, + 1057.0, + 1404.0, + 1089.0, + 296.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1087.0, + 1405.0, + 1087.0, + 1405.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 1404.0, + 1115.0, + 1404.0, + 1152.0, + 295.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 1189.0, + 1145.0, + 1189.0, + 1182.0, + 293.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1407.0, + 1292.0, + 1407.0, + 1329.0, + 293.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1357.0, + 294.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 1316.0, + 1386.0, + 1316.0, + 1419.0, + 295.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1824.0, + 1404.0, + 1824.0, + 1404.0, + 1855.0, + 297.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1408.0, + 1854.0, + 1408.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1914.0, + 1407.0, + 1914.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1947.0, + 1404.0, + 1947.0, + 1404.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1977.0, + 1103.0, + 1977.0, + 1103.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1721.0, + 294.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1718.0, + 1405.0, + 1718.0, + 1405.0, + 1751.0, + 295.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1782.0, + 294.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1772.0, + 374.0, + 1772.0, + 374.0, + 1818.0, + 291.0, + 1818.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 202, + 1402, + 202, + 1402, + 295, + 295, + 295 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 336, + 456, + 336, + 456, + 372, + 299, + 372 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 863, + 2061, + 863, + 2085, + 836, + 2085 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 297, + 995, + 1402, + 995, + 1402, + 1055, + 297, + 1055 + ], + "score": 0.482 + }, + { + "category_id": 1, + "poly": [ + 295, + 916, + 1403, + 916, + 1403, + 976, + 295, + 976 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 299, + 387, + 1401, + 387, + 1401, + 446, + 299, + 446 + ], + "score": 0.462 + }, + { + "category_id": 1, + "poly": [ + 298, + 1152, + 1402, + 1152, + 1402, + 1213, + 298, + 1213 + ], + "score": 0.459 + }, + { + "category_id": 1, + "poly": [ + 294, + 1390, + 1402, + 1390, + 1402, + 1450, + 294, + 1450 + ], + "score": 0.452 + }, + { + "category_id": 1, + "poly": [ + 291, + 1311, + 1402, + 1311, + 1402, + 1371, + 291, + 1371 + ], + "score": 0.44 + }, + { + "category_id": 1, + "poly": [ + 300, + 1074, + 1401, + 1074, + 1401, + 1134, + 300, + 1134 + ], + "score": 0.432 + }, + { + "category_id": 1, + "poly": [ + 299, + 1469, + 1400, + 1469, + 1400, + 1558, + 299, + 1558 + ], + "score": 0.425 + }, + { + "category_id": 1, + "poly": [ + 297, + 1232, + 1400, + 1232, + 1400, + 1292, + 297, + 1292 + ], + "score": 0.424 + }, + { + "category_id": 1, + "poly": [ + 296, + 836, + 1403, + 836, + 1403, + 897, + 296, + 897 + ], + "score": 0.423 + }, + { + "category_id": 1, + "poly": [ + 296, + 465, + 1401, + 465, + 1401, + 525, + 296, + 525 + ], + "score": 0.407 + }, + { + "category_id": 1, + "poly": [ + 295, + 1842, + 1400, + 1842, + 1400, + 1928, + 295, + 1928 + ], + "score": 0.387 + }, + { + "category_id": 1, + "poly": [ + 298, + 757, + 1402, + 757, + 1402, + 817, + 298, + 817 + ], + "score": 0.379 + }, + { + "category_id": 1, + "poly": [ + 297, + 544, + 1402, + 544, + 1402, + 631, + 297, + 631 + ], + "score": 0.364 + }, + { + "category_id": 1, + "poly": [ + 299, + 1655, + 1400, + 1655, + 1400, + 1742, + 299, + 1742 + ], + "score": 0.363 + }, + { + "category_id": 1, + "poly": [ + 299, + 651, + 1400, + 651, + 1400, + 738, + 299, + 738 + ], + "score": 0.353 + }, + { + "category_id": 1, + "poly": [ + 292, + 1576, + 1399, + 1576, + 1399, + 1636, + 292, + 1636 + ], + "score": 0.351 + }, + { + "category_id": 1, + "poly": [ + 295, + 1761, + 1398, + 1761, + 1398, + 1822, + 295, + 1822 + ], + "score": 0.345 + }, + { + "category_id": 1, + "poly": [ + 293, + 1948, + 1403, + 1948, + 1403, + 2007, + 293, + 2007 + ], + "score": 0.272 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 332.0, + 460.0, + 332.0, + 460.0, + 378.0, + 295.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 868.0, + 2058.0, + 868.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 201.0, + 1404.0, + 201.0, + 1404.0, + 239.0, + 294.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 233.0, + 1405.0, + 233.0, + 1405.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 264.0, + 1213.0, + 264.0, + 1213.0, + 298.0, + 297.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 1404.0, + 994.0, + 1404.0, + 1028.0, + 295.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1024.0, + 734.0, + 1024.0, + 734.0, + 1055.0, + 324.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 1405.0, + 915.0, + 1405.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 944.0, + 947.0, + 944.0, + 947.0, + 977.0, + 320.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 388.0, + 1403.0, + 388.0, + 1403.0, + 419.0, + 297.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 414.0, + 1176.0, + 414.0, + 1176.0, + 448.0, + 320.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1154.0, + 1404.0, + 1154.0, + 1404.0, + 1189.0, + 296.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1183.0, + 669.0, + 1183.0, + 669.0, + 1213.0, + 318.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1425.0, + 294.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1419.0, + 810.0, + 1419.0, + 810.0, + 1450.0, + 323.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1404.0, + 1311.0, + 1404.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1341.0, + 843.0, + 1341.0, + 843.0, + 1371.0, + 323.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 1406.0, + 1071.0, + 1406.0, + 1109.0, + 295.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1103.0, + 919.0, + 1103.0, + 919.0, + 1134.0, + 321.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1405.0, + 1466.0, + 1405.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1532.0, + 320.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1528.0, + 1176.0, + 1528.0, + 1176.0, + 1558.0, + 322.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1233.0, + 1405.0, + 1233.0, + 1405.0, + 1268.0, + 296.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1260.0, + 1004.0, + 1260.0, + 1004.0, + 1293.0, + 323.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 836.0, + 1406.0, + 836.0, + 1406.0, + 872.0, + 296.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 868.0, + 815.0, + 868.0, + 815.0, + 895.0, + 323.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 467.0, + 1402.0, + 467.0, + 1402.0, + 499.0, + 296.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 494.0, + 1152.0, + 494.0, + 1152.0, + 526.0, + 321.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1840.0, + 1404.0, + 1840.0, + 1404.0, + 1876.0, + 295.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1870.0, + 1404.0, + 1870.0, + 1404.0, + 1901.0, + 323.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1899.0, + 490.0, + 1899.0, + 490.0, + 1929.0, + 323.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 752.0, + 1406.0, + 752.0, + 1406.0, + 795.0, + 293.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 785.0, + 583.0, + 785.0, + 583.0, + 819.0, + 321.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 547.0, + 1403.0, + 547.0, + 1403.0, + 576.0, + 296.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 575.0, + 1408.0, + 575.0, + 1408.0, + 604.0, + 325.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 603.0, + 729.0, + 603.0, + 729.0, + 632.0, + 325.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1656.0, + 1405.0, + 1656.0, + 1405.0, + 1689.0, + 295.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1720.0, + 320.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1713.0, + 756.0, + 1713.0, + 756.0, + 1742.0, + 324.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 684.0, + 295.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 713.0, + 322.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 707.0, + 1181.0, + 707.0, + 1181.0, + 744.0, + 322.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1578.0, + 1404.0, + 1578.0, + 1404.0, + 1610.0, + 297.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1604.0, + 1260.0, + 1604.0, + 1260.0, + 1637.0, + 321.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1764.0, + 1402.0, + 1764.0, + 1402.0, + 1795.0, + 296.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1790.0, + 1210.0, + 1790.0, + 1210.0, + 1822.0, + 324.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1405.0, + 1945.0, + 1405.0, + 1984.0, + 295.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1976.0, + 583.0, + 1976.0, + 583.0, + 2006.0, + 321.0, + 2006.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 293, + 118, + 1410, + 118, + 1410, + 2020, + 293, + 2020 + ], + "score": 0.686 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2086, + 836, + 2086 + ], + "score": 0.116 + }, + { + "category_id": 13, + "poly": [ + 1205, + 1188, + 1220, + 1188, + 1220, + 1208, + 1205, + 1208 + ], + "score": 0.28, + "latex": "\\equiv" + }, + { + "category_id": 13, + "poly": [ + 1062, + 550, + 1078, + 550, + 1078, + 570, + 1062, + 570 + ], + "score": 0.25, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2097.0, + 832.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 199.0, + 1407.0, + 199.0, + 1407.0, + 241.0, + 292.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 226.0, + 1407.0, + 226.0, + 1407.0, + 268.0, + 317.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 260.0, + 1179.0, + 260.0, + 1179.0, + 293.0, + 321.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1403.0, + 308.0, + 1403.0, + 341.0, + 294.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 337.0, + 1405.0, + 337.0, + 1405.0, + 370.0, + 321.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 360.0, + 598.0, + 360.0, + 598.0, + 400.0, + 319.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 412.0, + 1407.0, + 412.0, + 1407.0, + 445.0, + 296.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 441.0, + 1407.0, + 441.0, + 1407.0, + 475.0, + 321.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 468.0, + 1291.0, + 468.0, + 1291.0, + 502.0, + 321.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 516.0, + 1405.0, + 516.0, + 1405.0, + 550.0, + 294.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 539.0, + 1061.0, + 539.0, + 1061.0, + 581.0, + 319.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 539.0, + 1407.0, + 539.0, + 1407.0, + 581.0, + 1079.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 573.0, + 699.0, + 573.0, + 699.0, + 606.0, + 321.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 619.0, + 1407.0, + 619.0, + 1407.0, + 652.0, + 298.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 646.0, + 756.0, + 646.0, + 756.0, + 679.0, + 321.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 698.0, + 1405.0, + 698.0, + 1405.0, + 731.0, + 294.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 725.0, + 598.0, + 725.0, + 598.0, + 758.0, + 321.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 773.0, + 1405.0, + 773.0, + 1405.0, + 806.0, + 298.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 802.0, + 902.0, + 802.0, + 902.0, + 835.0, + 321.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 850.0, + 1264.0, + 850.0, + 1264.0, + 883.0, + 298.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 894.0, + 1407.0, + 894.0, + 1407.0, + 936.0, + 294.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 927.0, + 1122.0, + 927.0, + 1122.0, + 961.0, + 321.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1009.0, + 294.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1038.0, + 319.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1029.0, + 919.0, + 1029.0, + 919.0, + 1063.0, + 319.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 1405.0, + 1079.0, + 1405.0, + 1113.0, + 294.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1111.0, + 873.0, + 1111.0, + 873.0, + 1138.0, + 321.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1157.0, + 1407.0, + 1157.0, + 1407.0, + 1190.0, + 296.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1184.0, + 1204.0, + 1184.0, + 1204.0, + 1217.0, + 321.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1184.0, + 1356.0, + 1184.0, + 1356.0, + 1217.0, + 1221.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1407.0, + 1232.0, + 1407.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1261.0, + 585.0, + 1261.0, + 585.0, + 1292.0, + 319.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1342.0, + 294.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1336.0, + 704.0, + 1336.0, + 704.0, + 1369.0, + 319.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1380.0, + 1409.0, + 1380.0, + 1409.0, + 1421.0, + 290.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1415.0, + 822.0, + 1415.0, + 822.0, + 1442.0, + 323.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 1407.0, + 1461.0, + 1407.0, + 1494.0, + 294.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1486.0, + 1409.0, + 1486.0, + 1409.0, + 1524.0, + 317.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1517.0, + 1268.0, + 1517.0, + 1268.0, + 1551.0, + 321.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1565.0, + 1407.0, + 1565.0, + 1407.0, + 1599.0, + 296.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1595.0, + 1166.0, + 1595.0, + 1166.0, + 1628.0, + 321.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1676.0, + 294.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1668.0, + 621.0, + 1668.0, + 621.0, + 1705.0, + 317.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1407.0, + 1713.0, + 1407.0, + 1755.0, + 294.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1747.0, + 583.0, + 1747.0, + 583.0, + 1780.0, + 321.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1318.0, + 1795.0, + 1318.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1838.0, + 1409.0, + 1838.0, + 1409.0, + 1880.0, + 290.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1870.0, + 1409.0, + 1870.0, + 1409.0, + 1907.0, + 317.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1920.0, + 1407.0, + 1920.0, + 1407.0, + 1953.0, + 296.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1947.0, + 1409.0, + 1947.0, + 1409.0, + 1984.0, + 317.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1974.0, + 393.0, + 1974.0, + 393.0, + 2010.0, + 321.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 295, + 205, + 1402, + 205, + 1402, + 263, + 295, + 263 + ], + "score": 0.569 + }, + { + "category_id": 1, + "poly": [ + 300, + 358, + 1399, + 358, + 1399, + 418, + 300, + 418 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 297, + 514, + 1401, + 514, + 1401, + 599, + 297, + 599 + ], + "score": 0.542 + }, + { + "category_id": 1, + "poly": [ + 298, + 435, + 1397, + 435, + 1397, + 496, + 298, + 496 + ], + "score": 0.541 + }, + { + "category_id": 1, + "poly": [ + 298, + 1372, + 1403, + 1372, + 1403, + 1431, + 298, + 1431 + ], + "score": 0.508 + }, + { + "category_id": 1, + "poly": [ + 297, + 1449, + 1403, + 1449, + 1403, + 1536, + 297, + 1536 + ], + "score": 0.505 + }, + { + "category_id": 1, + "poly": [ + 298, + 774, + 1399, + 774, + 1399, + 860, + 298, + 860 + ], + "score": 0.505 + }, + { + "category_id": 1, + "poly": [ + 293, + 1554, + 1402, + 1554, + 1402, + 1615, + 293, + 1615 + ], + "score": 0.499 + }, + { + "category_id": 1, + "poly": [ + 299, + 281, + 1400, + 281, + 1400, + 341, + 299, + 341 + ], + "score": 0.489 + }, + { + "category_id": 1, + "poly": [ + 295, + 696, + 1400, + 696, + 1400, + 757, + 295, + 757 + ], + "score": 0.485 + }, + { + "category_id": 1, + "poly": [ + 296, + 618, + 1402, + 618, + 1402, + 679, + 296, + 679 + ], + "score": 0.473 + }, + { + "category_id": 1, + "poly": [ + 294, + 878, + 1398, + 878, + 1398, + 939, + 294, + 939 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 299, + 1294, + 1404, + 1294, + 1404, + 1354, + 299, + 1354 + ], + "score": 0.463 + }, + { + "category_id": 1, + "poly": [ + 299, + 955, + 1401, + 955, + 1401, + 1017, + 299, + 1017 + ], + "score": 0.445 + }, + { + "category_id": 1, + "poly": [ + 302, + 1111, + 1404, + 1111, + 1404, + 1199, + 302, + 1199 + ], + "score": 0.413 + }, + { + "category_id": 1, + "poly": [ + 295, + 1217, + 1400, + 1217, + 1400, + 1277, + 295, + 1277 + ], + "score": 0.411 + }, + { + "category_id": 1, + "poly": [ + 295, + 1033, + 1401, + 1033, + 1401, + 1094, + 295, + 1094 + ], + "score": 0.388 + }, + { + "category_id": 13, + "poly": [ + 1275, + 959, + 1336, + 959, + 1336, + 987, + 1275, + 987 + ], + "score": 0.82, + "latex": "\\{ { \\mathrm { g p u } } \\}" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 870.0, + 2057.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 206.0, + 1404.0, + 206.0, + 1404.0, + 236.0, + 298.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 232.0, + 1262.0, + 232.0, + 1262.0, + 262.0, + 324.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 359.0, + 1404.0, + 359.0, + 1404.0, + 390.0, + 296.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 387.0, + 1152.0, + 387.0, + 1152.0, + 418.0, + 322.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 514.0, + 1406.0, + 514.0, + 1406.0, + 546.0, + 295.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 543.0, + 1408.0, + 543.0, + 1408.0, + 575.0, + 321.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 568.0, + 390.0, + 568.0, + 390.0, + 600.0, + 321.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 433.0, + 1403.0, + 433.0, + 1403.0, + 472.0, + 293.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 464.0, + 1051.0, + 464.0, + 1051.0, + 497.0, + 323.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1370.0, + 1408.0, + 1370.0, + 1408.0, + 1406.0, + 296.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1400.0, + 731.0, + 1400.0, + 731.0, + 1430.0, + 323.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1446.0, + 1404.0, + 1446.0, + 1404.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1478.0, + 1405.0, + 1478.0, + 1405.0, + 1510.0, + 321.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1505.0, + 736.0, + 1505.0, + 736.0, + 1538.0, + 322.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 1403.0, + 770.0, + 1403.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 834.0, + 321.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 830.0, + 656.0, + 830.0, + 656.0, + 862.0, + 321.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1553.0, + 1404.0, + 1553.0, + 1404.0, + 1584.0, + 296.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1582.0, + 1235.0, + 1582.0, + 1235.0, + 1613.0, + 324.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 280.0, + 1405.0, + 280.0, + 1405.0, + 316.0, + 294.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 309.0, + 933.0, + 309.0, + 933.0, + 342.0, + 318.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 698.0, + 1404.0, + 698.0, + 1404.0, + 729.0, + 296.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 723.0, + 1225.0, + 723.0, + 1225.0, + 757.0, + 319.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 1406.0, + 616.0, + 1406.0, + 656.0, + 294.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 647.0, + 1263.0, + 647.0, + 1263.0, + 679.0, + 321.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1404.0, + 878.0, + 1404.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 907.0, + 932.0, + 907.0, + 932.0, + 940.0, + 323.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1291.0, + 1408.0, + 1291.0, + 1408.0, + 1330.0, + 293.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1323.0, + 1273.0, + 1323.0, + 1273.0, + 1356.0, + 321.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 956.0, + 1274.0, + 956.0, + 1274.0, + 990.0, + 297.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 990.0, + 1337.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 985.0, + 1341.0, + 985.0, + 1341.0, + 1016.0, + 322.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1110.0, + 1406.0, + 1110.0, + 1406.0, + 1143.0, + 296.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1140.0, + 1408.0, + 1140.0, + 1408.0, + 1173.0, + 323.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1169.0, + 1032.0, + 1169.0, + 1032.0, + 1198.0, + 325.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1218.0, + 1404.0, + 1218.0, + 1404.0, + 1249.0, + 296.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1245.0, + 1318.0, + 1245.0, + 1318.0, + 1277.0, + 322.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1032.0, + 1406.0, + 1032.0, + 1406.0, + 1069.0, + 295.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1062.0, + 1384.0, + 1062.0, + 1384.0, + 1096.0, + 320.0, + 1096.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rJgVwTVtvS/rJgVwTVtvS.md b/parse/train/rJgVwTVtvS/rJgVwTVtvS.md new file mode 100644 index 0000000000000000000000000000000000000000..695f646657b93a9114bd80a6a23a4bff6b9506c1 --- /dev/null +++ b/parse/train/rJgVwTVtvS/rJgVwTVtvS.md @@ -0,0 +1,554 @@ +# Gradient Perturbation is Underrated for Differentially Private Convex Optimization + +Anonymous authors Paper under double-blind review + +# Abstract + +Gradient perturbation, widely used for differentially private optimization, injects noise at every iterative update to guarantee differential privacy. Previous work first determines the noise level that can satisfy the privacy requirement and then analyzes the utility of noisy gradient updates as in non-private case. In this paper, we explore how the privacy noise affects the optimization property. We show that for differentially private convex optimization, the utility guarantee of both DP-GD and DP-SGD is determined by an expected curvature rather than the minimum curvature. The expected curvature represents the average curvature over the optimization path, which is usually much larger than the minimum curvature and hence can help us achieve a significantly improved utility guarantee. By using the expected curvature, our theory justifies the advantage of gradient perturbation over other perturbation methods and closes the gap between theory and practice. Extensive experiments on real world datasets corroborate our theoretical findings. + +# 1 Introduction + +Machine learning has become a powerful tool for many practical applications. The training process often needs access to some private dataset, e.g., applications in financial and medical fields. Recent work has shown that the model learned from training data may leak unintended information of individual records (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017). It is known that Differential privacy (DP) (Dwork et al., 2006a;b) is a golden standard for privacy preserving data analysis. It provides provable privacy guarantee by ensuring the influence of any individual record is negligible. It has been deployed into real world applications by large-scale corporations and U.S. Census Bureau (Erlingsson et al., 2014; McMillan, 2016; Abowd, 2016; Ding et al., 2017). + +We study the fundamental problem when differential privacy meets machine learning: the differentially private empirical risk minimization (DP-ERM) problem (Chaudhuri & Monteleoni, 2009; Chaudhuri et al., 2011; Kifer et al., 2012; Bassily et al., 2014; Talwar et al., 2015; Wu et al., 2017; Zhang et al., 2017; Wang et al., 2017; Smith et al., 2017; Jayaraman et al., 2018; Feldman et al., 2018; Iyengar et al., 2019; Wang & Gu, 2019). DP-ERM minimizes the empirical risk while guaranteeing that the output of learning algorithm is differentially private with respect to the training data. Such privacy guarantee provides strong protection against potential adversaries (Hitaj et al., 2017; Rahman et al., 2018). In order to guarantee privacy, it is necessary to introduce randomness to the algorithm. There are usually three ways to introduce randomness according to the time of adding noise: output perturbation, objective perturbation and gradient perturbation. + +Output perturbation (Wu et al., 2017; Zhang et al., 2017) first runs the learning algorithm the same as in the non-private case then adds noise to the output parameter. Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the objective (i.e., the empirical loss) then release the minimizer of the perturbed objective. Gradient perturbation (Song et al., 2013; Bassily et al., 2014; Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018) perturbs each intermediate update. If each update is differentially private, the composition theorem of differential privacy ensures the whole learning procedure is differentially private. + +Gradient perturbation comes with several advantages over output/objective perturbations. Firstly, gradient perturbation does not require strong assumption on the objective because it only needs to bound the sensitivity of gradient update rather than the whole learning process. Secondly, gradient perturbation can release the noisy gradient at each iteration without damaging the privacy guarantee as differential privacy is immune to post processing (Dwork et al., 2014). Thus, it is a more favorable choice for certain applications such as distributed optimization (Rajkumar & Agarwal, 2012; Agarwal et al., 2018; Jayaraman et al., 2018). At last, gradient perturbation often achieves better empirical utility than output/objective perturbations for DP-ERM. + +However, the existing theoretical utility guarantee for gradient perturbation is the same as or strictly inferior to that of other perturbation methods as shown in Table 1. This motivates us to ask + +“What is wrong with the theory for gradient perturbation? Can we justify the empirical advantage of gradient perturbation theoretically?” + +We revisit the analysis for gradient perturbation approach. Previous work (Bassily et al., 2014; Wang et al., 2017; Jayaraman et al., 2018) derive the utility guarantee of gradient perturbation via two steps. They first determine the noise variance at each step that meets the privacy requirement and then derive the utility guarantee by using the convergence analysis the same as in non-private case. However, the noise to guarantee privacy naturally affects the optimization procedure, but previous approach does not exploit the interaction between privacy noise and optimization of gradient perturbation. + +In this paper, we utilize the fact the privacy noise affects the optimization procedure and establish new and much tighter utility guarantees for gradient perturbation approaches. Our contribution can be summarized as follows. + +• We introduce an expected curvature that can characterize the optimization property accurately when there is perturbation noise at each gradient update. • We establish the utility guarantees for DP-GD for both convex and strongly convex objectives based on the expected curvature rather than the usual minimum curvature. • We also establish the the utility guarantees for DP-SGD for both convex and strongly convex objectives based on the expected curvature. To the best of our knowledge, this is the first work to remove the dependency on minimum curvature for DP-ERM algorithms. + +In DP-ERM literature, there is a gap between the utility guarantee of non-strongly convex objectives and that of strongly convex objectives. However, by using the expected curvature, we show that some of the non-strongly convex objectives can achieve the same order of utility guarantee as the strongly convex objectives, matching the empirical observation. This is because the expected curvature could be relatively large even for non-strongly convex objectives. + +As we mentioned earlier, prior to our work, there is a mismatch between theoretical guarantee and empirical observation of gradient perturbation approach compared with other two perturbation approaches. Our result theoretically justifies the advantage of gradient perturbation and close the mismatch. + +# 1.1 Paper Organization + +The rest of this paper is organized as follows. Section 2 introduces notations and the DP-ERM task. In Sections 3, we first introduce the expected curvature and establish the utility guarantee of both DP-GD and DP-SGD based on such expected curvature. Then we give some discussion on three perturbation approaches. We conduct extensive experiments in Section 4. Finally, we conclude in Section 5. + +Table 1: Expected excess empirical risk bounds under $( \epsilon , \delta )$ -DP, where $n$ and $p$ are the number of samples and the number of parameters, respectively, and $\beta , \mu$ and $\nu$ are the smooth coefficient, the strongly convex coefficient and the expected curvature, respectively, and $\nu \geq \mu$ (see Section 3.1). We note that $\mu = 0$ denotes the convex but not strongly convex objective. The Lipschitz constant $L$ is assumed to be 1. We omit $\log \left( 1 / \delta \right)$ for simplicity. + +
AuthorsPerturbationAlgorithmUtility (μ = 0)Utility(u>0)
Chaudhuri et al. (2011)ObjectiveN/A00 pun22
Zhang et al. (2017)OutputGD0 ()2/3)ne0 βpHn2c²
Bassily et al. (2014)GradientSGD0Vplog3/2(n)ne0plog²(n)μn2c²
Jayaraman et al. (2018)GradientGDN/A0βplog²(n)μ²n2e2
OursGradientGD0 V>Bplog(n)v²n2e²nE0βplog(n)v²n2c2
OursGradientSGD0Vplog(n)>plog(n)nevn2e20plog(n)vn2e2
+ +# 2 Preliminary + +We introduce notations and definitions in this section. Given dataset $D = \{ d _ { 1 } , \ldots , d _ { n } \}$ , the objective function $F ( { \pmb x } ; D )$ is defined as $\begin{array} { r } { F ( \pmb { x } ; D ) \triangleq \frac { 1 } { n } \sum _ { i = 1 } ^ { n } f ( \pmb { x } ; d _ { i } ) } \end{array}$ , where $f ( \pmb { x } ; d _ { i } ) : \mathbb { R } ^ { p } \mathbb { R }$ is the loss of model $\pmb { x } \in \mathbb { R } ^ { p }$ for the record $d _ { i }$ . + +For simplicity, we use $F ( { \pmb x } )$ to denote $F ( { \pmb x } ; D )$ . We use $\lVert \boldsymbol { v } \rVert$ to denote the $l _ { 2 }$ norm of a vector $_ { v }$ . We use $\begin{array} { r } { \mathcal { X } _ { f } ^ { * } = \arg \operatorname* { m i n } _ { { \pmb x } \in \mathbb { R } ^ { p } } f ( { \pmb x } ) } \end{array}$ to denote the set of optimal solutions of $f ( { \pmb x } )$ . Throughout this paper, we assume $\mathcal { X } _ { f } ^ { \ast }$ non-empty. + +Definition 1 (Objective properties). For any $\ b { x } , \ b { y } \in \mathbb { R } ^ { p }$ , $a$ function $f : \mathbb { R } ^ { p } \mathbb { R }$ + +• is $L$ -Lipschitz if $| f ( \pmb { x } ) - f ( \pmb { y } ) | \leq L \| \pmb { x } - \pmb { y } \|$ . +• is $\beta$ -smooth if $\begin{array} { r } { f ( \pmb { y } ) \leq f ( \pmb { x } ) + \langle \nabla f ( \pmb { x } ) , \pmb { y } - \pmb { x } \rangle + \frac { \beta } { 2 } \left. \pmb { y } - \pmb { x } \right. ^ { 2 } . } \end{array}$ +• is convex if $\langle \nabla f ( { \pmb x } ) - \nabla f ( { \pmb y } ) , { \pmb x } - { \pmb y } \rangle \geq 0$ . +• is $\mu$ -strongly convex (or $\mu$ -SC) if $\left. \nabla f ( { \pmb x } ) - \nabla f ( { \pmb y } ) , { \pmb x } - { \pmb y } \right. \geq \mu \left. { \pmb x } - { \pmb y } \right. ^ { 2 } .$ + +The strong convexity coefficient $\mu$ is the lower bound of the minimum curvature of function $f$ over the domain. + +We say that two datasets $D , D ^ { \prime }$ are neighboring datasets (denoted as $D \sim D ^ { ' }$ ) if $D$ can be obtained by arbitrarily modifying one record in $D ^ { \prime }$ (or vice versa). In this paper we consider $( \epsilon , \delta )$ -differential privacy as follows. + +Definition 2 ( $( \epsilon , \delta )$ -DP (Dwork et al., 2006a;b)). A randomized mechanism $\mathcal { M } : D \mathcal { R }$ guarantees $( \epsilon , \delta )$ -differential privacy if for any two neighboring input datasets $D , D ^ { ' }$ and for any subset of outputs $S \subseteq { \mathcal { R } }$ it holds that $P r [ \mathcal { M } ( D ) \in S ] \leq e ^ { \epsilon } P r [ \mathcal { M } ( D ^ { ' } ) \in S ] + \delta$ . + +We note that $\delta$ can be viewed as the probability that original $\epsilon$ -DP fails and a meaningful setting requires $\begin{array} { r } { \delta \ll \frac { 1 } { n } } \end{array}$ . By its definition, differential privacy controls the maximum influence that any individual record can produce. Smaller $\epsilon , \delta$ implies less information leak but usually leads to worse utility. One can adjust $\epsilon , \delta$ to trade off between privacy and utility. + +DP-ERM requires the output $\pmb { x } _ { o u t } \in \mathbb { R } ^ { p }$ is differentially private with respect to the input dataset $D$ . Let ${ \pmb x } _ { * } \in \mathcal { X } _ { F } ^ { * }$ be one of the optimal solutions of $F ( { \pmb x } )$ , the utility of DP-ERM algorithm is measured by expected excess empirical risk : $\mathbb { E } [ F ( { \pmb x } _ { o u t } ) - F ( { \pmb x } _ { * } ) ]$ , where the expectation is taken over the algorithm randomness. + +# 3 Main Results + +In this section, we first define the expected curvature $\nu$ and explain why it depends only on the average curvature. We then use such expected curvature to improve the analysis of both DP-SGD and DP-GD. + +# 3.1 Expected Curvature + +In non-private setting, the analysis of convex optimization relies on the strongly convex coefficient $\mu$ , which is the minimum curvature over the domain and can be extremely small for some common objectives. Previous work on DP-ERM uses the same analysis as in non-private case and therefore the resulting utility bounds rely on the minimum curvature. In our analysis, however, we avoid the dependency on the minimum curvature by exploiting how the privacy noise affects the optimization. With the perturbation noise, the expected curvature that the optimization path encounters is related to the average curvature instead of the minimum curvature. Definition 3 uses $\nu$ to capture such average curvature with Gaussian noise. We use $\begin{array} { r } { \pmb { x } _ { * } = \arg \operatorname* { m i n } _ { \pmb { x } \in \mathcal { X } _ { * } } \| \pmb { x } - \pmb { x } _ { 1 } \| } \end{array}$ to denote the closest solution to the initial point. + +Definition 3 (Expected curvature). A convex function $F : \mathbb { R } ^ { p } \to \mathbb { R }$ , has expected curvature $\nu$ with respect to noise $\mathcal { N } ( 0 , \sigma ^ { 2 } I _ { p } )$ if for any $\pmb { x } \in \mathbb { R } ^ { p }$ and ${ \tilde { \pmb { x } } } = { \pmb { x } } - { \boldsymbol { z } }$ where $z \sim { \mathcal { N } } ( 0 , \sigma ^ { 2 } I _ { p } )$ it holds that + +$$ +\mathbb { E } [ \langle \nabla F ( \tilde { \pmb { x } } ) , \tilde { \pmb { x } } - \pmb { x } _ { * } \rangle ] \geq \nu \mathbb { E } [ \| \tilde { \pmb { x } } - \pmb { x } _ { * } \| ^ { 2 } ] , +$$ + +where the expectation is taken with respect to $_ { z }$ + +Claim 1. If $F ^ { \prime }$ is $\mu$ -strongly convex, we have $\nu \geq \mu$ + +Proof. It can be verified that $\nu = \mu$ always holds because of the strongly convex definition. + +In fact, $\nu$ represents the average curvature and is much larger than $\mu$ . We use $\mathbf { x } ^ { \prime }$ to denote the transpose of $_ { x }$ . Let $H _ { x } = \nabla ^ { 2 } F ( { \pmb x } )$ be the Hessian matrix evaluated at $_ { x }$ . We use Taylor expansion to approximate the left hand side of Eq (1) as follows + +$$ +\begin{array} { r } { \mathbb { E } [ \langle \nabla F ( \tilde { \pmb { x } } ) , \tilde { \pmb { x } } - \pmb { x } _ { * } \rangle ] \approx \mathbb { E } [ \langle \nabla F ( \pmb { x } ) - \pmb { H } _ { \pmb { x } } \pmb { z } , \pmb { x } - \pmb { z } - \pmb { x } _ { * } \rangle ] } \\ { = \langle \nabla F ( \pmb { x } ) , \pmb { x } - \pmb { x } _ { * } \rangle + \mathbb { E } [ \pmb { z } ^ { \prime } H _ { \pmb { x } } \pmb { z } ] } \\ { = \langle \nabla F ( \pmb { x } ) , \pmb { x } - \pmb { x } _ { * } \rangle + \sigma ^ { 2 } \operatorname { t r } ( H _ { \pmb { x } } ) . } \end{array} +$$ + +For convex objective, the Hessian matrix is positive semi-definite and $\mathrm { t r } ( H _ { \pmb { x } } )$ is the sum of the eigenvalues of $H _ { x }$ . We can further express out the right hand side of Eq (1) as follows + +$$ +\begin{array} { r } { \mathbb { E } [ \| \tilde { \pmb { x } } - \pmb { x } _ { * } \| ^ { 2 } ] = \mathbb { E } [ \| \pmb { x } - \pmb { z } - \pmb { x } _ { * } \| ^ { 2 } ] = \nu \left( \| \pmb { x } - \pmb { x } _ { * } \| ^ { 2 } + p \sigma ^ { 2 } \right) . } \end{array} +$$ + +Based on the above approximation, we can estimate the value of $\nu$ in Definition 3: $\nu \lesssim$ $\frac { \mathop { \mathrm { t r } } ( H _ { \pmb { x } } ) \sigma ^ { 2 } + \mu \| \pmb { x } - \pmb { x } _ { * } \| ^ { 2 } } { p \sigma ^ { 2 } + \| \pmb { x } - \pmb { x } _ { * } \| ^ { 2 } }$ . For relatively large $\sigma ^ { 2 }$ , this implies $\begin{array} { r } { \nu \approx \frac { \mathrm { t r } ( H _ { x } ) } { p } } \end{array}$ tr(Hx) that is the average curvature at $_ { x }$ . Large variance is a reasonable setting because meaningful differential privacy guarantee requires non-trivial amount of noise. + +The above analysis suggests that $\nu$ can be independent of and much larger than $\mu$ . This is indeed true for many convex objectives. Let us take the $l _ { 2 }$ regularized logistic regression as an example. The objective is strongly convex only due to the $l _ { 2 }$ regularizer. Thus, the minimum curvature (strongly convex coefficient) is the regularization coefficient $\lambda$ . Sharmir et al. [1] shows the optimal choice of $\lambda$ is $\Theta ( n ^ { - 1 / 2 } )$ (Section 4.3 in [1]). In practice, typical choice of $\lambda$ is even smaller and could be on the order of $n ^ { - 1 }$ . Figure 1 compares the minimum and average curvatures of regularized logistic regression during the training process. The average curvature is basically unaffected by the regularization term $\lambda$ . In contrast, the minimum curvature reaches $\lambda$ in first few steps. Therefore removing the dependence on minimum curvature is a significant improvement. We also plot the curvatures for another dataset KDDCup99 in the Appendix C. The resulting curvatures are similar to Figure 1. + +Perturbation noise is necessary to attain $\nu > \mu$ . We note that $\nu = \mu$ when the training process does not involve perturbation noise (corresponding to $\sigma = 0$ in Definition 3). For example, objective/output perturbation cannot utilize this expected curvature condition as no noise is injected in their training process. Therefore, among three existing perturbation methods, gradient perturbation is the only method can leverage such effect of noise. + +![](images/ae96e95a757d3581547102e379e153c5a8968b1bb295cc45f696ce4cc9d3ee9b.jpg) +Figure 1: Curvatures of regularized logistic regression on Adult dataset over training. Dot/cross symbol represents average/minimum curvature respectively. + +![](images/6923d3dc5e0e5aeb483be0ad716b1f4b6fae1ccf325f6cb09ef192bbd44423a7.jpg) +Figure 2: Illustration of a generic loss function in the high dimensional setting ( $p { > } n$ , Figure 3 in Negahban et al. (2012)). + +We note that $\mu = 0$ does not necessarily lead to $\nu = 0$ . A concrete example is given in Figure 2 (from Negahban et al. (2012)). It provides an illustration of the loss function in the high-dimensional $( p > n )$ setting, i.e., the resticted strongly convex scenario: the loss is curved in certain directions but completely flat in others. The average curvature of such objective is always positive but the worst curvature is 0. Though some recent work shows the utility guarantee of high dimensional DP-ERM task may not depend on the worst curvature (Wang & Gu, 2019), Figure 2 still provides a good illustration for the case of $\nu > \mu = 0$ Moreover, as shown in Figure 1, the average curvature of logistic regression on Adult dataset is above 0 during the training procedure even the regularization term is 0. As we will show later, a positive $\nu$ over the optimization path is sufficient for our optimization analysis. + +# 3.2 Utility Guarantee of DP-GD Based on Expected Curvature + +In this section we show that the expected curvature can be used to improve the utility bound of DP-GD (Algorithm 1). + +
Algorithm 1: Differentially Private Gradient Descent (DP-GD)
Input: Privacy parameters e,δ; running steps T; learning rate n. Loss function F(x) with Lipschitz constant L.
for t=1 to T do
Compute gt = VF(xt).
Update parameter Xt+1 = xt - Nt (gt + zt), where zt ~ N(0,σ²Ip). end for
+ +Algorithm 1 is $( \epsilon , \delta )$ -DP if we set $\begin{array} { r } { \sigma _ { t } = \Theta \left( \frac { L \sqrt { T \log ( 1 / \delta ) } } { n \epsilon } \right) } \end{array}$ (Jayaraman et al., 2018). Let $\pmb { x } _ { 1 } , \ldots , \pmb { x } _ { T }$ be the training path and $\nu = \operatorname* { m i n } \{ \nu _ { 1 } , \dots , \nu _ { T } \}$ be the minimum expected curvature over the path. Now we present the utility guarantee of DP-GD for the case of $\nu > 0$ . + +Theorem 1 (Utility guarantee, $\nu > 0$ .). Suppose $F ^ { \prime }$ is $L$ -Lipschitz and $\beta$ -smooth with $\nu$ expected curvature. Set $\begin{array} { r } { \eta \le { \frac { 1 } { \beta } } } \end{array}$ , $\begin{array} { r } { T = \frac { 2 \log ( n ) } { \eta \nu } } \end{array}$ and $\sigma _ { t } = \Theta \left( L \sqrt { T \log ( 1 / \delta ) } / n \epsilon \right)$ , we have + +$$ +\mathbb { E } \left[ F \left( \pmb { x } _ { T + 1 } \right) - F \left( \pmb { x } _ { \ast } \right) \right] = \mathcal { O } \left( \frac { \beta p \log { \left( n \right) L ^ { 2 } } \log { \left( 1 / \delta \right) } } { \nu ^ { 2 } n ^ { 2 } \epsilon ^ { 2 } } \right) . +$$ + +Proof. All proofs in this paper are relegated to Appendix A. + +Remark 1. Theorem 3 only depends on the expected curvature over the training path $\nu$ . + +The expectation is taken over the algorithm randomness if without specification. Theorem 1 significantly improves the original analysis of DP-GD because of our arguments in Section 3.1. If $\nu = 0$ , then the curvatures are flatten in all directions. One example is the linear function, which is used by Bassily et al. (2014) to derive their utility lower bound. Such simple function may not be commonly used as loss function in practice. Nonetheless, we give the utility guarantee for the case of $\nu = 0$ in Theorem 2. + +Theorem 2 (Utility guarantee, $\nu = 0$ .). Suppose $F$ is $L$ -Lipschitz and $\beta$ -smooth. Set $\begin{array} { r } { \eta = \frac { 1 } { \beta } } \end{array}$ , T = nβ√ and $\sigma _ { t } = \Theta \left( L \sqrt { T \log ( 1 / \delta ) } / n \epsilon \right)$ . Let $\begin{array} { r } { \bar { \pmb x } = \frac { 1 } { T } \sum _ { i = 1 } ^ { T } \pmb x _ { i + 1 } } \end{array}$ , we have + +$$ +\mathbb { E } [ F \left( \bar { \pmb { x } } \right) - F \left( \pmb { x } _ { \ast } \right) ] = \mathcal { O } \left( \frac { \sqrt { p } L ^ { 2 } \log \left( 1 / \delta \right) } { n \epsilon } \right) . +$$ + +We use parameter averaging to reduce the influence of perturbation noise because gradient update does not have strong contraction effect when $\nu = 0$ . + +# 3.3 Utiltiy Guarantee of DP-SGD Based on Expected Curvature + +Stochastic gradient descent has become one of the most popular optimization methods because of the cheap one-iteration cost. In this section we show that expected curvature can also improve the utility analysis for DP-SGD (Algorithm 2). We note that $\nabla f ( { \pmb x } )$ represents an element from the subgradient set evaluated at $_ { x }$ when the objective is not smooth. Before stating our theorem, we introduce the moments accountant technique (Lemma 1) that is essential to establish privacy guarantee. + +Lemma 1 (Abadi et al. (2016)). There exist constants $c _ { 1 }$ and $c _ { 2 }$ so that given running steps $T$ , for any √ $\epsilon < c _ { 1 } T / n ^ { 2 }$ , Algorithm $\mathcal { Q }$ is $( \epsilon , \delta )$ -differentially private for any $\delta > 0$ if we choose $\sigma \ge c _ { 2 } \frac { \sqrt { T l o g ( 1 / \delta ) } } { n \epsilon }$ + +# Algorithm 2: Differentially Private Stochastic Gradient Descent (DP-SGD) + +Input : Dataset $D = \{ d _ { 1 } , \ldots , d _ { n } \}$ . Individual loss function: $f _ { i } \left( \pmb { x } \right) = f \left( \pmb { x } ; d _ { i } \right)$ with Lipschitz constant $L$ . Number of iterations: $T$ . Learning rate: $\eta _ { t }$ . + +1 for $t = 1$ to $T$ do + +Sample $i _ { t }$ from $[ n ]$ uniformly. +Compute ${ \pmb g } _ { t } = \nabla f _ { i _ { t } } \left( { \pmb x } _ { t } \right)$ . +Update parameter ${ \pmb x } _ { t + 1 } = { \pmb x } _ { t } - \eta _ { t } \left( { \pmb g } _ { t } + { \pmb z } _ { t } \right)$ , where $z _ { t } \sim \mathcal { N } \left( 0 , L ^ { 2 } \sigma ^ { 2 } I _ { p } \right)$ . + +5 end + +For the case of $\nu > 0$ , Theorem 3 presents the utility guarantee of DP-SGD. + +Theorem 3 (Utility guarantee, $\nu > 0$ .). Suppose $F$ is $L$ -Lipschitz with $\nu$ expected curvature. Choose $\sigma$ based on Lemma $\mathit { 1 }$ to guarantee $( \epsilon , \delta )$ -DP. Set $\begin{array} { r } { \eta _ { t } = \frac { 1 } { \nu t } } \end{array}$ and $T = n ^ { 2 } \epsilon ^ { 2 }$ , we have + +$$ +\mathbb { E } [ F \left( \pmb { x } _ { T } \right) - F \left( \pmb { x } _ { \ast } \right) ] = \mathcal { O } \left( \frac { p L ^ { 2 } \log \left( n \right) \log \left( 1 / \delta \right) } { n ^ { 2 } \epsilon ^ { 2 } \nu } \right) . +$$ + +Remark 2. Theorem 3 does not require smooth assumption. + +Theorem 3 shows the utility guarantee of DP-SGD also depends on $\nu$ rather than $\mu$ . We set $T = \Theta ( n ^ { 2 } )$ following Bassily et al. (2014). We note that $T = \Theta ( n ^ { 2 } )$ is necessary even for non-private SGD to reach $1 / n ^ { 2 }$ precision. We next show for a relatively coarse precision, the running time can be reduced significantly. + +Theorem 4. SupposeLemma 1 to guarantee $F ^ { \prime }$ s- $L$ Lipsc. Set th a $\nu$ curvatur. Suppose oose , we $\sigma$ based onave $( \epsilon , \delta )$ $D P$ $\begin{array} { r } { \eta _ { t } = \frac { 1 } { \nu t } } \end{array}$ $\begin{array} { r } { T = \frac { n \epsilon } { \sqrt { p } } } \end{array}$ $p < n ^ { 2 }$ + +$$ +\mathbb { E } [ F \left( \mathbf { x } _ { T } \right) - F \left( \mathbf { x } _ { * } \right) ] = { \mathcal { O } } \left( { \frac { { \sqrt { p } } L ^ { 2 } \log ( n ) } { n \epsilon \nu } } \right) . +$$ + +We note that the analysis of Bassily et al. (2014) yields E[F (xT )−F (x∗)] = O  √pL2 log2(n)nµ  if setting $\begin{array} { r } { T = \frac { n \epsilon } { \sqrt { p } } } \end{array}$ , w till depends on the minimum curvature. Theorem 5 shows the $\nu = 0$ + +Theorem 5 (Utility guarantee, $\nu = 0$ .). Suppose $F$ is $L$ -Lipschitz. Assume $\| \pmb { x } _ { t } \| \le D$ for $t \in [ T ]$ . Choose $\sigma$ based on Lemma $\mathit { 1 }$ to guarantee $( \epsilon , \delta )$ -DP. Let $G = L \sqrt { 1 + p \sigma ^ { 2 } }$ , set ηt = DG√t and $T = n ^ { 2 } \epsilon ^ { 2 }$ , we have + +$$ +\mathbb { E } [ F \left( \pmb { x } _ { T } \right) - F \left( \pmb { x } _ { \ast } \right) ] = \mathcal { O } \left( \frac { \sqrt { p \log \left( 1 / \delta \right) } L \log \left( n \right) } { n \epsilon } \right) . +$$ + +This utility guarantee can be derived from Theorem 2 in (Shamir $\&$ Zhang, 2013). + +# 3.4 Discussion on three perturbation approaches. + +In this section, we briefly discuss two other perturbation approaches and compare them to the gradient perturbation approach. + +Output perturbation (Wu et al., 2017; Zhang et al., 2017) perturbs the learning algorithm after training. It adds noise to the resulting model of non-private learning process. The magnitude of perturbation noise is propositional to the maximum influence one record can cause on the learned model. Take the gradient descent algorithm as an example. At each step, the gradient of different records would diverge the two sets of parameters generated by neighboring datasets, the maximum distance expansion is related to the Lipschitz coefficient. At the same time, the gradient of the same records in two datasets would shrink the parameter distance because of the contraction effect of the gradient update. The contraction effect depends on the smooth and strongly convex coefficient. Smaller strongly convex coefficient leads to weaker contraction. The sensitivity of output perturbation algorithm is the upper bound on the largest possible final distance between two sets of parameters. + +Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the objective function before training. It requires the objective function to be strongly convex to guarantee the uniqueness of the solution. It first adds $L _ { 2 }$ regularization to obtain strong convexity if the original objective is not strongly convex. Then it perturbs the objective with a random linear term. The sensitivity of objective perturbation is the maximum change of the minimizer that one record can produce. Chaudhuri et al. (2011) and Kifer et al. (2012) use the largest and the smallest eigenvalue (i.e. the smooth and strongly convex coefficient) of the objective’s Hessian matrix to upper bound such change. + +In comparison, gradient perturbation is more flexible than output/objective perturbation. For example, to bound the sensitivity, gradient perturbation only requires Lipschitz coefficient which can be easily obtained by using the gradient clipping technique. However, both output and objective perturbation further need to compute the smooth coefficient, which is hard for some common objectives such as softmax regression. + +More critically, output/objective perturbation cannot utilize the expected curvature condition because their training process does not contain perturbation noise. Moreover, they have to consider the worst performance of learning algorithm. That is because DP makes the worst case assumption on query function and output/objective perturbation treat the whole learning algorithm as a single query to private dataset. This explains why their utility guarantee depends on the worst curvature of the objective. + +# 4 Experiment + +In this section, we evaluate the performance of DP-GD and DP-SGD on multiple real world datasets. We use the benchmark datasets provided by Iyengar et al. (2019). Objective functions are logistic regression and softmax regression for binary and multi-class datasets, respectively. + +Datasets. The benchmark datasets includes two multi-class datasets (MNIST, Covertype) and five binary datasets, and three of them are high dimensional (Gisette, Real-sim, RCV1). + +Table 2: Algorithm validation accuracy (in $\%$ ) on various kinds of real world datasets. Privacy parameter $\epsilon$ is 0.1 for binary dataset and 1 for multi-classes datasets. + +
KDDCup99AdultMNISTCovertypeGisetteReal-simRCV1
Non private99.184.891.971.296.693.393.5
AMP197.579.371.964.362.873.164.5
Out-SGD98.177.469.462.462.373.266.7
DP-SGD98.780.487.567.763.073.870.4
DP-GD98.780.988.666.267.376.174.9
+ +![](images/e4bca66c83380d29bc2d6fc58d3bc916e6e2c9f242addde6ddb24f85443a6db7.jpg) +Figure 3: Algorithm validation accuracy (in $\%$ ) with varying . NP represents non-private baseline. Detailed description about evaluated datasets can be found in Table 3. + +Following Iyengar et al. (2019), we use $8 0 \%$ data for training and the rest for testing. Detailed description of datasets can be found in Appendix B + +Implementation details. We track Rényi differentialy privacy $( R D P )$ (Mironov, 2017) and convert it to $( \epsilon , \delta )$ -DP. Running step $T$ is chosen from $\{ 5 0 , 2 0 0 , 8 0 0 \}$ for both DP-GD and DP-SGD. For DP-SGD, we use moments accountant to track the privacy loss and the sampling ratio is set as 0.1. The standard deviation of the added noise $\sigma$ is set to be the smallest value such that the privacy budget is allowable to run desired steps. We ensure each loss function is Lipschitz by clipping individual gradient. The method in Goodfellow (2015) allows us to clip individual gradient efficiently. Clipping threshold is set as 1 (0.5 for high dimensional datasets because of the sparse gradient). For DP-GD, learning rate is chosen from $\{ 0 . 1 , 1 . 0 , 5 . 0 \}$ $( \{ 0 . 2 , 2 . 0 , 1 0 . 0 \}$ for high dimensional datasets). The learning rate of DP-SGD is twice as large as DP-GD and it is divided by 2 at the middle of training. Privacy parameter $\delta$ is set as $\textstyle { \frac { 1 } { n ^ { 2 } } }$ . The $l _ { 2 }$ regularization coefficient is set as $1 \times 1 0 ^ { - 4 }$ . All reported numbers are averaged over 20 runs. + +Baseline algorithms. The baseline algorithms include state-of-the-art objective and output perturbation algorithms. For objective perturbation, we use Approximate Minima Perturbation (AMP) (Iyengar et al., 2019). For output perturbation, we use the algorithm in Wu et al. (2017) (Output perturbation SGD). We adopt the implementation and hyperparameters in Iyengar et al. (2019) for both algorithms. For multi-class classification tasks, Wu et al. (2017) and Iyengar et al. (2019) divide the privacy budget evenly and train multiple binary classifiers because their algorithms need to compute smooth coefficient before training and therefore are not directly applicable to softmax regression. + +Experiment results. The validation accuracy results for all evaluated algorithms with $\epsilon = 0 . 1$ (1.0 for multi-class datasets) are presented in Table 2. We also plot the accuracy results with varying $\epsilon$ in Figure 3. These results confirm our theory in Section 3: gradient perturbation achieves better performance than other perturbation methods as it leverages the average curvature. + +# 5 Conclusion + +In this paper, we show the privacy noise actually helps optimization analysis, which can be used to improve the utility guarantee of both DP-GD and DP-SGD. Our result theoretically justifies the empirical superiority of gradient perturbation over other methods and advance the state of the art utility guarantee of DP-ERM algorithms. Experiments on real world datasets corroborate our theoretical findings nicely. In the future, it is interesting to consider how to utilize the expected curvature condition to improve the utility guarantee of other gradient perturbation based algorithms. + +# References + +Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and Communications Security, 2016. + +John M Abowd. The challenge of scientific reproducibility and privacy protection for statistical agencies. Census Scientific Advisory Committee, 2016. + +Naman Agarwal, Ananda Theertha Suresh, Felix Xinnan X Yu, Sanjiv Kumar, and Brendan McMahan. cpsgd: Communication-efficient and differentially-private distributed sgd. In Advances in Neural Information Processing Systems, 2018. + +Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer Science, 2014. + +Kamalika Chaudhuri and Claire Monteleoni. Privacy-preserving logistic regression. In Advances in Neural Information Processing Systems, 2009. + +Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk minimization. Journal of Machine Learning Research, 2011. + +Bolin Ding, Janardhan Kulkarni, and Sergey Yekhanin. Collecting telemetry data privately. In Advances in Neural Information Processing Systems, 2017. + +Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, 2006a. + +Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of cryptography conference, 2006b. + +Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends R in Theoretical Computer Science, 2014. + +Úlfar Erlingsson, Vasyl Pihur, and Aleksandra Korolova. Rappor: Randomized aggregatable privacypreserving ordinal response. In Proceedings of the 2014 ACM SIGSAC conference on computer and communications security, 2014. + +Vitaly Feldman, Ilya Mironov, Kunal Talwar, and Abhradeep Thakurta. Privacy amplification by iteration. In 2018 IEEE 59th Annual Symposium on Foundations of Computer Science (FOCS), 2018. + +Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer and Communications Security, 2015. + +Ian Goodfellow. Efficient per-example gradient computations. arXiv preprint arXiv:1510.01799, 2015. + +Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, 2017. + +Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang. Towards practical differentially private convex optimization. In IEEE Symposium on Security and Privacy, 2019. + +Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information Processing Systems, 2018. + +Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and high-dimensional regression. In Conference on Learning Theory, 2012. + +Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2018. + +Robert McMillan. Apple tries to peek at user habits without violating privacy. The Wall Street Journal, 2016. + +Ilya Mironov. Rényi differential privacy. In IEEE 30th Computer Security Foundations Symposium (CSF), 2017. + +Sahand N Negahban, Pradeep Ravikumar, Martin J Wainwright, Bin Yu, et al. A unified framework for high-dimensional analysis of $m$ -estimators with decomposable regularizers. Statistical Science, 27(4):538–557, 2012. + +Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang. Membership inference attack against differentially private deep learning model. Transactions on Data Privacy, 2018. + +Arun Rajkumar and Shivani Agarwal. A differentially private stochastic gradient descent algorithm for multiparty classification. In Artificial Intelligence and Statistics, 2012. + +Ohad Shamir and Tong Zhang. Stochastic gradient descent for non-smooth optimization: Convergence results and optimal averaging schemes. In International Conference on Machine Learning, 2013. + +Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017. + +Adam Smith, Abhradeep Thakurta, and Jalaj Upadhyay. Is interaction necessary for distributed private learning? In IEEE Symposium on Security and Privacy (SP). IEEE, 2017. + +Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In Global Conference on Signal and Information Processing (GlobalSIP), 2013 IEEE, 2013. + +Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances in Neural Information Processing Systems, 2015. + +Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited: Faster and more general. In Advances in Neural Information Processing Systems, 2017. + +Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for sparse learning. In 28th International Joint Conference on Artificial Intelligence, 2019. + +Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing model-inversion attacks. In 2016 IEEE 29th Computer Security Foundations Symposium (CSF), 2016. + +Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on differential privacy for scalable stochastic gradient descent-based analytics. In ACM International Conference on Management of Data, 2017. + +Jiaqi Zhang, Kai Zheng, Wenlong Mou, and Liwei Wang. Efficient private erm for smooth objectives. In International Joint Conference on Artificial Intelligence, 2017. + +# Appendix A Proofs Related to DP-GD and DP-SGD + +Proof of Theorem 1. Let $\pmb { x } _ { 1 } , \ldots , \pmb { x } _ { t }$ be the path generated by optimization procedure. Since $\scriptstyle { \mathbf { x } } _ { t }$ contains Gaussian perturbation noise ${ z t - 1 }$ , Definition 3 gives us + +$$ +\begin{array} { r } { \mathbb { E } _ { z _ { t - 1 } } \big [ \langle { \pmb x } _ { t } - { \pmb x } _ { * } , \nabla F \left( { \pmb x } _ { t } \right) \rangle \big ] \geq \nu _ { t } \mathbb { E } _ { z _ { t - 1 } } \big [ \big \| { \pmb x } _ { t } - { \pmb x } _ { * } \big \| ^ { 2 } \big ] . } \end{array} +$$ + +Since $F ^ { \prime }$ is $\beta$ -smooth, we have + +$$ +\langle { \pmb x } _ { t } - { \pmb x } _ { * } , \nabla F \left( { \pmb x } _ { t } \right) \rangle \geq \frac { 1 } { \beta } \left\| \nabla F \left( { \pmb x } _ { t } \right) \right\| ^ { 2 } . +$$ + +Take linear combination of above inequalities, + +$$ +\begin{array} { r l r } & { } & { \mathbb { E } _ { z _ { t - 1 } } [ \langle x _ { t } - x _ { * } , \nabla F \left( { \pmb x } _ { t } \right) \rangle ] \ge \theta \nu _ { t } \mathbb { E } _ { z _ { t - 1 } } [ \| { \pmb x } _ { t } - { \pmb x } _ { * } \| ^ { 2 } ] + \frac { ( 1 - \theta ) } { \beta } \mathbb { E } _ { z _ { t - 1 } } [ \| \nabla F \left( { \pmb x } _ { t } \right) \| ^ { 2 } ] } \\ & { } & \\ & { } & { \ge \theta \nu \mathbb { E } _ { z _ { t - 1 } } [ \| { \pmb x } _ { t } - { \pmb x } _ { * } \| ^ { 2 } ] + \frac { ( 1 - \theta ) } { \beta } \mathbb { E } _ { z _ { t - 1 } } [ \| \nabla F \left( { \pmb x } _ { t } \right) \| ^ { 2 } ] . } \end{array} +$$ + +Let $r _ { t } = \| \pmb { x } _ { t } - \pmb { x } _ { * } \|$ be the solution error at step $t$ . We have the following inequalities between $r _ { t + 1 }$ and $r _ { t }$ . + +$$ +\begin{array} { r l } & { r _ { t + 1 } ^ { 2 } = \left. x _ { t } - \eta \nabla F \left( { \pmb x } _ { t } \right) - \eta z _ { t } - { \pmb x } _ { * } \right. ^ { 2 } , } \\ & { \qquad = \left. { \pmb x } _ { t } - { \pmb x } _ { * } \right. ^ { 2 } - 2 \eta \langle \nabla F \left( { \pmb x } _ { t } \right) + z _ { t } , { \pmb x } _ { t } - { \pmb x } _ { * } \rangle + \eta ^ { 2 } \left. \nabla F \left( { \pmb x } _ { t } \right) + z _ { t } \right. ^ { 2 } . } \end{array} +$$ + +Take expectation with respect to $\scriptstyle { \mathcal { Z } } _ { t }$ , we have + +$$ +\begin{array} { r } { \mathbb { E } _ { z _ { t } } [ r _ { t + 1 } ^ { 2 } ] \le \| { \pmb x } _ { t } - { \pmb x } _ { * } \| ^ { 2 } - 2 \eta \langle \nabla F \left( { \pmb x } _ { t } \right) , { \pmb x } _ { t } - { \pmb x } _ { * } \rangle + \eta ^ { 2 } \| \nabla F \left( { \pmb x } _ { t } \right) \| ^ { 2 } + p \eta ^ { 2 } \sigma _ { t } ^ { 2 } . } \end{array} +$$ + +Further take expectation with respect to ${ \boldsymbol { \mathbf { \mathit { z } } } } _ { t - 1 }$ and use Eq 2, we have + +$$ +\begin{array} { r l } & { \mathfrak { L } _ { \mathfrak { z } _ { t } , \mathfrak { z } _ { t - 1 } } \big [ r _ { t + 1 } ^ { 2 } \big ] \leq \mathbb { E } _ { \mathfrak { z } _ { t - 1 } } \big [ \big \| x _ { t } - \mathfrak { x } _ { * } \big \| ^ { 2 } \big ] - 2 \eta \mathbb { E } _ { \mathfrak { z } _ { t - 1 } } \big [ \langle \nabla F \left( \mathfrak { x } _ { t } \right) , \mathfrak { x } _ { t } - \mathfrak { x } _ { * } \rangle \big ] + \eta ^ { 2 } \mathbb { E } _ { \mathfrak { z } _ { t - 1 } } \big [ \big \| \nabla F \left( \mathfrak { x } _ { t } \right) \big \| ^ { 2 } \big ] + p \eta ^ { 2 } \sigma _ { t } ^ { 2 } , } \\ & { \qquad \leq \left( 1 - 2 \left( 1 - \theta \right) \eta \nu \right) \mathbb { E } _ { \mathfrak { z } _ { t - 1 } } \big [ r _ { t } ^ { 2 } \big ] + \left( \eta ^ { 2 } - \frac { 2 \eta \theta } { \beta } \right) \mathbb { E } _ { \mathfrak { z } _ { t - 1 } } \big [ \big \| \nabla F \left( \mathfrak { x } _ { t } \right) \big \| ^ { 2 } \big ] + p \eta ^ { 2 } \sigma _ { t } ^ { 2 } . } \end{array} +$$ + +Set $\textstyle \theta = { \frac { 1 } { 2 } }$ and $\begin{array} { r } { \eta \le { \frac { 1 } { \beta } } } \end{array}$ , + +$$ +\begin{array} { r } { \mathbb { E } _ { z _ { t } , z _ { t - 1 } } [ r _ { t + 1 } ^ { 2 } ] \leq ( 1 - \eta \nu ) \mathbb { E } _ { z _ { t - 1 } } [ r _ { t } ^ { 2 } ] + p \eta ^ { 2 } \sigma _ { t } ^ { 2 } . } \end{array} +$$ + +Applying Eq (6) and taking expectation with respect to $z _ { t } , z _ { t - 1 } , \cdots , z _ { 1 }$ iteratively yields + +$$ +\mathbb { E } [ r _ { t + 1 } ^ { 2 } ] \le \left( 1 - \eta \nu \right) ^ { t } r _ { 1 } ^ { 2 } + { p \eta } ^ { 2 } \sum _ { i = 1 } ^ { t } { ( 1 - \eta \nu ) } ^ { t - i } \sigma _ { i } ^ { 2 } . +$$ + +Uniform privacy budget allocation scheme sets + +$$ +\sigma _ { t } ^ { 2 } = \Theta \left( \frac { T L ^ { 2 } \log ( 1 / \delta ) } { n ^ { 2 } \epsilon ^ { 2 } } \right) . +$$ + +Therefore + +$$ +\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] \le \left( 1 - \eta \nu \right) ^ { T } r _ { 1 } ^ { 2 } + \Theta \left( \frac { p \eta T L ^ { 2 } \log ( 1 / \delta ) } { \nu n ^ { 2 } \epsilon ^ { 2 } } \right) . +$$ + +Set $\begin{array} { r } { T \ge \frac { 2 \log ( n ) } { \eta \nu } } \end{array}$ , we have + +$$ +\begin{array} { c } { \displaystyle \left( 1 - \eta \nu \right) ^ { T } r _ { 1 } ^ { 2 } = \exp \left( \frac { \log \left( 1 - \eta \nu \right) \log \left( n ^ { 2 } \right) } { \eta \nu } \right) r _ { 1 } ^ { 2 } = \exp \left( \log ( 1 / n ^ { 2 } ) \frac { 1 } { \eta \nu } \log ( 1 + \frac { \eta \nu } { 1 - \eta \nu } ) \right) r _ { 1 } ^ { 2 } , } \\ { \displaystyle \qquad \leq \left( \frac { 1 } { n ^ { 2 } } \right) ^ { \frac { 1 } { \eta \nu } \log ( 1 + \frac { \eta \nu } { 1 - \eta \nu } ) } r _ { 1 } ^ { 2 } < \frac { r _ { 1 } ^ { 2 } } { n ^ { 2 } } . } \end{array} +$$ + +Last inequality holds because $\begin{array} { r } { \frac { 1 } { \eta \nu } \log ( 1 + \frac { \eta \nu } { 1 - \eta \nu } ) > 1 } \end{array}$ for $\begin{array} { r } { \frac { 1 } { \eta \nu } \geq \frac { \beta } { \nu } \geq 1 } \end{array}$ + +Therefore, for $\begin{array} { r } { T \geq \frac { 2 \log ( n ) } { \eta \nu } } \end{array}$ , we have the excepted solution error $\mathbb { E } [ r _ { T + 1 } ^ { 2 } ]$ satisfies + +$$ +\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] = \mathcal { O } \left( \frac { p \eta T L ^ { 2 } \log ( 1 / \delta ) } { \nu n ^ { 2 } \epsilon ^ { 2 } } \right) . +$$ + +Since $F ( { \pmb x } )$ is $\beta$ -smooth, we have + +$$ +F ( \pmb { x } ) - F ( \pmb { x } _ { \ast } ) \leq \frac { \beta } { 2 } \left. \pmb { x } - \pmb { x } _ { \ast } \right. ^ { 2 } . +$$ + +Using Eq (10) and Eq (11), we have the excepted excess risk satisfies + +$$ +\mathbb { E } [ F ( { \pmb x } _ { T + 1 } ) - F ( { \pmb x } _ { \ast } ) ] = { \mathcal O } \left( \frac { \beta p \eta T L ^ { 2 } \log ( 1 / \delta ) } { \nu n ^ { 2 } \epsilon ^ { 2 } } \right) +$$ + +for $\begin{array} { r } { T \ge \frac { 2 \log ( n ) } { \eta \nu } } \end{array}$ . The utility bound is minimized when $\begin{array} { r } { T = \frac { 2 \log ( n ) } { \eta \nu } } \end{array}$ + +Proof of Theorem $\mathcal { L }$ . The smooth condition gives us, + +$$ +\begin{array} { l } { \displaystyle F ( { \pmb x } _ { t + 1 } ) \leq F ( { \pmb x } _ { t } ) + \langle \nabla F ( { \pmb x } _ { t } ) , { \pmb x } _ { t + 1 } - { \pmb x } _ { t } \rangle + \displaystyle \frac { \beta } { 2 } \left\| { \pmb x } _ { t + 1 } - { \pmb x } _ { t } \right\| ^ { 2 } } \\ { \displaystyle \qquad = F ( { \pmb x } _ { t } ) - \eta \langle \nabla F ( { \pmb x } _ { t } ) , \nabla F ( { \pmb x } _ { t } ) + { \pmb z } _ { t } \rangle + \displaystyle \frac { \beta \eta ^ { 2 } } { 2 } \left\| \nabla F ( { \pmb x } _ { t } ) + { \pmb z } _ { t } \right\| ^ { 2 } . } \end{array} +$$ + +Take expectation with respect to $\scriptstyle { \mathcal { Z } } _ { t }$ and substitute $\begin{array} { r } { \eta = { \frac { 1 } { \beta } } } \end{array}$ + +$$ +\mathbb { E } _ { z _ { t } } [ F ( { \pmb x } _ { t + 1 } ) ] = F ( { \pmb x } _ { t } ) - \frac { 1 } { 2 \beta } \left\| \nabla F ( { \pmb x } _ { t } ) \right\| ^ { 2 } + \frac { 1 } { 2 \beta } p \sigma _ { t } ^ { 2 } . +$$ + +Subtract $F ( { \pmb x } _ { * } )$ on both sides and use convexity, + +$$ +\begin{array} { r l } { \displaystyle \mathbb { E } _ { z _ { t } } [ F ( { \boldsymbol x } _ { t + 1 } ) - F ( { \boldsymbol x } _ { * } ) ] = F ( { \boldsymbol x } _ { t } ) - F ( { \boldsymbol x } _ { * } ) - \frac { 1 } { 2 \beta } \| \nabla F ( { \boldsymbol x } _ { t } ) \| ^ { 2 } + \frac { 1 } { 2 \beta } p \sigma _ { t } ^ { 2 } } & { } \\ { \displaystyle \le \langle \nabla F ( { \boldsymbol x } _ { t } ) , { \boldsymbol x } _ { t } - { \boldsymbol x } _ { * } \rangle - \frac { 1 } { 2 \beta } \| \nabla F ( { \boldsymbol x } _ { t } ) \| ^ { 2 } + \frac { 1 } { 2 \beta } p \sigma _ { t } ^ { 2 } . } & { } \end{array} +$$ + +Substitute $\nabla F ( { \pmb x } _ { t } ) = \beta ( { \pmb x } _ { t } - { \pmb x } _ { t + 1 } ) - { \pmb z } _ { t }$ , + +$$ +\begin{array} { r l } { \mathbb { E } _ { \mathbf { z } _ { t } } [ F ( \mathbf { x } _ { t + 1 } ) - F ( \mathbf { x } _ { * } ) ] \leq \beta \langle \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } , \mathbf { x } _ { t } - \mathbf { x } _ { * } \rangle - \frac { 1 } { 2 \beta } \mathbb { E } _ { \mathbf { z } _ { t } } [ \left. \beta ( \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } ) - z _ { t } \right. ^ { 2 } ] + \frac { 1 } { 2 \beta } p \sigma _ { t } ^ { 2 } } & { } \\ { = \beta \langle \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } , \mathbf { x } _ { t } - \mathbf { x } _ { * } \rangle - \frac { \beta } { 2 } \left. \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } \right. ^ { 2 } - \mathbb { E } _ { \mathbf { z } _ { t } } \langle \mathbf { x } _ { t + 1 } , z _ { t } \rangle } & { } \\ { = \beta \langle \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } , \mathbf { x } _ { t } - \mathbf { x } _ { * } \rangle - \frac { \beta } { 2 } \left. \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } \right. ^ { 2 } - \mathbb { E } _ { \mathbf { z } _ { t } } \langle \mathbf { x } _ { t } - \boldsymbol { \eta } \nabla F ( \mathbf { x } _ { t } ) - \boldsymbol { \eta } z _ { t } , z _ { t } \rangle } & { } \\ { = \beta \langle \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } , \mathbf { x } _ { t } - \mathbf { x } _ { * } \rangle - \frac { \beta } { 2 } \left. \mathbf { x } _ { t } - \mathbf { x } _ { t + 1 } \right. ^ { 2 } + \frac { 1 } { \beta } p \sigma _ { t } ^ { 2 } } & { } \\ { } & { = \frac { \beta } { 2 } ( \Vert \mathbf { x } _ { t } - \mathbf { x } _ { * } \Vert ^ { 2 } - \Vert \mathbf { x } _ { t + 1 } - \mathbf { x } _ { * } \Vert ^ { 2 } ) + \frac { 1 } { \beta } p \sigma _ { t } ^ { 2 } . } \end{array} +$$ + +Summing over $t = 1 , \ldots , T ^ { \prime }$ and take expectation with respect to $z _ { 1 } , \dots , z _ { T }$ , + +$$ +\sum _ { t = 1 } ^ { T } \mathbb { E } [ F ( \pmb { x } _ { t + 1 } ) - F ( \pmb { x } _ { * } ) ] \leq \frac { \beta } { 2 } \left. \pmb { x } _ { 1 } - \pmb { x } _ { * } \right. ^ { 2 } + \sum _ { t = 1 } ^ { T } \frac { 1 } { \beta } p \sigma _ { t } ^ { 2 } . +$$ + +Use convexity, + +$$ +\begin{array} { r l r } { { \mathbb { E } [ F ( \bar { \pmb { x } } ) - F ( { \pmb x } _ { * } ) ] \le \frac { \beta } { 2 T } \| { \pmb x } _ { 1 } - { \pmb x } _ { * } \| ^ { 2 } + \frac { 1 } { \beta } p \sigma ^ { 2 } } } \\ & { } & { \le \frac { \beta } { 2 T } \| { \pmb x } _ { 1 } - { \pmb x } _ { * } \| ^ { 2 } + \Theta ( \frac { L ^ { 2 } p T \log ( 1 / \delta ) } { \beta n ^ { 2 } \epsilon ^ { 2 } } ) } \end{array} +$$ + +Choose T = nβ√ , √p, we have + +$$ +\mathbb { E } [ F ( \bar { \pmb x } ) - F ( { \pmb x } _ { \ast } ) ] = \mathcal { O } \left( \frac { \sqrt { p } L ^ { 2 } \log ( 1 / \delta ) } { n \epsilon } \right) . +$$ + +Proof of Theorem 3 and 4. We start by giving a useful lemma. + +Lemma 2. Choose $\begin{array} { r } { \eta _ { t } = \frac { 1 } { \nu t } } \end{array}$ , the expected solution error of $_ { x t }$ in Algorithm $\mathcal { Q }$ for any $t > 1$ satisfies + +$$ +\mathbb { E } [ \| \pmb { x } _ { t } - \pmb { x } _ { * } \| ^ { 2 } ] \le \frac { 2 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { t \nu ^ { 2 } } , +$$ + +Proof of Lemma $\mathcal { Z }$ . We have + +$$ +\begin{array} { r l } & { \| x _ { t + 1 } - x _ { * } \| ^ { 2 } = \| x _ { t } - \eta _ { t } g _ { t } - \eta _ { t } z _ { t } - x _ { * } \| ^ { 2 } } \\ & { \qquad = \| x _ { t } - x _ { * } \| ^ { 2 } - 2 \eta _ { t } \langle x _ { t } - x _ { * } , g _ { t } + z _ { t } \rangle + \eta _ { t } ^ { 2 } \left\| g _ { t } \right\| ^ { 2 } - 2 \eta _ { t } ^ { 2 } \langle g _ { t } , z _ { t } \rangle + \eta _ { t } ^ { 2 } \left\| z _ { t } \right\| ^ { 2 } . } \end{array} +$$ + +Take expectation with respect to perturbation noise $\scriptstyle { \mathcal { Z } } _ { t }$ and uniform sampling, we have + +$$ +\begin{array} { r l } & { \mathbb { E } _ { z _ { t } , i _ { t } } [ \| { \boldsymbol x } _ { t + 1 } - { \boldsymbol x } _ { * } \| ^ { 2 } ] = \mathbb { E } _ { z _ { t } , i _ { t } } [ \| { \boldsymbol x } _ { t } - \eta _ { t } { \boldsymbol g } _ { t } - \eta _ { t } z _ { t } - { \boldsymbol x } _ { * } \| ^ { 2 } ] } \\ & { \qquad \le \| { \boldsymbol x } _ { t } - { \boldsymbol x } _ { * } \| ^ { 2 } - 2 \eta _ { t } \langle { \boldsymbol x } _ { t } - { \boldsymbol x } _ { * } , \nabla F ( { \boldsymbol x } _ { t } ) \rangle + \eta _ { t } ^ { 2 } L ^ { 2 } + p \eta _ { t } ^ { 2 } L ^ { 2 } \sigma ^ { 2 } . } \end{array} +$$ + +Further take expectation to ${ \boldsymbol { z } } _ { t - 1 }$ and apply Definition 3, + +$$ +\begin{array} { r } { \begin{array} { r } { \mathbb { E } _ { z _ { t } , z _ { t - 1 } , i _ { t } } [ \| { \boldsymbol x } _ { t + 1 } - { \boldsymbol x } _ { * } \| ^ { 2 } ] \leq \left( 1 - 2 \nu _ { t } \eta _ { t } \right) \mathbb { E } _ { z _ { t - 1 } } [ \| { \boldsymbol x } _ { t } - { \boldsymbol x } _ { * } \| ^ { 2 } ] + \eta _ { t } ^ { 2 } L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } \\ { \leq \left( 1 - 2 \nu \eta _ { t } \right) \mathbb { E } _ { z _ { t - 1 } } [ \| { \boldsymbol x } _ { t } - { \boldsymbol x } _ { * } \| ^ { 2 } ] + \eta _ { t } ^ { 2 } L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) . } \end{array} } \end{array} +$$ + +Now we use induction to conduct the proof. Substitute $\begin{array} { r } { \eta _ { t } = \frac { 1 } { t \nu } } \end{array}$ into Eq 21, we have Lemma 2 hold for $t = 2$ . + +Assume $\begin{array} { r } { \mathbb { E } [ \left\| \pmb { x } _ { t } - \pmb { x } _ { * } \right\| ^ { 2 } ] \leq \frac { 2 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { t \nu ^ { 2 } } } \end{array}$ holds for $t > 2$ , then + +$$ +\begin{array} { r l r } { { \mathbb { E } [ \| { \pmb x } _ { t + 1 } - { \pmb x } _ { * } \| ^ { 2 } ] \leq ( 1 - \frac { 2 } { t } ) \mathbb { E } [ \| { \pmb x } _ { t } - { \pmb x } _ { * } \| ^ { 2 } ] + \frac { L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { \nu ^ { 2 } t ^ { 2 } } } } \\ & { } & { \leq ( \frac { 1 } { t } - \frac { 2 } { t ^ { 2 } } ) \frac { 2 L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { \nu ^ { 2 } } + \frac { L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { \nu ^ { 2 } t ^ { 2 } } } \\ & { } & { = ( \frac { 2 } { t } - \frac { 3 } { t ^ { 2 } } ) \frac { L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { \nu ^ { 2 } } \leq \frac { 2 L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { ( t + 1 ) \nu ^ { 2 } } . } \end{array} +$$ + +It’s easy to check that Eq 20 holds for arbitrary $\textbf { \em x }$ rather than $^ { x \ast }$ . Rearrange Eq 20 and take expectation, we have + +$$ +\mathbb { E } [ \langle x _ { t } - x , \nabla F \left( x _ { t } \right) \rangle ] \leq \frac { \mathbb { E } [ \Vert x _ { t } - x \Vert ^ { 2 } ] - \mathbb { E } [ \Vert x _ { t + 1 } - x \Vert ^ { 2 } ] } { 2 \eta _ { t } } + \frac { \eta _ { t } L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 } . +$$ + +Let $k$ be arbitrarily chosen from $\{ 1 , \ldots , \lfloor { T / 2 } \rfloor \}$ . Summing over the last $k + 1$ iterations and use convexity to lower bound $\langle { \pmb x } _ { t } - { \pmb x } , \nabla F \left( { \pmb x } _ { t } \right) \rangle$ by $F \left( { \pmb x } _ { t } \right) - F \left( { \pmb x } \right)$ , + +$$ +\begin{array} { r l } { \displaystyle \sum _ { t = T - k } ^ { T } \mathbb { E } [ F ( { \pmb x } _ { t } ) - F ( { \pmb x } ) ] \leq \frac { \mathbb { E } [ \| { \pmb x } _ { T - k } - { \pmb x } \| ^ { 2 } ] } { 2 \eta _ { T - k } } + \frac { 1 } { 2 } \displaystyle \sum _ { t = T - k + 1 } ^ { T } \mathbb { E } [ \| { \pmb x } _ { t } - { \pmb x } \| ^ { 2 } ] \left( \frac { 1 } { n _ { t } } - \frac { 1 } { n _ { t - 1 } } \right) } & { } \\ { - \frac { \mathbb { E } [ \| { \pmb x } _ { T + 1 } - { \pmb x } \| ^ { 2 } ] } { 2 \eta _ { T } } + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 } \displaystyle \sum _ { t = T - k } ^ { T } \eta _ { t } . } & { } \end{array} +$$ + +Substitute $\begin{array} { r } { \eta _ { t } = \frac { 1 } { \nu t } } \end{array}$ and follow the idea in Shamir & Zhang (2013) by choosing ${ \pmb x } = { \pmb x } _ { T - k }$ , we arrive at + +$$ +\sum _ { t = T - k } ^ { T } \mathbb { E } [ F \left( \pmb { x } _ { t } \right) - F \left( \pmb { x } _ { T - k } \right) ] \leq \frac { \nu } { 2 } \sum _ { t = T - k + 1 } ^ { T } \mathbb { E } [ \left. \pmb { x } _ { t } - \pmb { x } _ { T - k } \right. ^ { 2 } ] + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 \nu } \sum _ { t = T - k } ^ { T } \frac { 1 } { t } . +$$ + +Now we bound $\mathbb { E } [ \left. \pmb { x } _ { t } - \pmb { x } _ { T - k } \right. ^ { 2 } ]$ for $t \geq T ^ { \prime } - k$ , + +$$ +\begin{array} { r l } & { \mathbb { E } [ \| { \pmb x } _ { t } - { \pmb x } _ { T - k } \| ^ { 2 } ] \le 2 \mathbb { E } [ \| { \pmb x } _ { t } - { \pmb x } _ { * } \| ^ { 2 } ] + 2 \mathbb { E } [ \| { \pmb x } _ { T - k } - { \pmb x } _ { * } \| ^ { 2 } ] } \\ & { \le \frac { 4 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \nu ^ { 2 } } \left( \frac { 1 } { t } + \frac { 1 } { T - k } \right) \le \frac { 8 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \nu ^ { 2 } } \left( \frac { 1 } { T - k } \right) } \\ & { \le \frac { 1 6 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { T \nu ^ { 2 } } . } \end{array} +$$ + +Substitute Eq 26 into Eq 25, + +$$ +\sum _ { t = T - k } ^ { T } \mathbb { E } [ F \left( \pmb { x } _ { t } \right) - F \left( \pmb { x } _ { T - k } \right) ] \leq \frac { 8 k L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { T \nu } + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 \nu } \sum _ { t = T - k } ^ { T } \frac { 1 } { t } . +$$ + +Let $\begin{array} { r } { S _ { k } = \frac { 1 } { k + 1 } \sum _ { t = T - k } ^ { T } \mathbb { E } [ F \left( \pmb { x } _ { t } \right) ] } \end{array}$ be the averaged expected values of the last $k + 1$ iterations. We are interested in $S _ { 0 } - F \left( { \pmb x } _ { * } \right) = \mathbb { E } [ F \left( { \pmb x } _ { T } \right) ] - F \left( { \pmb x } _ { * } \right)$ . Now we derive an inequality between $S _ { k }$ and $S _ { k - 1 }$ . By definition, + +$$ +k S _ { k - 1 } = \left( k + 1 \right) S _ { k } - \mathbb { E } [ \mathbf { x } _ { T - k } ] . +$$ + +Rearrange Eq 27 to upper bound $- \mathbb { E } [ { \pmb x } _ { T - k } ]$ , + +$$ +\begin{array} { l } { S _ { k - 1 } = \displaystyle \frac { k + 1 } { k } S _ { k } - \frac { \mathbb { E } \left[ { \pmb x } _ { T - k } \right] } { k } } \\ { \leq \frac { k + 1 } { k } S _ { k } - \frac { S _ { k } } { k } + \frac { 8 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \left( k + 1 \right) T \nu } + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 k \left( k + 1 \right) \nu } \displaystyle \sum _ { t = T - k } ^ { T } \frac { 1 } { t } } \\ { \leq S _ { k } + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 \nu } \left( \frac { 1 6 } { k T } + \frac { 1 } { k \left( k + 1 \right) } \displaystyle \sum _ { t = T - k } ^ { T } \frac { 1 } { t } \right) . } \end{array} +$$ + +Summing over $k = 1 , \dots , k = \lfloor T / 2 \rfloor$ , + +$$ +S _ { 0 } \leq S _ { \lfloor T / 2 \rfloor } + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 \nu } \left( \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \frac { 1 6 } { k T } + \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \sum _ { t = T - k } ^ { T } \frac { 1 } { k \left( k + 1 \right) t } \right) . +$$ + +Now we bound $S _ { \lfloor T / 2 \rfloor } - F ( \pmb { x } _ { * } )$ . Choose ${ \boldsymbol { \mathbf { \mathit { x } } } } = { \boldsymbol { \mathbf { \mathit { x } } } } _ { \ast }$ and $\begin{array} { r } { \eta _ { t } = \frac { 1 } { t \nu } } \end{array}$ in Eq 24 , + +$$ +\begin{array} { r l } & { \displaystyle \sum _ { t = \lfloor T / 2 \rfloor } ^ { T } \mathbb { E } [ F ( { \mathbf x } _ { t } ) - F ( { \mathbf x } _ { * } ) ] = \frac { \nu \left[ T / 2 \right] \mathbb { E } [ \left. { \mathbf x } _ { \lfloor T / 2 \rfloor } - \alpha _ { * } \right. ^ { 2 } ] } { 2 } + \frac { \nu } { 2 } \displaystyle \sum _ { t = \lfloor T / 2 \rfloor + 1 } ^ { T } \mathbb { E } [ \left. { \mathbf x } _ { t } - { \mathbf x } _ { * } \right. ^ { 2 } ] } \\ & { \qquad + \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { 2 } \displaystyle \sum _ { t = \lfloor T / 2 \rfloor } ^ { T } \frac { \nu } { 2 } } \\ & { \qquad \le \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \nu } \displaystyle ( 1 + \sum _ { t = \lfloor T / 2 \rfloor + 1 } ^ { T } \frac { 1 } { t } + \sum _ { t = \lceil T / 2 \rfloor } ^ { T } \frac { 1 } { 2 t } ) } \\ & { \qquad \le \frac { L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \nu } \displaystyle ( 1 + \frac { 3 } { 2 } \sum _ { t = \lfloor T / 2 \rfloor + 1 } ^ { T } \frac { 1 } { t } ) } \\ & { \qquad \le \frac { 4 L ^ { 2 } \left( 1 + p \sigma ^ { 2 } \right) } { \nu } . } \end{array} +$$ + +The second inequality uses Lemma 2. The last inequality holds because the fact that $\scriptstyle \sum _ { t = \lceil T / 2 \rceil } ^ { T ^ { \prime } } { \frac { 1 } { t } } \leq$ $\log ( 2 )$ . Dividing Eq 31 by $\lceil T / 2 \rceil$ , + +$$ +S _ { \lfloor T / 2 \rfloor } - F ( \pmb { x } _ { \ast } ) \leq \frac { 8 L ^ { 2 } ( 1 + p \sigma ^ { 2 } ) } { T \nu } . +$$ + +We have $\begin{array} { r } { \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \frac { 1 6 } { k T } \leq \frac { 1 6 ( 1 + l o g ( T ) ) } { T } } \end{array}$ 16(1+log(T )) because it is harmonic sequence. Lastly, + +$$ +\begin{array} { r l r } { { \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \sum _ { t = T - k } ^ { T } \frac { 1 } { k ( k + 1 ) t } \le \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \frac { \log ( 2 ) } { k ( k + 1 ) } } } \\ & { } & { \le \sum _ { k = 1 } ^ { \lfloor T / 2 \rfloor } \frac { \log ( 2 ) } { k ^ { 2 } } \le 2 \log ( 2 ) . } \end{array} +$$ + +Plugging these bounds into Eq 30, we have + +$$ +S _ { 0 } - F ( { \pmb x } _ { * } ) = \mathcal { O } \left( \frac { ( 1 + p \sigma ^ { 2 } ) L ^ { 2 } \log ( T ) } { T \nu } \right) . +$$ + +Choose $\begin{array} { r } { \sigma ^ { 2 } = \Theta \left( \frac { T l o g ( 1 / \delta ) } { n ^ { 2 } \epsilon ^ { 2 } } \right) } \end{array}$ to guarantee $( \epsilon , \delta )$ -DP. Set $T = n ^ { 2 } \epsilon ^ { 2 }$ , we have + +$$ +S _ { 0 } - F ( { \pmb x } _ { * } ) = \mathcal { O } \left( \frac { p L ^ { 2 } \log ( n ) l o g \left( 1 / \delta \right) } { n ^ { 2 } \epsilon ^ { 2 } \nu } \right) . +$$ + +Set $\begin{array} { r } { T = \frac { \pi \epsilon } { \sqrt { p } } } \end{array}$ and assume $p < n ^ { 2 }$ , we have + +$$ +S _ { 0 } - F ( \pmb { x } _ { * } ) = \mathcal { O } \left( \frac { \sqrt { p } L ^ { 2 } \log ( n ) } { n \epsilon \nu } \right) . +$$ + +# Appendix B Detailed description on benchmark datasets + +Table 3: Detailed description of seven real world datasets. + +
datasetAdultKDDCup99MNISTCovertypeGisetteReal-simRCV1
#records45220700006500058101260007230950000
#features1041147845450002095847236
#classes22107222
+ +# Appendix C Comparison between Average and Minimum Curvatures on Different dataset + +In this section we plot the average and minimum curvatures in Figure 4 for another dataset KDDCup99. The objective function is still regularized logistic regression. + +As shown in Figure 4, the average curvature is still larger than the minimum curvature (especially when the regularization term is small). Despite this, the average curvature of KDDCup99 is smaller than Adult, this may be the reason why the improvement in Section 4 is larger for the Adult dataset. + +![](images/0f4f1dea782d3768ecb6ec38776f4982c99b6bd47380ccd10785b971e2967067.jpg) +Figure 4: Curvatures of regularized logistic regression on KDDCup99 dataset over training. Dot symbol represents average curvature and cross symbol represents minimum curvature. \ No newline at end of file diff --git a/parse/train/rJgVwTVtvS/rJgVwTVtvS_content_list.json b/parse/train/rJgVwTVtvS/rJgVwTVtvS_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..a50cf5884b058b7b2121287ccfd7839452699484 --- /dev/null +++ b/parse/train/rJgVwTVtvS/rJgVwTVtvS_content_list.json @@ -0,0 +1,2624 @@ +[ + { + "type": "text", + "text": "Gradient Perturbation is Underrated for Differentially Private Convex Optimization ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 184, + 170, + 418, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 452, + 234, + 545, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Gradient perturbation, widely used for differentially private optimization, injects noise at every iterative update to guarantee differential privacy. Previous work first determines the noise level that can satisfy the privacy requirement and then analyzes the utility of noisy gradient updates as in non-private case. In this paper, we explore how the privacy noise affects the optimization property. We show that for differentially private convex optimization, the utility guarantee of both DP-GD and DP-SGD is determined by an expected curvature rather than the minimum curvature. The expected curvature represents the average curvature over the optimization path, which is usually much larger than the minimum curvature and hence can help us achieve a significantly improved utility guarantee. By using the expected curvature, our theory justifies the advantage of gradient perturbation over other perturbation methods and closes the gap between theory and practice. Extensive experiments on real world datasets corroborate our theoretical findings. ", + "bbox": [ + 233, + 270, + 766, + 478 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 176, + 513, + 339, + 530 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Machine learning has become a powerful tool for many practical applications. The training process often needs access to some private dataset, e.g., applications in financial and medical fields. Recent work has shown that the model learned from training data may leak unintended information of individual records (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017). It is known that Differential privacy (DP) (Dwork et al., 2006a;b) is a golden standard for privacy preserving data analysis. It provides provable privacy guarantee by ensuring the influence of any individual record is negligible. It has been deployed into real world applications by large-scale corporations and U.S. Census Bureau (Erlingsson et al., 2014; McMillan, 2016; Abowd, 2016; Ding et al., 2017). ", + "bbox": [ + 174, + 547, + 825, + 674 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We study the fundamental problem when differential privacy meets machine learning: the differentially private empirical risk minimization (DP-ERM) problem (Chaudhuri & Monteleoni, 2009; Chaudhuri et al., 2011; Kifer et al., 2012; Bassily et al., 2014; Talwar et al., 2015; Wu et al., 2017; Zhang et al., 2017; Wang et al., 2017; Smith et al., 2017; Jayaraman et al., 2018; Feldman et al., 2018; Iyengar et al., 2019; Wang & Gu, 2019). DP-ERM minimizes the empirical risk while guaranteeing that the output of learning algorithm is differentially private with respect to the training data. Such privacy guarantee provides strong protection against potential adversaries (Hitaj et al., 2017; Rahman et al., 2018). In order to guarantee privacy, it is necessary to introduce randomness to the algorithm. There are usually three ways to introduce randomness according to the time of adding noise: output perturbation, objective perturbation and gradient perturbation. ", + "bbox": [ + 174, + 680, + 825, + 833 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) first runs the learning algorithm the same as in the non-private case then adds noise to the output parameter. Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the objective (i.e., the empirical loss) then release the minimizer of the perturbed objective. Gradient perturbation (Song et al., 2013; Bassily et al., 2014; Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018) perturbs each intermediate update. If each update is differentially private, the composition theorem of differential privacy ensures the whole learning procedure is differentially private. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Gradient perturbation comes with several advantages over output/objective perturbations. Firstly, gradient perturbation does not require strong assumption on the objective because it only needs to bound the sensitivity of gradient update rather than the whole learning process. Secondly, gradient perturbation can release the noisy gradient at each iteration without damaging the privacy guarantee as differential privacy is immune to post processing (Dwork et al., 2014). Thus, it is a more favorable choice for certain applications such as distributed optimization (Rajkumar & Agarwal, 2012; Agarwal et al., 2018; Jayaraman et al., 2018). At last, gradient perturbation often achieves better empirical utility than output/objective perturbations for DP-ERM. ", + "bbox": [ + 174, + 138, + 825, + 263 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "However, the existing theoretical utility guarantee for gradient perturbation is the same as or strictly inferior to that of other perturbation methods as shown in Table 1. This motivates us to ask ", + "bbox": [ + 174, + 271, + 825, + 313 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "“What is wrong with the theory for gradient perturbation? Can we justify the empirical advantage of gradient perturbation theoretically?” ", + "bbox": [ + 176, + 319, + 821, + 348 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We revisit the analysis for gradient perturbation approach. Previous work (Bassily et al., 2014; Wang et al., 2017; Jayaraman et al., 2018) derive the utility guarantee of gradient perturbation via two steps. They first determine the noise variance at each step that meets the privacy requirement and then derive the utility guarantee by using the convergence analysis the same as in non-private case. However, the noise to guarantee privacy naturally affects the optimization procedure, but previous approach does not exploit the interaction between privacy noise and optimization of gradient perturbation. ", + "bbox": [ + 174, + 356, + 825, + 453 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we utilize the fact the privacy noise affects the optimization procedure and establish new and much tighter utility guarantees for gradient perturbation approaches. Our contribution can be summarized as follows. ", + "bbox": [ + 176, + 459, + 825, + 502 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We introduce an expected curvature that can characterize the optimization property accurately when there is perturbation noise at each gradient update. • We establish the utility guarantees for DP-GD for both convex and strongly convex objectives based on the expected curvature rather than the usual minimum curvature. • We also establish the the utility guarantees for DP-SGD for both convex and strongly convex objectives based on the expected curvature. To the best of our knowledge, this is the first work to remove the dependency on minimum curvature for DP-ERM algorithms. ", + "bbox": [ + 215, + 517, + 825, + 645 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In DP-ERM literature, there is a gap between the utility guarantee of non-strongly convex objectives and that of strongly convex objectives. However, by using the expected curvature, we show that some of the non-strongly convex objectives can achieve the same order of utility guarantee as the strongly convex objectives, matching the empirical observation. This is because the expected curvature could be relatively large even for non-strongly convex objectives. ", + "bbox": [ + 174, + 660, + 825, + 744 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "As we mentioned earlier, prior to our work, there is a mismatch between theoretical guarantee and empirical observation of gradient perturbation approach compared with other two perturbation approaches. Our result theoretically justifies the advantage of gradient perturbation and close the mismatch. ", + "bbox": [ + 174, + 751, + 825, + 806 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 Paper Organization ", + "text_level": 1, + "bbox": [ + 176, + 827, + 382, + 840 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The rest of this paper is organized as follows. Section 2 introduces notations and the DP-ERM task. In Sections 3, we first introduce the expected curvature and establish the utility guarantee of both DP-GD and DP-SGD based on such expected curvature. Then we give some discussion on three perturbation approaches. We conduct extensive experiments in Section 4. Finally, we conclude in Section 5. ", + "bbox": [ + 176, + 853, + 823, + 922 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/592bd75ea61c4cf006e848e421ebba74f02b532ba3c0d364e203152487594516.jpg", + "table_caption": [ + "Table 1: Expected excess empirical risk bounds under $( \\epsilon , \\delta )$ -DP, where $n$ and $p$ are the number of samples and the number of parameters, respectively, and $\\beta , \\mu$ and $\\nu$ are the smooth coefficient, the strongly convex coefficient and the expected curvature, respectively, and $\\nu \\geq \\mu$ (see Section 3.1). We note that $\\mu = 0$ denotes the convex but not strongly convex objective. The Lipschitz constant $L$ is assumed to be 1. We omit $\\log \\left( 1 / \\delta \\right)$ for simplicity. " + ], + "table_footnote": [], + "table_body": "
AuthorsPerturbationAlgorithmUtility (μ = 0)Utility(u>0)
Chaudhuri et al. (2011)ObjectiveN/A00 pun22
Zhang et al. (2017)OutputGD0 ()2/3)ne0 βpHn2c²
Bassily et al. (2014)GradientSGD0Vplog3/2(n)ne0plog²(n)μn2c²
Jayaraman et al. (2018)GradientGDN/A0βplog²(n)μ²n2e2
OursGradientGD0 V>Bplog(n)v²n2e²nE0βplog(n)v²n2c2
OursGradientSGD0Vplog(n)>plog(n)nevn2e20plog(n)vn2e2
", + "bbox": [ + 173, + 199, + 861, + 361 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 Preliminary ", + "text_level": 1, + "bbox": [ + 174, + 388, + 328, + 405 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We introduce notations and definitions in this section. Given dataset $D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}$ , the objective function $F ( { \\pmb x } ; D )$ is defined as $\\begin{array} { r } { F ( \\pmb { x } ; D ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } f ( \\pmb { x } ; d _ { i } ) } \\end{array}$ , where $f ( \\pmb { x } ; d _ { i } ) : \\mathbb { R } ^ { p } \\mathbb { R }$ is the loss of model $\\pmb { x } \\in \\mathbb { R } ^ { p }$ for the record $d _ { i }$ . ", + "bbox": [ + 174, + 421, + 826, + 467 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "For simplicity, we use $F ( { \\pmb x } )$ to denote $F ( { \\pmb x } ; D )$ . We use $\\lVert \\boldsymbol { v } \\rVert$ to denote the $l _ { 2 }$ norm of a vector $_ { v }$ . We use $\\begin{array} { r } { \\mathcal { X } _ { f } ^ { * } = \\arg \\operatorname* { m i n } _ { { \\pmb x } \\in \\mathbb { R } ^ { p } } f ( { \\pmb x } ) } \\end{array}$ to denote the set of optimal solutions of $f ( { \\pmb x } )$ . Throughout this paper, we assume $\\mathcal { X } _ { f } ^ { \\ast }$ non-empty. ", + "bbox": [ + 174, + 472, + 826, + 518 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Definition 1 (Objective properties). For any $\\ b { x } , \\ b { y } \\in \\mathbb { R } ^ { p }$ , $a$ function $f : \\mathbb { R } ^ { p } \\mathbb { R }$ ", + "bbox": [ + 171, + 523, + 754, + 540 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• is $L$ -Lipschitz if $| f ( \\pmb { x } ) - f ( \\pmb { y } ) | \\leq L \\| \\pmb { x } - \\pmb { y } \\|$ . \n• is $\\beta$ -smooth if $\\begin{array} { r } { f ( \\pmb { y } ) \\leq f ( \\pmb { x } ) + \\langle \\nabla f ( \\pmb { x } ) , \\pmb { y } - \\pmb { x } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb { y } - \\pmb { x } \\right. ^ { 2 } . } \\end{array}$ \n• is convex if $\\langle \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\rangle \\geq 0$ . \n• is $\\mu$ -strongly convex (or $\\mu$ -SC) if $\\left. \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\right. \\geq \\mu \\left. { \\pmb x } - { \\pmb y } \\right. ^ { 2 } .$ ", + "bbox": [ + 214, + 550, + 753, + 648 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The strong convexity coefficient $\\mu$ is the lower bound of the minimum curvature of function $f$ over the domain. ", + "bbox": [ + 176, + 659, + 823, + 689 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We say that two datasets $D , D ^ { \\prime }$ are neighboring datasets (denoted as $D \\sim D ^ { ' }$ ) if $D$ can be obtained by arbitrarily modifying one record in $D ^ { \\prime }$ (or vice versa). In this paper we consider $( \\epsilon , \\delta )$ -differential privacy as follows. ", + "bbox": [ + 173, + 695, + 825, + 739 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Definition 2 ( $( \\epsilon , \\delta )$ -DP (Dwork et al., 2006a;b)). A randomized mechanism $\\mathcal { M } : D \\mathcal { R }$ guarantees $( \\epsilon , \\delta )$ -differential privacy if for any two neighboring input datasets $D , D ^ { ' }$ and for any subset of outputs $S \\subseteq { \\mathcal { R } }$ it holds that $P r [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( D ^ { ' } ) \\in S ] + \\delta$ . ", + "bbox": [ + 174, + 743, + 825, + 794 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We note that $\\delta$ can be viewed as the probability that original $\\epsilon$ -DP fails and a meaningful setting requires $\\begin{array} { r } { \\delta \\ll \\frac { 1 } { n } } \\end{array}$ . By its definition, differential privacy controls the maximum influence that any individual record can produce. Smaller $\\epsilon , \\delta$ implies less information leak but usually leads to worse utility. One can adjust $\\epsilon , \\delta$ to trade off between privacy and utility. ", + "bbox": [ + 174, + 804, + 825, + 861 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "DP-ERM requires the output $\\pmb { x } _ { o u t } \\in \\mathbb { R } ^ { p }$ is differentially private with respect to the input dataset $D$ . Let ${ \\pmb x } _ { * } \\in \\mathcal { X } _ { F } ^ { * }$ be one of the optimal solutions of $F ( { \\pmb x } )$ , the utility of DP-ERM algorithm is measured by expected excess empirical risk : $\\mathbb { E } [ F ( { \\pmb x } _ { o u t } ) - F ( { \\pmb x } _ { * } ) ]$ , where the expectation is taken over the algorithm randomness. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Main Results ", + "text_level": 1, + "bbox": [ + 174, + 102, + 339, + 118 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section, we first define the expected curvature $\\nu$ and explain why it depends only on the average curvature. We then use such expected curvature to improve the analysis of both DP-SGD and DP-GD. ", + "bbox": [ + 176, + 128, + 823, + 171 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 Expected Curvature ", + "text_level": 1, + "bbox": [ + 174, + 188, + 388, + 203 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In non-private setting, the analysis of convex optimization relies on the strongly convex coefficient $\\mu$ , which is the minimum curvature over the domain and can be extremely small for some common objectives. Previous work on DP-ERM uses the same analysis as in non-private case and therefore the resulting utility bounds rely on the minimum curvature. In our analysis, however, we avoid the dependency on the minimum curvature by exploiting how the privacy noise affects the optimization. With the perturbation noise, the expected curvature that the optimization path encounters is related to the average curvature instead of the minimum curvature. Definition 3 uses $\\nu$ to capture such average curvature with Gaussian noise. We use $\\begin{array} { r } { \\pmb { x } _ { * } = \\arg \\operatorname* { m i n } _ { \\pmb { x } \\in \\mathcal { X } _ { * } } \\| \\pmb { x } - \\pmb { x } _ { 1 } \\| } \\end{array}$ to denote the closest solution to the initial point. ", + "bbox": [ + 173, + 213, + 825, + 340 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 3 (Expected curvature). A convex function $F : \\mathbb { R } ^ { p } \\to \\mathbb { R }$ , has expected curvature $\\nu$ with respect to noise $\\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p } )$ if for any $\\pmb { x } \\in \\mathbb { R } ^ { p }$ and ${ \\tilde { \\pmb { x } } } = { \\pmb { x } } - { \\boldsymbol { z } }$ where $z \\sim { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } I _ { p } )$ it holds that ", + "bbox": [ + 174, + 343, + 823, + 383 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a61c53876e260e0333a88e01803a20febc96921b6d804fdeb6cae39da879f82a.jpg", + "text": "$$\n\\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\geq \\nu \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] ,\n$$", + "text_format": "latex", + "bbox": [ + 364, + 383, + 632, + 401 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where the expectation is taken with respect to $_ { z }$ ", + "bbox": [ + 174, + 404, + 514, + 419 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Claim 1. If $F ^ { \\prime }$ is $\\mu$ -strongly convex, we have $\\nu \\geq \\mu$ ", + "bbox": [ + 174, + 422, + 547, + 438 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Proof. It can be verified that $\\nu = \\mu$ always holds because of the strongly convex definition. ", + "bbox": [ + 171, + 452, + 797, + 468 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In fact, $\\nu$ represents the average curvature and is much larger than $\\mu$ . We use $\\mathbf { x } ^ { \\prime }$ to denote the transpose of $_ { x }$ . Let $H _ { x } = \\nabla ^ { 2 } F ( { \\pmb x } )$ be the Hessian matrix evaluated at $_ { x }$ . We use Taylor expansion to approximate the left hand side of Eq (1) as follows ", + "bbox": [ + 176, + 482, + 825, + 525 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/22dc61e52c1b61632edd512eeb8e27dcd93cc06382f69f7d118e512124de3a10.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\approx \\mathbb { E } [ \\langle \\nabla F ( \\pmb { x } ) - \\pmb { H } _ { \\pmb { x } } \\pmb { z } , \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\rangle ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\mathbb { E } [ \\pmb { z } ^ { \\prime } H _ { \\pmb { x } } \\pmb { z } ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\sigma ^ { 2 } \\operatorname { t r } ( H _ { \\pmb { x } } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 531, + 691, + 592 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For convex objective, the Hessian matrix is positive semi-definite and $\\mathrm { t r } ( H _ { \\pmb { x } } )$ is the sum of the eigenvalues of $H _ { x }$ . We can further express out the right hand side of Eq (1) as follows ", + "bbox": [ + 173, + 594, + 825, + 623 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/ddd56589f813109649282d6c28fe274c054c5622cafae5631708084905907ae1.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } [ \\| \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\nu \\left( \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } + p \\sigma ^ { 2 } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 290, + 632, + 707, + 656 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Based on the above approximation, we can estimate the value of $\\nu$ in Definition 3: $\\nu \\lesssim$ $\\frac { \\mathop { \\mathrm { t r } } ( H _ { \\pmb { x } } ) \\sigma ^ { 2 } + \\mu \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } } { p \\sigma ^ { 2 } + \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } }$ . For relatively large $\\sigma ^ { 2 }$ , this implies $\\begin{array} { r } { \\nu \\approx \\frac { \\mathrm { t r } ( H _ { x } ) } { p } } \\end{array}$ tr(Hx) that is the average curvature at $_ { x }$ . Large variance is a reasonable setting because meaningful differential privacy guarantee requires non-trivial amount of noise. ", + "bbox": [ + 174, + 662, + 825, + 727 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The above analysis suggests that $\\nu$ can be independent of and much larger than $\\mu$ . This is indeed true for many convex objectives. Let us take the $l _ { 2 }$ regularized logistic regression as an example. The objective is strongly convex only due to the $l _ { 2 }$ regularizer. Thus, the minimum curvature (strongly convex coefficient) is the regularization coefficient $\\lambda$ . Sharmir et al. [1] shows the optimal choice of $\\lambda$ is $\\Theta ( n ^ { - 1 / 2 } )$ (Section 4.3 in [1]). In practice, typical choice of $\\lambda$ is even smaller and could be on the order of $n ^ { - 1 }$ . Figure 1 compares the minimum and average curvatures of regularized logistic regression during the training process. The average curvature is basically unaffected by the regularization term $\\lambda$ . In contrast, the minimum curvature reaches $\\lambda$ in first few steps. Therefore removing the dependence on minimum curvature is a significant improvement. We also plot the curvatures for another dataset KDDCup99 in the Appendix C. The resulting curvatures are similar to Figure 1. ", + "bbox": [ + 174, + 733, + 825, + 888 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Perturbation noise is necessary to attain $\\nu > \\mu$ . We note that $\\nu = \\mu$ when the training process does not involve perturbation noise (corresponding to $\\sigma = 0$ in Definition 3). For example, objective/output perturbation cannot utilize this expected curvature condition as no noise is injected in their training process. Therefore, among three existing perturbation methods, gradient perturbation is the only method can leverage such effect of noise. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/ae96e95a757d3581547102e379e153c5a8968b1bb295cc45f696ce4cc9d3ee9b.jpg", + "image_caption": [ + "Figure 1: Curvatures of regularized logistic regression on Adult dataset over training. Dot/cross symbol represents average/minimum curvature respectively. " + ], + "image_footnote": [], + "bbox": [ + 220, + 102, + 421, + 223 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/6923d3dc5e0e5aeb483be0ad716b1f4b6fae1ccf325f6cb09ef192bbd44423a7.jpg", + "image_caption": [ + "Figure 2: Illustration of a generic loss function in the high dimensional setting ( $p { > } n$ , Figure 3 in Negahban et al. (2012)). " + ], + "image_footnote": [], + "bbox": [ + 576, + 107, + 779, + 231 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 320, + 825, + 362 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We note that $\\mu = 0$ does not necessarily lead to $\\nu = 0$ . A concrete example is given in Figure 2 (from Negahban et al. (2012)). It provides an illustration of the loss function in the high-dimensional $( p > n )$ setting, i.e., the resticted strongly convex scenario: the loss is curved in certain directions but completely flat in others. The average curvature of such objective is always positive but the worst curvature is 0. Though some recent work shows the utility guarantee of high dimensional DP-ERM task may not depend on the worst curvature (Wang & Gu, 2019), Figure 2 still provides a good illustration for the case of $\\nu > \\mu = 0$ Moreover, as shown in Figure 1, the average curvature of logistic regression on Adult dataset is above 0 during the training procedure even the regularization term is 0. As we will show later, a positive $\\nu$ over the optimization path is sufficient for our optimization analysis. ", + "bbox": [ + 173, + 368, + 825, + 508 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 Utility Guarantee of DP-GD Based on Expected Curvature ", + "text_level": 1, + "bbox": [ + 174, + 523, + 723, + 540 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this section we show that the expected curvature can be used to improve the utility bound of DP-GD (Algorithm 1). ", + "bbox": [ + 174, + 551, + 825, + 579 + ], + "page_idx": 4 + }, + { + "type": "table", + "img_path": "images/1ba6c1d6a079a2fb666b8a1dd55e0d55a4a8bf0052ea59e52b3f3cb9d4bd6cba.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm 1: Differentially Private Gradient Descent (DP-GD)
Input: Privacy parameters e,δ; running steps T; learning rate n. Loss function F(x) with Lipschitz constant L.
for t=1 to T do
Compute gt = VF(xt).
Update parameter Xt+1 = xt - Nt (gt + zt), where zt ~ N(0,σ²Ip). end for
", + "bbox": [ + 173, + 597, + 816, + 707 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 is $( \\epsilon , \\delta )$ -DP if we set $\\begin{array} { r } { \\sigma _ { t } = \\Theta \\left( \\frac { L \\sqrt { T \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}$ (Jayaraman et al., 2018). Let $\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { T }$ be the training path and $\\nu = \\operatorname* { m i n } \\{ \\nu _ { 1 } , \\dots , \\nu _ { T } \\}$ be the minimum expected curvature over the path. Now we present the utility guarantee of DP-GD for the case of $\\nu > 0$ . ", + "bbox": [ + 173, + 726, + 825, + 786 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 1 (Utility guarantee, $\\nu > 0$ .). Suppose $F ^ { \\prime }$ is $L$ -Lipschitz and $\\beta$ -smooth with $\\nu$ expected curvature. Set $\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}$ , $\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}$ and $\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)$ , we have ", + "bbox": [ + 173, + 789, + 825, + 827 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/eeca38ba068bd130824132e5f33e7effcefca8af8b87db4586597c28aa2a6933.jpg", + "text": "$$\n\\mathbb { E } \\left[ F \\left( \\pmb { x } _ { T + 1 } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) \\right] = \\mathcal { O } \\left( \\frac { \\beta p \\log { \\left( n \\right) L ^ { 2 } } \\log { \\left( 1 / \\delta \\right) } } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 838, + 687, + 871 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proof. All proofs in this paper are relegated to Appendix A. ", + "bbox": [ + 173, + 885, + 607, + 901 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Remark 1. Theorem 3 only depends on the expected curvature over the training path $\\nu$ . ", + "bbox": [ + 169, + 909, + 807, + 925 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The expectation is taken over the algorithm randomness if without specification. Theorem 1 significantly improves the original analysis of DP-GD because of our arguments in Section 3.1. If $\\nu = 0$ , then the curvatures are flatten in all directions. One example is the linear function, which is used by Bassily et al. (2014) to derive their utility lower bound. Such simple function may not be commonly used as loss function in practice. Nonetheless, we give the utility guarantee for the case of $\\nu = 0$ in Theorem 2. ", + "bbox": [ + 173, + 102, + 826, + 188 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 2 (Utility guarantee, $\\nu = 0$ .). Suppose $F$ is $L$ -Lipschitz and $\\beta$ -smooth. Set $\\begin{array} { r } { \\eta = \\frac { 1 } { \\beta } } \\end{array}$ , T = nβ\u000f√ and $\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)$ . Let $\\begin{array} { r } { \\bar { \\pmb x } = \\frac { 1 } { T } \\sum _ { i = 1 } ^ { T } \\pmb x _ { i + 1 } } \\end{array}$ , we have ", + "bbox": [ + 173, + 190, + 826, + 233 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/9b0a774c848f175d459322deb7291da3ffcdcbd61e35dd5afdd7049763082a2d.jpg", + "text": "$$\n\\mathbb { E } [ F \\left( \\bar { \\pmb { x } } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log \\left( 1 / \\delta \\right) } { n \\epsilon } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 346, + 242, + 650, + 276 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We use parameter averaging to reduce the influence of perturbation noise because gradient update does not have strong contraction effect when $\\nu = 0$ . ", + "bbox": [ + 171, + 290, + 823, + 319 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.3 Utiltiy Guarantee of DP-SGD Based on Expected Curvature ", + "text_level": 1, + "bbox": [ + 174, + 334, + 733, + 351 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Stochastic gradient descent has become one of the most popular optimization methods because of the cheap one-iteration cost. In this section we show that expected curvature can also improve the utility analysis for DP-SGD (Algorithm 2). We note that $\\nabla f ( { \\pmb x } )$ represents an element from the subgradient set evaluated at $_ { x }$ when the objective is not smooth. Before stating our theorem, we introduce the moments accountant technique (Lemma 1) that is essential to establish privacy guarantee. ", + "bbox": [ + 174, + 361, + 825, + 445 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lemma 1 (Abadi et al. (2016)). There exist constants $c _ { 1 }$ and $c _ { 2 }$ so that given running steps $T$ , for any √ $\\epsilon < c _ { 1 } T / n ^ { 2 }$ , Algorithm $\\mathcal { Q }$ is $( \\epsilon , \\delta )$ -differentially private for any $\\delta > 0$ if we choose $\\sigma \\ge c _ { 2 } \\frac { \\sqrt { T l o g ( 1 / \\delta ) } } { n \\epsilon }$ ", + "bbox": [ + 173, + 449, + 825, + 503 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm 2: Differentially Private Stochastic Gradient Descent (DP-SGD) ", + "text_level": 1, + "bbox": [ + 173, + 525, + 723, + 541 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Input : Dataset $D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}$ . Individual loss function: $f _ { i } \\left( \\pmb { x } \\right) = f \\left( \\pmb { x } ; d _ { i } \\right)$ with Lipschitz constant $L$ . Number of iterations: $T$ . Learning rate: $\\eta _ { t }$ . ", + "bbox": [ + 169, + 545, + 776, + 574 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1 for $t = 1$ to $T$ do ", + "bbox": [ + 160, + 574, + 300, + 587 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Sample $i _ { t }$ from $[ n ]$ uniformly. \nCompute ${ \\pmb g } _ { t } = \\nabla f _ { i _ { t } } \\left( { \\pmb x } _ { t } \\right)$ . \nUpdate parameter ${ \\pmb x } _ { t + 1 } = { \\pmb x } _ { t } - \\eta _ { t } \\left( { \\pmb g } _ { t } + { \\pmb z } _ { t } \\right)$ , where $z _ { t } \\sim \\mathcal { N } \\left( 0 , L ^ { 2 } \\sigma ^ { 2 } I _ { p } \\right)$ . ", + "bbox": [ + 166, + 588, + 704, + 633 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 end ", + "bbox": [ + 158, + 633, + 207, + 645 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the case of $\\nu > 0$ , Theorem 3 presents the utility guarantee of DP-SGD. ", + "bbox": [ + 173, + 667, + 718, + 683 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3 (Utility guarantee, $\\nu > 0$ .). Suppose $F$ is $L$ -Lipschitz with $\\nu$ expected curvature. Choose $\\sigma$ based on Lemma $\\mathit { 1 }$ to guarantee $( \\epsilon , \\delta )$ -DP. Set $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}$ and $T = n ^ { 2 } \\epsilon ^ { 2 }$ , we have ", + "bbox": [ + 173, + 686, + 823, + 717 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/74488a3dd9a58c634b0687801f4c886ef54449c747129ed55fa6e4e5d59e95c9.jpg", + "text": "$$\n\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log \\left( n \\right) \\log \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 727, + 673, + 758 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Remark 2. Theorem 3 does not require smooth assumption. ", + "bbox": [ + 173, + 765, + 609, + 780 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3 shows the utility guarantee of DP-SGD also depends on $\\nu$ rather than $\\mu$ . We set $T = \\Theta ( n ^ { 2 } )$ following Bassily et al. (2014). We note that $T = \\Theta ( n ^ { 2 } )$ is necessary even for non-private SGD to reach $1 / n ^ { 2 }$ precision. We next show for a relatively coarse precision, the running time can be reduced significantly. ", + "bbox": [ + 173, + 791, + 826, + 849 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 4. SupposeLemma 1 to guarantee $F ^ { \\prime }$ s- $L$ Lipsc. Set th a $\\nu$ curvatur. Suppose oose , we $\\sigma$ based onave $( \\epsilon , \\delta )$ $D P$ $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}$ $\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}$ $p < n ^ { 2 }$ ", + "bbox": [ + 169, + 852, + 825, + 885 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/72d34ec70e7e7bcf03373d74d385c02f85c24ca9633ccd5e91ec3c810b08e74b.jpg", + "text": "$$\n\\mathbb { E } [ F \\left( \\mathbf { x } _ { T } \\right) - F \\left( \\mathbf { x } _ { * } \\right) ] = { \\mathcal { O } } \\left( { \\frac { { \\sqrt { p } } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 351, + 895, + 647, + 928 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We note that the analysis of Bassily et al. (2014) yields E[F (xT )−F (x∗)] = O \u0010 √pL2 log2(n)n\u000fµ \u0011 if setting $\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}$ , w till depends on the minimum curvature. Theorem 5 shows the $\\nu = 0$ ", + "bbox": [ + 173, + 101, + 825, + 155 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 5 (Utility guarantee, $\\nu = 0$ .). Suppose $F$ is $L$ -Lipschitz. Assume $\\| \\pmb { x } _ { t } \\| \\le D$ for $t \\in [ T ]$ . Choose $\\sigma$ based on Lemma $\\mathit { 1 }$ to guarantee $( \\epsilon , \\delta )$ -DP. Let $G = L \\sqrt { 1 + p \\sigma ^ { 2 } }$ , set ηt = DG√t and $T = n ^ { 2 } \\epsilon ^ { 2 }$ , we have ", + "bbox": [ + 174, + 156, + 825, + 207 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/98be7acc70267bbb2d1ef57d798745715487d46a835cbbcc73bad196232cf161.jpg", + "text": "$$\n\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p \\log \\left( 1 / \\delta \\right) } L \\log \\left( n \\right) } { n \\epsilon } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 318, + 213, + 678, + 252 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This utility guarantee can be derived from Theorem 2 in (Shamir $\\&$ Zhang, 2013). ", + "bbox": [ + 171, + 260, + 761, + 276 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.4 Discussion on three perturbation approaches. ", + "text_level": 1, + "bbox": [ + 173, + 291, + 602, + 306 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we briefly discuss two other perturbation approaches and compare them to the gradient perturbation approach. ", + "bbox": [ + 173, + 316, + 823, + 345 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) perturbs the learning algorithm after training. It adds noise to the resulting model of non-private learning process. The magnitude of perturbation noise is propositional to the maximum influence one record can cause on the learned model. Take the gradient descent algorithm as an example. At each step, the gradient of different records would diverge the two sets of parameters generated by neighboring datasets, the maximum distance expansion is related to the Lipschitz coefficient. At the same time, the gradient of the same records in two datasets would shrink the parameter distance because of the contraction effect of the gradient update. The contraction effect depends on the smooth and strongly convex coefficient. Smaller strongly convex coefficient leads to weaker contraction. The sensitivity of output perturbation algorithm is the upper bound on the largest possible final distance between two sets of parameters. ", + "bbox": [ + 174, + 352, + 825, + 505 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the objective function before training. It requires the objective function to be strongly convex to guarantee the uniqueness of the solution. It first adds $L _ { 2 }$ regularization to obtain strong convexity if the original objective is not strongly convex. Then it perturbs the objective with a random linear term. The sensitivity of objective perturbation is the maximum change of the minimizer that one record can produce. Chaudhuri et al. (2011) and Kifer et al. (2012) use the largest and the smallest eigenvalue (i.e. the smooth and strongly convex coefficient) of the objective’s Hessian matrix to upper bound such change. ", + "bbox": [ + 174, + 511, + 825, + 623 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In comparison, gradient perturbation is more flexible than output/objective perturbation. For example, to bound the sensitivity, gradient perturbation only requires Lipschitz coefficient which can be easily obtained by using the gradient clipping technique. However, both output and objective perturbation further need to compute the smooth coefficient, which is hard for some common objectives such as softmax regression. ", + "bbox": [ + 174, + 630, + 825, + 700 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "More critically, output/objective perturbation cannot utilize the expected curvature condition because their training process does not contain perturbation noise. Moreover, they have to consider the worst performance of learning algorithm. That is because DP makes the worst case assumption on query function and output/objective perturbation treat the whole learning algorithm as a single query to private dataset. This explains why their utility guarantee depends on the worst curvature of the objective. ", + "bbox": [ + 174, + 707, + 823, + 790 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 Experiment ", + "text_level": 1, + "bbox": [ + 176, + 806, + 323, + 821 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we evaluate the performance of DP-GD and DP-SGD on multiple real world datasets. We use the benchmark datasets provided by Iyengar et al. (2019). Objective functions are logistic regression and softmax regression for binary and multi-class datasets, respectively. ", + "bbox": [ + 174, + 832, + 825, + 888 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Datasets. The benchmark datasets includes two multi-class datasets (MNIST, Covertype) and five binary datasets, and three of them are high dimensional (Gisette, Real-sim, RCV1). ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/ed47ab137e8c828ed8f4a4ed8680c944923c818aab97811aa87d6223e122d1a8.jpg", + "table_caption": [ + "Table 2: Algorithm validation accuracy (in $\\%$ ) on various kinds of real world datasets. Privacy parameter $\\epsilon$ is 0.1 for binary dataset and 1 for multi-classes datasets. " + ], + "table_footnote": [], + "table_body": "
KDDCup99AdultMNISTCovertypeGisetteReal-simRCV1
Non private99.184.891.971.296.693.393.5
AMP197.579.371.964.362.873.164.5
Out-SGD98.177.469.462.462.373.266.7
DP-SGD98.780.487.567.763.073.870.4
DP-GD98.780.988.666.267.376.174.9
", + "bbox": [ + 174, + 140, + 844, + 229 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/e4bca66c83380d29bc2d6fc58d3bc916e6e2c9f242addde6ddb24f85443a6db7.jpg", + "image_caption": [ + "Figure 3: Algorithm validation accuracy (in $\\%$ ) with varying \u000f. NP represents non-private baseline. Detailed description about evaluated datasets can be found in Table 3. " + ], + "image_footnote": [], + "bbox": [ + 197, + 247, + 803, + 356 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Following Iyengar et al. (2019), we use $8 0 \\%$ data for training and the rest for testing. Detailed description of datasets can be found in Appendix B ", + "bbox": [ + 176, + 421, + 821, + 450 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Implementation details. We track Rényi differentialy privacy $( R D P )$ (Mironov, 2017) and convert it to $( \\epsilon , \\delta )$ -DP. Running step $T$ is chosen from $\\{ 5 0 , 2 0 0 , 8 0 0 \\}$ for both DP-GD and DP-SGD. For DP-SGD, we use moments accountant to track the privacy loss and the sampling ratio is set as 0.1. The standard deviation of the added noise $\\sigma$ is set to be the smallest value such that the privacy budget is allowable to run desired steps. We ensure each loss function is Lipschitz by clipping individual gradient. The method in Goodfellow (2015) allows us to clip individual gradient efficiently. Clipping threshold is set as 1 (0.5 for high dimensional datasets because of the sparse gradient). For DP-GD, learning rate is chosen from $\\{ 0 . 1 , 1 . 0 , 5 . 0 \\}$ $( \\{ 0 . 2 , 2 . 0 , 1 0 . 0 \\}$ for high dimensional datasets). The learning rate of DP-SGD is twice as large as DP-GD and it is divided by 2 at the middle of training. Privacy parameter $\\delta$ is set as $\\textstyle { \\frac { 1 } { n ^ { 2 } } }$ . The $l _ { 2 }$ regularization coefficient is set as $1 \\times 1 0 ^ { - 4 }$ . All reported numbers are averaged over 20 runs. ", + "bbox": [ + 174, + 457, + 825, + 625 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Baseline algorithms. The baseline algorithms include state-of-the-art objective and output perturbation algorithms. For objective perturbation, we use Approximate Minima Perturbation (AMP) (Iyengar et al., 2019). For output perturbation, we use the algorithm in Wu et al. (2017) (Output perturbation SGD). We adopt the implementation and hyperparameters in Iyengar et al. (2019) for both algorithms. For multi-class classification tasks, Wu et al. (2017) and Iyengar et al. (2019) divide the privacy budget evenly and train multiple binary classifiers because their algorithms need to compute smooth coefficient before training and therefore are not directly applicable to softmax regression. ", + "bbox": [ + 173, + 631, + 825, + 742 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Experiment results. The validation accuracy results for all evaluated algorithms with $\\epsilon = 0 . 1$ (1.0 for multi-class datasets) are presented in Table 2. We also plot the accuracy results with varying $\\epsilon$ in Figure 3. These results confirm our theory in Section 3: gradient perturbation achieves better performance than other perturbation methods as it leverages the average curvature. ", + "bbox": [ + 174, + 750, + 825, + 819 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 Conclusion ", + "text_level": 1, + "bbox": [ + 174, + 832, + 320, + 848 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this paper, we show the privacy noise actually helps optimization analysis, which can be used to improve the utility guarantee of both DP-GD and DP-SGD. Our result theoretically justifies the empirical superiority of gradient perturbation over other methods and advance the state of the art utility guarantee of DP-ERM algorithms. Experiments on real world datasets corroborate our theoretical findings nicely. In the future, it is interesting to consider how to utilize the expected curvature condition to improve the utility guarantee of other gradient perturbation based algorithms. ", + "bbox": [ + 176, + 857, + 820, + 886 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 172 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 176, + 102, + 290, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and Communications Security, 2016. ", + "bbox": [ + 174, + 125, + 825, + 162 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "John M Abowd. The challenge of scientific reproducibility and privacy protection for statistical agencies. Census Scientific Advisory Committee, 2016. ", + "bbox": [ + 173, + 171, + 820, + 199 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Naman Agarwal, Ananda Theertha Suresh, Felix Xinnan X Yu, Sanjiv Kumar, and Brendan McMahan. cpsgd: Communication-efficient and differentially-private distributed sgd. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 174, + 207, + 823, + 247 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer Science, 2014. ", + "bbox": [ + 176, + 255, + 823, + 295 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kamalika Chaudhuri and Claire Monteleoni. Privacy-preserving logistic regression. In Advances in Neural Information Processing Systems, 2009. ", + "bbox": [ + 173, + 303, + 823, + 330 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk minimization. Journal of Machine Learning Research, 2011. ", + "bbox": [ + 174, + 338, + 823, + 366 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bolin Ding, Janardhan Kulkarni, and Sergey Yekhanin. Collecting telemetry data privately. In Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 176, + 373, + 823, + 400 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, 2006a. ", + "bbox": [ + 178, + 407, + 823, + 449 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of cryptography conference, 2006b. ", + "bbox": [ + 173, + 455, + 821, + 483 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends\rR in Theoretical Computer Science, 2014. ", + "bbox": [ + 174, + 491, + 823, + 518 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Úlfar Erlingsson, Vasyl Pihur, and Aleksandra Korolova. Rappor: Randomized aggregatable privacypreserving ordinal response. In Proceedings of the 2014 ACM SIGSAC conference on computer and communications security, 2014. ", + "bbox": [ + 176, + 526, + 821, + 566 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Vitaly Feldman, Ilya Mironov, Kunal Talwar, and Abhradeep Thakurta. Privacy amplification by iteration. In 2018 IEEE 59th Annual Symposium on Foundations of Computer Science (FOCS), 2018. ", + "bbox": [ + 174, + 574, + 823, + 613 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer and Communications Security, 2015. ", + "bbox": [ + 173, + 622, + 823, + 661 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian Goodfellow. Efficient per-example gradient computations. arXiv preprint arXiv:1510.01799, 2015. ", + "bbox": [ + 171, + 670, + 825, + 696 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, 2017. ", + "bbox": [ + 174, + 705, + 823, + 746 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang. Towards practical differentially private convex optimization. In IEEE Symposium on Security and Privacy, 2019. ", + "bbox": [ + 174, + 753, + 823, + 792 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 174, + 801, + 823, + 842 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and high-dimensional regression. In Conference on Learning Theory, 2012. ", + "bbox": [ + 173, + 849, + 823, + 876 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2018. ", + "bbox": [ + 176, + 885, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Robert McMillan. Apple tries to peek at user habits without violating privacy. The Wall Street Journal, 2016. ", + "bbox": [ + 173, + 104, + 823, + 131 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Mironov. Rényi differential privacy. In IEEE 30th Computer Security Foundations Symposium (CSF), 2017. ", + "bbox": [ + 173, + 138, + 823, + 166 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sahand N Negahban, Pradeep Ravikumar, Martin J Wainwright, Bin Yu, et al. A unified framework for high-dimensional analysis of $m$ -estimators with decomposable regularizers. Statistical Science, 27(4):538–557, 2012. ", + "bbox": [ + 173, + 174, + 823, + 213 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang. Membership inference attack against differentially private deep learning model. Transactions on Data Privacy, 2018. ", + "bbox": [ + 174, + 222, + 823, + 262 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Arun Rajkumar and Shivani Agarwal. A differentially private stochastic gradient descent algorithm for multiparty classification. In Artificial Intelligence and Statistics, 2012. ", + "bbox": [ + 173, + 270, + 821, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ohad Shamir and Tong Zhang. Stochastic gradient descent for non-smooth optimization: Convergence results and optimal averaging schemes. In International Conference on Machine Learning, 2013. ", + "bbox": [ + 176, + 305, + 823, + 333 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017. ", + "bbox": [ + 174, + 340, + 823, + 367 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Adam Smith, Abhradeep Thakurta, and Jalaj Upadhyay. Is interaction necessary for distributed private learning? In IEEE Symposium on Security and Privacy (SP). IEEE, 2017. ", + "bbox": [ + 174, + 376, + 823, + 404 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In Global Conference on Signal and Information Processing (GlobalSIP), 2013 IEEE, 2013. ", + "bbox": [ + 174, + 410, + 823, + 450 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances in Neural Information Processing Systems, 2015. ", + "bbox": [ + 174, + 458, + 821, + 486 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited: Faster and more general. In Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 174, + 493, + 823, + 521 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for sparse learning. In 28th International Joint Conference on Artificial Intelligence, 2019. ", + "bbox": [ + 171, + 529, + 821, + 556 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing model-inversion attacks. In 2016 IEEE 29th Computer Security Foundations Symposium (CSF), 2016. ", + "bbox": [ + 173, + 564, + 825, + 603 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on differential privacy for scalable stochastic gradient descent-based analytics. In ACM International Conference on Management of Data, 2017. ", + "bbox": [ + 174, + 612, + 823, + 651 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiaqi Zhang, Kai Zheng, Wenlong Mou, and Liwei Wang. Efficient private erm for smooth objectives. In International Joint Conference on Artificial Intelligence, 2017. ", + "bbox": [ + 174, + 660, + 825, + 688 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Appendix A Proofs Related to DP-GD and DP-SGD ", + "text_level": 1, + "bbox": [ + 171, + 101, + 707, + 119 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof of Theorem 1. Let $\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { t }$ be the path generated by optimization procedure. Since $\\scriptstyle { \\mathbf { x } } _ { t }$ contains Gaussian perturbation noise ${ z t - 1 }$ , Definition 3 gives us ", + "bbox": [ + 173, + 131, + 823, + 159 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/688b99fd21363ae6156cef5411e6b111e00c53ffef7c34981bcecec66ba79717.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\big ] \\geq \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\big \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\big \\| ^ { 2 } \\big ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 336, + 166, + 660, + 181 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Since $F ^ { \\prime }$ is $\\beta$ -smooth, we have ", + "bbox": [ + 174, + 193, + 372, + 207 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/bac03d2baf19a3359d9c90c53d6a3204549fe8e43b83397a0691dc18b1e6ece0.jpg", + "text": "$$\n\\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\geq \\frac { 1 } { \\beta } \\left\\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\right\\| ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 377, + 214, + 620, + 239 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Take linear combination of above inequalities, ", + "bbox": [ + 174, + 252, + 478, + 267 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/e7a04f051b0448263c12baff5c114411ace49f3ff66eb1100c4e8f4656374b10.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { \\mathbb { E } _ { z _ { t - 1 } } [ \\langle x _ { t } - x _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle ] \\ge \\theta \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] } \\\\ & { } & \\\\ & { } & { \\ge \\theta \\nu \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 272, + 759, + 333 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Let $r _ { t } = \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\|$ be the solution error at step $t$ . We have the following inequalities between $r _ { t + 1 }$ and $r _ { t }$ . ", + "bbox": [ + 169, + 343, + 825, + 372 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/6f4ca0147a4b787a1a9b4d564dc196dc2209d04042e3ad13e7782f9820dd88ab.jpg", + "text": "$$\n\\begin{array} { r l } & { r _ { t + 1 } ^ { 2 } = \\left. x _ { t } - \\eta \\nabla F \\left( { \\pmb x } _ { t } \\right) - \\eta z _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } , } \\\\ & { \\qquad = \\left. { \\pmb x } _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\left. \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } \\right. ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 266, + 386, + 732, + 425 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Take expectation with respect to $\\scriptstyle { \\mathcal { Z } } _ { t }$ , we have ", + "bbox": [ + 176, + 433, + 473, + 446 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/8581607a478b5f2c14be66363e02400b461d9078b797eb81fde6e00816443bf0.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { z _ { t } } [ r _ { t + 1 } ^ { 2 } ] \\le \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 254, + 452, + 743, + 468 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Further take expectation with respect to ${ \\boldsymbol { \\mathbf { \\mathit { z } } } } _ { t - 1 }$ and use Eq 2, we have ", + "bbox": [ + 171, + 479, + 632, + 494 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/01377a5c12682a4008e826abdd4e5dbf1af3a6c2f9de5b51551d62366bc5ff62.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathfrak { L } _ { \\mathfrak { z } _ { t } , \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t + 1 } ^ { 2 } \\big ] \\leq \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| x _ { t } - \\mathfrak { x } _ { * } \\big \\| ^ { 2 } \\big ] - 2 \\eta \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\langle \\nabla F \\left( \\mathfrak { x } _ { t } \\right) , \\mathfrak { x } _ { t } - \\mathfrak { x } _ { * } \\rangle \\big ] + \\eta ^ { 2 } \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } , } \\\\ & { \\qquad \\leq \\left( 1 - 2 \\left( 1 - \\theta \\right) \\eta \\nu \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t } ^ { 2 } \\big ] + \\left( \\eta ^ { 2 } - \\frac { 2 \\eta \\theta } { \\beta } \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 515, + 825, + 570 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Set $\\textstyle \\theta = { \\frac { 1 } { 2 } }$ and $\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}$ , ", + "bbox": [ + 173, + 583, + 318, + 601 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/bd5eb852efaa9068d66d10597762e6add550afd95c642a6343f4be5d030351ec.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } } [ r _ { t + 1 } ^ { 2 } ] \\leq ( 1 - \\eta \\nu ) \\mathbb { E } _ { z _ { t - 1 } } [ r _ { t } ^ { 2 } ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 354, + 601, + 643, + 617 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Applying Eq (6) and taking expectation with respect to $z _ { t } , z _ { t - 1 } , \\cdots , z _ { 1 }$ iteratively yields ", + "bbox": [ + 173, + 627, + 766, + 642 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/33dbda01797ba1b2aab4e2295a71bbd879c88499a8e82a36e700f0b790bc4244.jpg", + "text": "$$\n\\mathbb { E } [ r _ { t + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { t } r _ { 1 } ^ { 2 } + { p \\eta } ^ { 2 } \\sum _ { i = 1 } ^ { t } { ( 1 - \\eta \\nu ) } ^ { t - i } \\sigma _ { i } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 346, + 647, + 653, + 685 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Uniform privacy budget allocation scheme sets ", + "bbox": [ + 174, + 689, + 485, + 704 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/efcc6428eb5a7527e252b6f238e7e5aec5024e220cc5020de8ab0d112b249217.jpg", + "text": "$$\n\\sigma _ { t } ^ { 2 } = \\Theta \\left( \\frac { T L ^ { 2 } \\log ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 415, + 712, + 583, + 739 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Therefore ", + "bbox": [ + 173, + 752, + 240, + 766 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/51dccc64047b5d3e991bdd893227b15a1c040a0afe840cfa036051b5c9008a34.jpg", + "text": "$$\n\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } + \\Theta \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 339, + 762, + 656, + 794 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Set $\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}$ , we have ", + "bbox": [ + 173, + 803, + 339, + 821 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/b9eb9383861501cf79b391dd072d701ab2cbc8273a241e44739e201f534c18c3.jpg", + "text": "$$\n\\begin{array} { c } { \\displaystyle \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } = \\exp \\left( \\frac { \\log \\left( 1 - \\eta \\nu \\right) \\log \\left( n ^ { 2 } \\right) } { \\eta \\nu } \\right) r _ { 1 } ^ { 2 } = \\exp \\left( \\log ( 1 / n ^ { 2 } ) \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) \\right) r _ { 1 } ^ { 2 } , } \\\\ { \\displaystyle \\qquad \\leq \\left( \\frac { 1 } { n ^ { 2 } } \\right) ^ { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) } r _ { 1 } ^ { 2 } < \\frac { r _ { 1 } ^ { 2 } } { n ^ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 214, + 828, + 781, + 897 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Last inequality holds because $\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) > 1 } \\end{array}$ for $\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\geq \\frac { \\beta } { \\nu } \\geq 1 } \\end{array}$ ", + "bbox": [ + 173, + 909, + 620, + 928 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Therefore, for $\\begin{array} { r } { T \\geq \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}$ , we have the excepted solution error $\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ]$ satisfies ", + "bbox": [ + 174, + 102, + 700, + 121 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/780e7e07162e09bd7ac762191e91e0da17e2b3a16ad42884b36f57ebfeaa5871.jpg", + "text": "$$\n\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] = \\mathcal { O } \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 388, + 123, + 609, + 155 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Since $F ( { \\pmb x } )$ is $\\beta$ -smooth, we have ", + "bbox": [ + 173, + 165, + 393, + 179 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/faafdfda2cd41fe91ca14ce476a29f735fc3bff9cd356843ecca49238ad9f7cb.jpg", + "text": "$$\nF ( \\pmb { x } ) - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } - \\pmb { x } _ { \\ast } \\right. ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 181, + 601, + 208 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Using Eq (10) and Eq (11), we have the excepted excess risk satisfies ", + "bbox": [ + 174, + 217, + 632, + 232 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/58c5c81bebf4ad076fc90107a320c09e9ad1a8a55d70088a39023631b44aa2d1.jpg", + "text": "$$\n\\mathbb { E } [ F ( { \\pmb x } _ { T + 1 } ) - F ( { \\pmb x } _ { \\ast } ) ] = { \\mathcal O } \\left( \\frac { \\beta p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 346, + 234, + 651, + 265 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "for $\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}$ . The utility bound is minimized when $\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}$ ", + "bbox": [ + 173, + 268, + 614, + 287 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Theorem $\\mathcal { L }$ . The smooth condition gives us, ", + "bbox": [ + 176, + 300, + 524, + 315 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/11b8ceed167607a9b72a31151039077bbd33bf2e37063f327ea23ca5e9e66b41.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle F ( { \\pmb x } _ { t + 1 } ) \\leq F ( { \\pmb x } _ { t } ) + \\langle \\nabla F ( { \\pmb x } _ { t } ) , { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\rangle + \\displaystyle \\frac { \\beta } { 2 } \\left\\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\right\\| ^ { 2 } } \\\\ { \\displaystyle \\qquad = F ( { \\pmb x } _ { t } ) - \\eta \\langle \\nabla F ( { \\pmb x } _ { t } ) , \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\rangle + \\displaystyle \\frac { \\beta \\eta ^ { 2 } } { 2 } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\right\\| ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 316, + 728, + 376 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Take expectation with respect to $\\scriptstyle { \\mathcal { Z } } _ { t }$ and substitute $\\begin{array} { r } { \\eta = { \\frac { 1 } { \\beta } } } \\end{array}$ ", + "bbox": [ + 173, + 383, + 560, + 398 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b82ed3987b95bf2fdeff6e81e485cbbacad0005a733ee4e36b33094f3e986d83.jpg", + "text": "$$\n\\mathbb { E } _ { z _ { t } } [ F ( { \\pmb x } _ { t + 1 } ) ] = F ( { \\pmb x } _ { t } ) - \\frac { 1 } { 2 \\beta } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) \\right\\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 334, + 404, + 663, + 431 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Subtract $F ( { \\pmb x } _ { * } )$ on both sides and use convexity, ", + "bbox": [ + 173, + 440, + 496, + 455 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/fd3a50ca042fca076dde097664d860468cec694e35eb887356b36352d42bd193.jpg", + "text": "$$\n\\begin{array} { r l } { \\displaystyle \\mathbb { E } _ { z _ { t } } [ F ( { \\boldsymbol x } _ { t + 1 } ) - F ( { \\boldsymbol x } _ { * } ) ] = F ( { \\boldsymbol x } _ { t } ) - F ( { \\boldsymbol x } _ { * } ) - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { \\displaystyle \\le \\langle \\nabla F ( { \\boldsymbol x } _ { t } ) , { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 264, + 458, + 733, + 518 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Substitute $\\nabla F ( { \\pmb x } _ { t } ) = \\beta ( { \\pmb x } _ { t } - { \\pmb x } _ { t + 1 } ) - { \\pmb z } _ { t }$ , ", + "bbox": [ + 174, + 525, + 444, + 540 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/54d9bd79979ce7b108cd31d88f8bdd1546c8488001c245817895f57244ac34a3.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbb { E } _ { \\mathbf { z } _ { t } } [ F ( \\mathbf { x } _ { t + 1 } ) - F ( \\mathbf { x } _ { * } ) ] \\leq \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\mathbb { E } _ { \\mathbf { z } _ { t } } [ \\left. \\beta ( \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } ) - z _ { t } \\right. ^ { 2 } ] + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t + 1 } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t } - \\boldsymbol { \\eta } \\nabla F ( \\mathbf { x } _ { t } ) - \\boldsymbol { \\eta } z _ { t } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { } & { = \\frac { \\beta } { 2 } ( \\Vert \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\Vert ^ { 2 } - \\Vert \\mathbf { x } _ { t + 1 } - \\mathbf { x } _ { * } \\Vert ^ { 2 } ) + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 183, + 542, + 818, + 689 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Summing over $t = 1 , \\ldots , T ^ { \\prime }$ and take expectation with respect to $z _ { 1 } , \\dots , z _ { T }$ , ", + "bbox": [ + 171, + 703, + 678, + 719 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/ff767cbf49f047257c076ba6db88c35fcd57cd67d0f81840e7c1a722ca3b9e4a.jpg", + "text": "$$\n\\sum _ { t = 1 } ^ { T } \\mathbb { E } [ F ( \\pmb { x } _ { t + 1 } ) - F ( \\pmb { x } _ { * } ) ] \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } _ { 1 } - \\pmb { x } _ { * } \\right. ^ { 2 } + \\sum _ { t = 1 } ^ { T } \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 321, + 720, + 674, + 758 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Use convexity, ", + "bbox": [ + 174, + 768, + 269, + 781 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/27cc35a06d047cbee40acecb5614c10cce79d08859d339f902d3b1e1c066f78b.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\mathbb { E } [ F ( \\bar { \\pmb { x } } ) - F ( { \\pmb x } _ { * } ) ] \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma ^ { 2 } } } \\\\ & { } & { \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\Theta ( \\frac { L ^ { 2 } p T \\log ( 1 / \\delta ) } { \\beta n ^ { 2 } \\epsilon ^ { 2 } } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 307, + 780, + 689, + 843 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Choose T = nβ\u000f√ , √p, we have ", + "bbox": [ + 173, + 849, + 346, + 867 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/75f3a78e18dd8f7809c5183e84f8a579ca3cd485e3a7ecc7b53e7bc8aaef19d3.jpg", + "text": "$$\n\\mathbb { E } [ F ( \\bar { \\pmb x } ) - F ( { \\pmb x } _ { \\ast } ) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( 1 / \\delta ) } { n \\epsilon } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 361, + 871, + 637, + 909 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Theorem 3 and 4. We start by giving a useful lemma. ", + "bbox": [ + 174, + 103, + 591, + 119 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Lemma 2. Choose $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}$ , the expected solution error of $_ { x t }$ in Algorithm $\\mathcal { Q }$ for any $t > 1$ satisfies ", + "bbox": [ + 174, + 125, + 825, + 142 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/62fd7b4cd904720cde223992d6ce70ceabebef3bfd98d16d1150a9503647c317.jpg", + "text": "$$\n\\mathbb { E } [ \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\| ^ { 2 } ] \\le \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } ,\n$$", + "text_format": "latex", + "bbox": [ + 392, + 150, + 602, + 178 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Lemma $\\mathcal { Z }$ . We have ", + "bbox": [ + 176, + 193, + 364, + 207 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/49d61634e94fbe2dd4df230c8c2369211532801d26908cc09cf7cbb0e3ffc1f9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| x _ { t + 1 } - x _ { * } \\| ^ { 2 } = \\| x _ { t } - \\eta _ { t } g _ { t } - \\eta _ { t } z _ { t } - x _ { * } \\| ^ { 2 } } \\\\ & { \\qquad = \\| x _ { t } - x _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle x _ { t } - x _ { * } , g _ { t } + z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| g _ { t } \\right\\| ^ { 2 } - 2 \\eta _ { t } ^ { 2 } \\langle g _ { t } , z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| z _ { t } \\right\\| ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 199, + 213, + 772, + 252 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Take expectation with respect to perturbation noise $\\scriptstyle { \\mathcal { Z } } _ { t }$ and uniform sampling, we have ", + "bbox": [ + 169, + 263, + 751, + 280 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2c79e2153939e847ec61f57d5b08a5540c77d33176f28ea0719250597f216a95.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t } - \\eta _ { t } { \\boldsymbol g } _ { t } - \\eta _ { t } z _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\qquad \\le \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } , \\nabla F ( { \\boldsymbol x } _ { t } ) \\rangle + \\eta _ { t } ^ { 2 } L ^ { 2 } + p \\eta _ { t } ^ { 2 } L ^ { 2 } \\sigma ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 285, + 758, + 325 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Further take expectation to ${ \\boldsymbol { z } } _ { t - 1 }$ and apply Definition 3, ", + "bbox": [ + 173, + 335, + 549, + 352 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d1e222e003cc3cbb131763dd751a702d6f124e00f7468f15a7f32dd6032699d2.jpg", + "text": "$$\n\\begin{array} { r } { \\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] \\leq \\left( 1 - 2 \\nu _ { t } \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } \\\\ { \\leq \\left( 1 - 2 \\nu \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) . } \\end{array} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 251, + 366, + 746, + 406 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Now we use induction to conduct the proof. Substitute $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}$ into Eq 21, we have Lemma 2 hold for $t = 2$ . ", + "bbox": [ + 173, + 415, + 823, + 444 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Assume $\\begin{array} { r } { \\mathbb { E } [ \\left\\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\right\\| ^ { 2 } ] \\leq \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } } \\end{array}$ holds for $t > 2$ , then ", + "bbox": [ + 173, + 445, + 555, + 469 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/9a2fddc376400476966ea5ed4d2365233ff97fb84ee8587812a86ee6bd5291b4.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\mathbb { E } [ \\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { * } \\| ^ { 2 } ] \\leq ( 1 - \\frac { 2 } { t } ) \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } } \\\\ & { } & { \\leq ( \\frac { 1 } { t } - \\frac { 2 } { t ^ { 2 } } ) \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } \\\\ & { } & { = ( \\frac { 2 } { t } - \\frac { 3 } { t ^ { 2 } } ) \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } \\leq \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { ( t + 1 ) \\nu ^ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 295, + 477, + 702, + 579 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "It’s easy to check that Eq 20 holds for arbitrary $\\textbf { \\em x }$ rather than $^ { x \\ast }$ . Rearrange Eq 20 and take expectation, we have ", + "bbox": [ + 171, + 619, + 823, + 647 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/342d27ed7d53adbf1b4ba801946fec21595a4f46fb29b2d07605192cda20978e.jpg", + "text": "$$\n\\mathbb { E } [ \\langle x _ { t } - x , \\nabla F \\left( x _ { t } \\right) \\rangle ] \\leq \\frac { \\mathbb { E } [ \\Vert x _ { t } - x \\Vert ^ { 2 } ] - \\mathbb { E } [ \\Vert x _ { t + 1 } - x \\Vert ^ { 2 } ] } { 2 \\eta _ { t } } + \\frac { \\eta _ { t } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 256, + 654, + 741, + 685 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Let $k$ be arbitrarily chosen from $\\{ 1 , \\ldots , \\lfloor { T / 2 } \\rfloor \\}$ . Summing over the last $k + 1$ iterations and use convexity to lower bound $\\langle { \\pmb x } _ { t } - { \\pmb x } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle$ by $F \\left( { \\pmb x } _ { t } \\right) - F \\left( { \\pmb x } \\right)$ , ", + "bbox": [ + 173, + 699, + 826, + 728 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/7a419174cd48ec2dc2c8d5a6aa9ce0da72cb44d960d9a8e44045e5e7a43d7e43.jpg", + "text": "$$\n\\begin{array} { r l } { \\displaystyle \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F ( { \\pmb x } _ { t } ) - F ( { \\pmb x } ) ] \\leq \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T - k } } + \\frac { 1 } { 2 } \\displaystyle \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } \\| ^ { 2 } ] \\left( \\frac { 1 } { n _ { t } } - \\frac { 1 } { n _ { t - 1 } } \\right) } & { } \\\\ { - \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T + 1 } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T } } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = T - k } ^ { T } \\eta _ { t } . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 207, + 743, + 761, + 825 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Substitute $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}$ and follow the idea in Shamir & Zhang (2013) by choosing ${ \\pmb x } = { \\pmb x } _ { T - k }$ , we arrive at ", + "bbox": [ + 171, + 835, + 825, + 864 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/a46c30ac6682a066434527727e111021442d3fa500df199324c2b929a6da6e01.jpg", + "text": "$$\n\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { \\nu } { 2 } \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ] + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .\n$$", + "text_format": "latex", + "bbox": [ + 202, + 888, + 751, + 928 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Now we bound $\\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ]$ for $t \\geq T ^ { \\prime } - k$ , ", + "bbox": [ + 174, + 103, + 485, + 119 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e81ce198a7982f5e0291ed37d1057160e75c4443642ac99bdff8c61e9b1f3e6a.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { T - k } \\| ^ { 2 } ] \\le 2 \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + 2 \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { t } + \\frac { 1 } { T - k } \\right) \\le \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { T - k } \\right) } \\\\ & { \\le \\frac { 1 6 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu ^ { 2 } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 245, + 133, + 750, + 222 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Substitute Eq 26 into Eq 25, ", + "bbox": [ + 174, + 229, + 366, + 244 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/c81613b561c134e4a99c0cd1d3488659e55166fed5fc049a9ec9413aac2f85b7.jpg", + "text": "$$\n\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { 8 k L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .\n$$", + "text_format": "latex", + "bbox": [ + 254, + 252, + 725, + 291 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Let $\\begin{array} { r } { S _ { k } = \\frac { 1 } { k + 1 } \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) ] } \\end{array}$ be the averaged expected values of the last $k + 1$ iterations. We are interested in $S _ { 0 } - F \\left( { \\pmb x } _ { * } \\right) = \\mathbb { E } [ F \\left( { \\pmb x } _ { T } \\right) ] - F \\left( { \\pmb x } _ { * } \\right)$ . Now we derive an inequality between $S _ { k }$ and $S _ { k - 1 }$ . By definition, ", + "bbox": [ + 174, + 309, + 825, + 352 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/cb32f5238a573011caa469863dddb3d0e508b607a48f5d8b8eba1292432c5430.jpg", + "text": "$$\nk S _ { k - 1 } = \\left( k + 1 \\right) S _ { k } - \\mathbb { E } [ \\mathbf { x } _ { T - k } ] .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 372, + 601, + 386 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Rearrange Eq 27 to upper bound $- \\mathbb { E } [ { \\pmb x } _ { T - k } ]$ , ", + "bbox": [ + 174, + 398, + 470, + 414 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/6087d0c1aba497d2c4e3ad6374fb1032bbaeee9bc1ab83bb4b6ce914460c1961.jpg", + "text": "$$\n\\begin{array} { l } { S _ { k - 1 } = \\displaystyle \\frac { k + 1 } { k } S _ { k } - \\frac { \\mathbb { E } \\left[ { \\pmb x } _ { T - k } \\right] } { k } } \\\\ { \\leq \\frac { k + 1 } { k } S _ { k } - \\frac { S _ { k } } { k } + \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\left( k + 1 \\right) T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 k \\left( k + 1 \\right) \\nu } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } } \\\\ { \\leq S _ { k } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\frac { 1 6 } { k T } + \\frac { 1 } { k \\left( k + 1 \\right) } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 287, + 421, + 709, + 534 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Summing over $k = 1 , \\dots , k = \\lfloor T / 2 \\rfloor$ , ", + "bbox": [ + 173, + 546, + 416, + 561 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/2697c05a36ae554465d85434aa15dfdc4375996ae63685c141264dc15865d0c0.jpg", + "text": "$$\nS _ { 0 } \\leq S _ { \\lfloor T / 2 \\rfloor } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } + \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k \\left( k + 1 \\right) t } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 279, + 569, + 720, + 613 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Now we bound $S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { * } )$ . Choose ${ \\boldsymbol { \\mathbf { \\mathit { x } } } } = { \\boldsymbol { \\mathbf { \\mathit { x } } } } _ { \\ast }$ and $\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}$ in Eq 24 , ", + "bbox": [ + 174, + 621, + 643, + 638 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/1988fd257ef61726df0a46162afa5786c92b8a3321f6429258c03824a6285cc7.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\mathbb { E } [ F ( { \\mathbf x } _ { t } ) - F ( { \\mathbf x } _ { * } ) ] = \\frac { \\nu \\left[ T / 2 \\right] \\mathbb { E } [ \\left. { \\mathbf x } _ { \\lfloor T / 2 \\rfloor } - \\alpha _ { * } \\right. ^ { 2 } ] } { 2 } + \\frac { \\nu } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\mathbb { E } [ \\left. { \\mathbf x } _ { t } - { \\mathbf x } _ { * } \\right. ^ { 2 } ] } \\\\ & { \\qquad + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\frac { \\nu } { 2 } } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } + \\sum _ { t = \\lceil T / 2 \\rfloor } ^ { T } \\frac { 1 } { 2 t } ) } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\frac { 3 } { 2 } \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } ) } \\\\ & { \\qquad \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 209, + 647, + 761, + 845 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The second inequality uses Lemma 2. The last inequality holds because the fact that $\\scriptstyle \\sum _ { t = \\lceil T / 2 \\rceil } ^ { T ^ { \\prime } } { \\frac { 1 } { t } } \\leq$ $\\log ( 2 )$ . Dividing Eq 31 by $\\lceil T / 2 \\rceil$ , ", + "bbox": [ + 173, + 861, + 825, + 892 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/4a883614a8732b4d08234f9a70aea343018b05953b8fa6edaa79fd5120844f56.jpg", + "text": "$$\nS _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { 8 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { T \\nu } .\n$$", + "text_format": "latex", + "bbox": [ + 390, + 900, + 607, + 928 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We have $\\begin{array} { r } { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } \\leq \\frac { 1 6 ( 1 + l o g ( T ) ) } { T } } \\end{array}$ 16(1+log(T )) because it is harmonic sequence. Lastly, ", + "bbox": [ + 173, + 101, + 671, + 121 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/4890fea1143b7e089b5fda447be7ecee8cc62a3fcc9c52c3f79d381110a82138.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k ( k + 1 ) t } \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ( k + 1 ) } } } \\\\ & { } & { \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ^ { 2 } } \\le 2 \\log ( 2 ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 128, + 658, + 212 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Plugging these bounds into Eq 30, we have ", + "bbox": [ + 174, + 223, + 460, + 237 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/1093be6f296728f7f92dab268b90d2490a48cb4561a9b651eb6a6b78db213432.jpg", + "text": "$$\nS _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { ( 1 + p \\sigma ^ { 2 } ) L ^ { 2 } \\log ( T ) } { T \\nu } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 364, + 243, + 633, + 275 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Choose $\\begin{array} { r } { \\sigma ^ { 2 } = \\Theta \\left( \\frac { T l o g ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}$ to guarantee $( \\epsilon , \\delta )$ -DP. Set $T = n ^ { 2 } \\epsilon ^ { 2 }$ , we have ", + "bbox": [ + 174, + 290, + 660, + 311 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/dfd3f727274a4741e8f46547740851e7ccd73bd526aabe9f93c1681287de3331.jpg", + "text": "$$\nS _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log ( n ) l o g \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 364, + 319, + 633, + 351 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Set $\\begin{array} { r } { T = \\frac { \\pi \\epsilon } { \\sqrt { p } } } \\end{array}$ and assume $p < n ^ { 2 }$ , we have ", + "bbox": [ + 174, + 364, + 446, + 382 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/9bf0c6751264664d012a02c9b4365fec62334adb3766188950a131d1a22986c7.jpg", + "text": "$$\nS _ { 0 } - F ( \\pmb { x } _ { * } ) = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 385, + 390, + 612, + 429 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Appendix B Detailed description on benchmark datasets ", + "text_level": 1, + "bbox": [ + 171, + 474, + 761, + 491 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/99af7eec82048277c6362daad24c1d40d2a3e31bcb3a4c553a8302479ce4a282.jpg", + "table_caption": [ + "Table 3: Detailed description of seven real world datasets. " + ], + "table_footnote": [], + "table_body": "
datasetAdultKDDCup99MNISTCovertypeGisetteReal-simRCV1
#records45220700006500058101260007230950000
#features1041147845450002095847236
#classes22107222
", + "bbox": [ + 245, + 534, + 753, + 590 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Appendix C Comparison between Average and Minimum Curvatures on Different dataset ", + "text_level": 1, + "bbox": [ + 173, + 619, + 743, + 654 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In this section we plot the average and minimum curvatures in Figure 4 for another dataset KDDCup99. The objective function is still regularized logistic regression. ", + "bbox": [ + 173, + 666, + 821, + 693 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "As shown in Figure 4, the average curvature is still larger than the minimum curvature (especially when the regularization term is small). Despite this, the average curvature of KDDCup99 is smaller than Adult, this may be the reason why the improvement in Section 4 is larger for the Adult dataset. ", + "bbox": [ + 174, + 700, + 825, + 739 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/0f4f1dea782d3768ecb6ec38776f4982c99b6bd47380ccd10785b971e2967067.jpg", + "image_caption": [ + "Figure 4: Curvatures of regularized logistic regression on KDDCup99 dataset over training. Dot symbol represents average curvature and cross symbol represents minimum curvature. " + ], + "image_footnote": [], + "bbox": [ + 339, + 400, + 656, + 580 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/rJgVwTVtvS/rJgVwTVtvS_middle.json b/parse/train/rJgVwTVtvS/rJgVwTVtvS_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..9784038a258f1a43b7bc68b220a3f1151cd73ab1 --- /dev/null +++ b/parse/train/rJgVwTVtvS/rJgVwTVtvS_middle.json @@ -0,0 +1,45887 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "Gradient Perturbation is Underrated for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 503, + 118 + ], + "score": 1.0, + "content": "Differentially Private Convex Optimization", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 256, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 215, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 215, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 257, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 257, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 277, + 186, + 334, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 336, + 199 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 336, + 199 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 214, + 469, + 379 + ], + "lines": [ + { + "bbox": [ + 141, + 213, + 470, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 470, + 228 + ], + "score": 1.0, + "content": "Gradient perturbation, widely used for differentially private optimization,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 225, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 470, + 239 + ], + "score": 1.0, + "content": "injects noise at every iterative update to guarantee differential privacy.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 235, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 140, + 235, + 470, + 250 + ], + "score": 1.0, + "content": "Previous work first determines the noise level that can satisfy the privacy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 247, + 469, + 260 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 469, + 260 + ], + "score": 1.0, + "content": "requirement and then analyzes the utility of noisy gradient updates as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 258, + 470, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 470, + 271 + ], + "score": 1.0, + "content": "non-private case. In this paper, we explore how the privacy noise affects the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "score": 1.0, + "content": "optimization property. We show that for differentially private convex opti-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "score": 1.0, + "content": "mization, the utility guarantee of both DP-GD and DP-SGD is determined", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 470, + 304 + ], + "score": 1.0, + "content": "by an expected curvature rather than the minimum curvature. The expected", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "curvature represents the average curvature over the optimization path, which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "is usually much larger than the minimum curvature and hence can help us", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "achieve a significantly improved utility guarantee. By using the expected", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 335, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 142, + 335, + 469, + 347 + ], + "score": 1.0, + "content": "curvature, our theory justifies the advantage of gradient perturbation over", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 347, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 142, + 347, + 470, + 358 + ], + "score": 1.0, + "content": "other perturbation methods and closes the gap between theory and practice.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "Extensive experiments on real world datasets corroborate our theoretical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 182, + 382 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 182, + 382 + ], + "score": 1.0, + "content": "findings.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 208, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 210, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 210, + 423 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 449 + ], + "score": 1.0, + "content": "Machine learning has become a powerful tool for many practical applications. The training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 445, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 459 + ], + "score": 1.0, + "content": "process often needs access to some private dataset, e.g., applications in financial and medical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "fields. Recent work has shown that the model learned from training data may leak unintended", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "information of individual records (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "Hitaj et al., 2017). It is known that Differential privacy (DP) (Dwork et al., 2006a;b) is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "golden standard for privacy preserving data analysis. It provides provable privacy guarantee", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "by ensuring the influence of any individual record is negligible. It has been deployed into real", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "world applications by large-scale corporations and U.S. Census Bureau (Erlingsson et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 522, + 350, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 350, + 535 + ], + "score": 1.0, + "content": "2014; McMillan, 2016; Abowd, 2016; Ding et al., 2017).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "We study the fundamental problem when differential privacy meets machine learning: the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "score": 1.0, + "content": "differentially private empirical risk minimization (DP-ERM) problem (Chaudhuri & Mon-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "teleoni, 2009; Chaudhuri et al., 2011; Kifer et al., 2012; Bassily et al., 2014; Talwar et al., 2015;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Wu et al., 2017; Zhang et al., 2017; Wang et al., 2017; Smith et al., 2017; Jayaraman et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "2018; Feldman et al., 2018; Iyengar et al., 2019; Wang & Gu, 2019). DP-ERM minimizes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 504, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 504, + 606 + ], + "score": 1.0, + "content": "the empirical risk while guaranteeing that the output of learning algorithm is differentially", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "private with respect to the training data. Such privacy guarantee provides strong protection", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "against potential adversaries (Hitaj et al., 2017; Rahman et al., 2018). In order to guarantee", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "privacy, it is necessary to introduce randomness to the algorithm. There are usually three", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "ways to introduce randomness according to the time of adding noise: output perturbation,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 648, + 318, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 318, + 662 + ], + "score": 1.0, + "content": "objective perturbation and gradient perturbation.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 504, + 677 + ], + "score": 1.0, + "content": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) first runs the learning algorithm", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the same as in the non-private case then adds noise to the output parameter. Objective", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "objective (i.e., the empirical loss) then release the minimizer of the perturbed objective.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Gradient perturbation (Song et al., 2013; Bassily et al., 2014; Abadi et al., 2016; Wang et al.,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "2017; Lee & Kifer, 2018; Jayaraman et al., 2018) perturbs each intermediate update. If each", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 763 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "Gradient Perturbation is Underrated for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 503, + 118 + ], + "score": 1.0, + "content": "Differentially Private Convex Optimization", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 256, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 215, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 215, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 257, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 257, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 111, + 135, + 257, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 277, + 186, + 334, + 199 + ], + "lines": [ + { + "bbox": [ + 276, + 186, + 336, + 199 + ], + "spans": [ + { + "bbox": [ + 276, + 186, + 336, + 199 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 214, + 469, + 379 + ], + "lines": [ + { + "bbox": [ + 141, + 213, + 470, + 228 + ], + "spans": [ + { + "bbox": [ + 141, + 213, + 470, + 228 + ], + "score": 1.0, + "content": "Gradient perturbation, widely used for differentially private optimization,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 225, + 470, + 239 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 470, + 239 + ], + "score": 1.0, + "content": "injects noise at every iterative update to guarantee differential privacy.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 140, + 235, + 470, + 250 + ], + "spans": [ + { + "bbox": [ + 140, + 235, + 470, + 250 + ], + "score": 1.0, + "content": "Previous work first determines the noise level that can satisfy the privacy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 247, + 469, + 260 + ], + "spans": [ + { + "bbox": [ + 141, + 247, + 469, + 260 + ], + "score": 1.0, + "content": "requirement and then analyzes the utility of noisy gradient updates as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 258, + 470, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 258, + 470, + 271 + ], + "score": 1.0, + "content": "non-private case. In this paper, we explore how the privacy noise affects the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 470, + 281 + ], + "score": 1.0, + "content": "optimization property. We show that for differentially private convex opti-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 291 + ], + "score": 1.0, + "content": "mization, the utility guarantee of both DP-GD and DP-SGD is determined", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 470, + 304 + ], + "score": 1.0, + "content": "by an expected curvature rather than the minimum curvature. The expected", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 469, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 469, + 315 + ], + "score": 1.0, + "content": "curvature represents the average curvature over the optimization path, which", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 469, + 325 + ], + "score": 1.0, + "content": "is usually much larger than the minimum curvature and hence can help us", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "achieve a significantly improved utility guarantee. By using the expected", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 335, + 469, + 347 + ], + "spans": [ + { + "bbox": [ + 142, + 335, + 469, + 347 + ], + "score": 1.0, + "content": "curvature, our theory justifies the advantage of gradient perturbation over", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 347, + 470, + 358 + ], + "spans": [ + { + "bbox": [ + 142, + 347, + 470, + 358 + ], + "score": 1.0, + "content": "other perturbation methods and closes the gap between theory and practice.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "spans": [ + { + "bbox": [ + 141, + 356, + 470, + 369 + ], + "score": 1.0, + "content": "Extensive experiments on real world datasets corroborate our theoretical", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 366, + 182, + 382 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 182, + 382 + ], + "score": 1.0, + "content": "findings.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 140, + 213, + 470, + 382 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 407, + 208, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 210, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 210, + 423 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 449 + ], + "score": 1.0, + "content": "Machine learning has become a powerful tool for many practical applications. The training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 445, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 459 + ], + "score": 1.0, + "content": "process often needs access to some private dataset, e.g., applications in financial and medical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "fields. Recent work has shown that the model learned from training data may leak unintended", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "information of individual records (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 492 + ], + "score": 1.0, + "content": "Hitaj et al., 2017). It is known that Differential privacy (DP) (Dwork et al., 2006a;b) is a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "golden standard for privacy preserving data analysis. It provides provable privacy guarantee", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "by ensuring the influence of any individual record is negligible. It has been deployed into real", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "world applications by large-scale corporations and U.S. Census Bureau (Erlingsson et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 522, + 350, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 350, + 535 + ], + "score": 1.0, + "content": "2014; McMillan, 2016; Abowd, 2016; Ding et al., 2017).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 433, + 506, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "We study the fundamental problem when differential privacy meets machine learning: the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 562 + ], + "score": 1.0, + "content": "differentially private empirical risk minimization (DP-ERM) problem (Chaudhuri & Mon-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "teleoni, 2009; Chaudhuri et al., 2011; Kifer et al., 2012; Bassily et al., 2014; Talwar et al., 2015;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "Wu et al., 2017; Zhang et al., 2017; Wang et al., 2017; Smith et al., 2017; Jayaraman et al.,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "2018; Feldman et al., 2018; Iyengar et al., 2019; Wang & Gu, 2019). DP-ERM minimizes", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 504, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 504, + 606 + ], + "score": 1.0, + "content": "the empirical risk while guaranteeing that the output of learning algorithm is differentially", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "private with respect to the training data. Such privacy guarantee provides strong protection", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "against potential adversaries (Hitaj et al., 2017; Rahman et al., 2018). In order to guarantee", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "privacy, it is necessary to introduce randomness to the algorithm. There are usually three", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "ways to introduce randomness according to the time of adding noise: output perturbation,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 648, + 318, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 318, + 662 + ], + "score": 1.0, + "content": "objective perturbation and gradient perturbation.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 538, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 504, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 504, + 677 + ], + "score": 1.0, + "content": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) first runs the learning algorithm", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "the same as in the non-private case then adds noise to the output parameter. Objective", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "objective (i.e., the empirical loss) then release the minimizer of the perturbed objective.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Gradient perturbation (Song et al., 2013; Bassily et al., 2014; Abadi et al., 2016; Wang et al.,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "2017; Lee & Kifer, 2018; Jayaraman et al., 2018) perturbs each intermediate update. If each", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "update is differentially private, the composition theorem of differential privacy ensures the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 321, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 321, + 105 + ], + "score": 1.0, + "content": "whole learning procedure is differentially private.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "update is differentially private, the composition theorem of differential privacy ensures the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 321, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 321, + 105 + ], + "score": 1.0, + "content": "whole learning procedure is differentially private.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 507, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 507, + 123 + ], + "score": 1.0, + "content": "Gradient perturbation comes with several advantages over output/objective perturbations.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Firstly, gradient perturbation does not require strong assumption on the objective because it", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "only needs to bound the sensitivity of gradient update rather than the whole learning process.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Secondly, gradient perturbation can release the noisy gradient at each iteration without", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "damaging the privacy guarantee as differential privacy is immune to post processing (Dwork", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "et al., 2014). Thus, it is a more favorable choice for certain applications such as distributed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "optimization (Rajkumar & Agarwal, 2012; Agarwal et al., 2018; Jayaraman et al., 2018).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "At last, gradient perturbation often achieves better empirical utility than output/objective", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 229, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 229, + 209 + ], + "score": 1.0, + "content": "perturbations for DP-ERM.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "However, the existing theoretical utility guarantee for gradient perturbation is the same as or", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 237 + ], + "score": 1.0, + "content": "strictly inferior to that of other perturbation methods as shown in Table 1. This motivates", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 149, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 149, + 248 + ], + "score": 1.0, + "content": "us to ask", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 253, + 503, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "“What is wrong with the theory for gradient perturbation? Can we justify the empirical", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 327, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 327, + 277 + ], + "score": 1.0, + "content": "advantage of gradient perturbation theoretically?”", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "We revisit the analysis for gradient perturbation approach. Previous work (Bassily et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "2014; Wang et al., 2017; Jayaraman et al., 2018) derive the utility guarantee of gradient", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "perturbation via two steps. They first determine the noise variance at each step that meets", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "the privacy requirement and then derive the utility guarantee by using the convergence", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "analysis the same as in non-private case. However, the noise to guarantee privacy naturally", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "affects the optimization procedure, but previous approach does not exploit the interaction", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 347, + 393, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 393, + 361 + ], + "score": 1.0, + "content": "between privacy noise and optimization of gradient perturbation.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 108, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 377 + ], + "score": 1.0, + "content": "In this paper, we utilize the fact the privacy noise affects the optimization procedure and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "establish new and much tighter utility guarantees for gradient perturbation approaches. Our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 386, + 297, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 297, + 398 + ], + "score": 1.0, + "content": "contribution can be summarized as follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 132, + 410, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 132, + 409, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 132, + 409, + 504, + 423 + ], + "score": 1.0, + "content": "• We introduce an expected curvature that can characterize the optimization property", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 421, + 444, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 444, + 434 + ], + "score": 1.0, + "content": "accurately when there is perturbation noise at each gradient update.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 132, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 132, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "• We establish the utility guarantees for DP-GD for both convex and strongly convex", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 142, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "objectives based on the expected curvature rather than the usual minimum curvature.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 132, + 466, + 504, + 479 + ], + "spans": [ + { + "bbox": [ + 132, + 466, + 504, + 479 + ], + "score": 1.0, + "content": "• We also establish the the utility guarantees for DP-SGD for both convex and strongly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 140, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 140, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "convex objectives based on the expected curvature. To the best of our knowledge,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 141, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "this is the first work to remove the dependency on minimum curvature for DP-ERM", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 500, + 194, + 512 + ], + "spans": [ + { + "bbox": [ + 142, + 500, + 194, + 512 + ], + "score": 1.0, + "content": "algorithms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "In DP-ERM literature, there is a gap between the utility guarantee of non-strongly convex", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "objectives and that of strongly convex objectives. However, by using the expected curvature,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "we show that some of the non-strongly convex objectives can achieve the same order of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "utility guarantee as the strongly convex objectives, matching the empirical observation. This", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "is because the expected curvature could be relatively large even for non-strongly convex", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 578, + 155, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 155, + 591 + ], + "score": 1.0, + "content": "objectives.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "As we mentioned earlier, prior to our work, there is a mismatch between theoretical guar-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "antee and empirical observation of gradient perturbation approach compared with other", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "two perturbation approaches. Our result theoretically justifies the advantage of gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 628, + 272, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 272, + 639 + ], + "score": 1.0, + "content": "perturbation and close the mismatch.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "title", + "bbox": [ + 108, + 655, + 234, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 235, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 235, + 668 + ], + "score": 1.0, + "content": "1.1 Paper Organization", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 676, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "The rest of this paper is organized as follows. Section 2 introduces notations and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "DP-ERM task. In Sections 3, we first introduce the expected curvature and establish the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "utility guarantee of both DP-GD and DP-SGD based on such expected curvature. Then we", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "give some discussion on three perturbation approaches. We conduct extensive experiments", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 312, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 312, + 732 + ], + "score": 1.0, + "content": "in Section 4. Finally, we conclude in Section 5.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 507, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 507, + 123 + ], + "score": 1.0, + "content": "Gradient perturbation comes with several advantages over output/objective perturbations.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "Firstly, gradient perturbation does not require strong assumption on the objective because it", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "only needs to bound the sensitivity of gradient update rather than the whole learning process.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "Secondly, gradient perturbation can release the noisy gradient at each iteration without", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "damaging the privacy guarantee as differential privacy is immune to post processing (Dwork", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "et al., 2014). Thus, it is a more favorable choice for certain applications such as distributed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "optimization (Rajkumar & Agarwal, 2012; Agarwal et al., 2018; Jayaraman et al., 2018).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "At last, gradient perturbation often achieves better empirical utility than output/objective", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 229, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 229, + 209 + ], + "score": 1.0, + "content": "perturbations for DP-ERM.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 110, + 507, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 505, + 248 + ], + "lines": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "However, the existing theoretical utility guarantee for gradient perturbation is the same as or", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 227, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 237 + ], + "score": 1.0, + "content": "strictly inferior to that of other perturbation methods as shown in Table 1. This motivates", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 237, + 149, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 149, + 248 + ], + "score": 1.0, + "content": "us to ask", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 215, + 505, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 253, + 503, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 267 + ], + "score": 1.0, + "content": "“What is wrong with the theory for gradient perturbation? Can we justify the empirical", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 264, + 327, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 327, + 277 + ], + "score": 1.0, + "content": "advantage of gradient perturbation theoretically?”", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 252, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 282, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "We revisit the analysis for gradient perturbation approach. Previous work (Bassily et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 293, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 305 + ], + "score": 1.0, + "content": "2014; Wang et al., 2017; Jayaraman et al., 2018) derive the utility guarantee of gradient", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "perturbation via two steps. They first determine the noise variance at each step that meets", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "the privacy requirement and then derive the utility guarantee by using the convergence", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 505, + 338 + ], + "score": 1.0, + "content": "analysis the same as in non-private case. However, the noise to guarantee privacy naturally", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 504, + 349 + ], + "score": 1.0, + "content": "affects the optimization procedure, but previous approach does not exploit the interaction", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 347, + 393, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 393, + 361 + ], + "score": 1.0, + "content": "between privacy noise and optimization of gradient perturbation.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 281, + 506, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 377 + ], + "score": 1.0, + "content": "In this paper, we utilize the fact the privacy noise affects the optimization procedure and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "establish new and much tighter utility guarantees for gradient perturbation approaches. Our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 386, + 297, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 297, + 398 + ], + "score": 1.0, + "content": "contribution can be summarized as follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 363, + 505, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 410, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 132, + 409, + 504, + 423 + ], + "spans": [ + { + "bbox": [ + 132, + 409, + 504, + 423 + ], + "score": 1.0, + "content": "• We introduce an expected curvature that can characterize the optimization property", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 421, + 444, + 434 + ], + "spans": [ + { + "bbox": [ + 141, + 421, + 444, + 434 + ], + "score": 1.0, + "content": "accurately when there is perturbation noise at each gradient update.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 132, + 437, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 132, + 437, + 506, + 452 + ], + "score": 1.0, + "content": "• We establish the utility guarantees for DP-GD for both convex and strongly convex", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 142, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 142, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "objectives based on the expected curvature rather than the usual minimum curvature.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 132, + 466, + 504, + 479 + ], + "spans": [ + { + "bbox": [ + 132, + 466, + 504, + 479 + ], + "score": 1.0, + "content": "• We also establish the the utility guarantees for DP-SGD for both convex and strongly", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 140, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 140, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "convex objectives based on the expected curvature. To the best of our knowledge,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 141, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "this is the first work to remove the dependency on minimum curvature for DP-ERM", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 500, + 194, + 512 + ], + "spans": [ + { + "bbox": [ + 142, + 500, + 194, + 512 + ], + "score": 1.0, + "content": "algorithms.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5, + "bbox_fs": [ + 132, + 409, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "In DP-ERM literature, there is a gap between the utility guarantee of non-strongly convex", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "objectives and that of strongly convex objectives. However, by using the expected curvature,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "we show that some of the non-strongly convex objectives can achieve the same order of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "utility guarantee as the strongly convex objectives, matching the empirical observation. This", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 580 + ], + "score": 1.0, + "content": "is because the expected curvature could be relatively large even for non-strongly convex", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 578, + 155, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 155, + 591 + ], + "score": 1.0, + "content": "objectives.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 523, + 506, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 505, + 639 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "As we mentioned earlier, prior to our work, there is a mismatch between theoretical guar-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 619 + ], + "score": 1.0, + "content": "antee and empirical observation of gradient perturbation approach compared with other", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "two perturbation approaches. Our result theoretically justifies the advantage of gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 628, + 272, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 272, + 639 + ], + "score": 1.0, + "content": "perturbation and close the mismatch.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 594, + 506, + 639 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 655, + 234, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 235, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 235, + 668 + ], + "score": 1.0, + "content": "1.1 Paper Organization", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 108, + 676, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "The rest of this paper is organized as follows. Section 2 introduces notations and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "DP-ERM task. In Sections 3, we first introduce the expected curvature and establish the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "utility guarantee of both DP-GD and DP-SGD based on such expected curvature. Then we", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "give some discussion on three perturbation approaches. We conduct extensive experiments", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 312, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 312, + 732 + ], + "score": 1.0, + "content": "in Section 4. Finally, we conclude in Section 5.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 677, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 158, + 527, + 286 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 116, + 93, + 518, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 93, + 517, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 367, + 106 + ], + "score": 1.0, + "content": "Table 1: Expected excess empirical risk bounds under", + "type": "text" + }, + { + "bbox": [ + 367, + 95, + 389, + 106 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 93, + 442, + 106 + ], + "score": 1.0, + "content": "-DP, where", + "type": "text" + }, + { + "bbox": [ + 443, + 99, + 449, + 103 + ], + "score": 0.9, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 93, + 473, + 106 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 99, + 479, + 105 + ], + "score": 0.91, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 93, + 517, + 106 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 104, + 517, + 118 + ], + "spans": [ + { + "bbox": [ + 117, + 104, + 431, + 118 + ], + "score": 1.0, + "content": "number of samples and the number of parameters, respectively, and", + "type": "text" + }, + { + "bbox": [ + 431, + 107, + 448, + 117 + ], + "score": 0.93, + "content": "\\beta , \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 104, + 473, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 110, + 479, + 114 + ], + "score": 0.88, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 104, + 517, + 118 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 114, + 517, + 129 + ], + "spans": [ + { + "bbox": [ + 116, + 114, + 517, + 129 + ], + "score": 1.0, + "content": "smooth coefficient, the strongly convex coefficient and the expected curvature, respectively,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 125, + 517, + 140 + ], + "spans": [ + { + "bbox": [ + 116, + 125, + 137, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 162, + 138 + ], + "score": 0.92, + "content": "\\nu \\geq \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 125, + 302, + 140 + ], + "score": 1.0, + "content": "(see Section 3.1). We note that", + "type": "text" + }, + { + "bbox": [ + 302, + 129, + 326, + 138 + ], + "score": 0.92, + "content": "\\mu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 125, + 517, + 140 + ], + "score": 1.0, + "content": "denotes the convex but not strongly convex", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 137, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 117, + 137, + 267, + 151 + ], + "score": 1.0, + "content": "objective. The Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 267, + 140, + 275, + 147 + ], + "score": 0.9, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 137, + 406, + 151 + ], + "score": 1.0, + "content": "is assumed to be 1. We omit", + "type": "text" + }, + { + "bbox": [ + 406, + 139, + 443, + 150 + ], + "score": 0.93, + "content": "\\log \\left( 1 / \\delta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 137, + 507, + 151 + ], + "score": 1.0, + "content": "for simplicity.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 158, + 527, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 158, + 527, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 527, + 286 + ], + "score": 0.983, + "html": "
AuthorsPerturbationAlgorithmUtility (μ = 0)Utility(u>0)
Chaudhuri et al. (2011)ObjectiveN/A00 pun22
Zhang et al. (2017)OutputGD0 ()2/3)ne0 βpHn2c²
Bassily et al. (2014)GradientSGD0Vplog3/2(n)ne0plog²(n)μn2c²
Jayaraman et al. (2018)GradientGDN/A0βplog²(n)μ²n2e2
OursGradientGD0 V>Bplog(n)v²n2e²nE0βplog(n)v²n2c2
OursGradientSGD0Vplog(n)>plog(n)nevn2e20plog(n)vn2e2
", + "type": "table", + "image_path": "592bd75ea61c4cf006e848e421ebba74f02b532ba3c0d364e203152487594516.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 158, + 527, + 200.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 200.66666666666666, + 527, + 243.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 243.33333333333331, + 527, + 286.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 308, + 201, + 321 + ], + "lines": [ + { + "bbox": [ + 104, + 307, + 202, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 202, + 323 + ], + "score": 1.0, + "content": "2 Preliminary", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 506, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 409, + 347 + ], + "score": 1.0, + "content": "We introduce notations and definitions in this section. Given dataset", + "type": "text" + }, + { + "bbox": [ + 409, + 336, + 484, + 347 + ], + "score": 0.94, + "content": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 332, + 506, + 347 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 342, + 503, + 363 + ], + "spans": [ + { + "bbox": [ + 103, + 342, + 186, + 363 + ], + "score": 1.0, + "content": "objective function", + "type": "text" + }, + { + "bbox": [ + 186, + 349, + 221, + 359 + ], + "score": 0.94, + "content": "F ( { \\pmb x } ; D )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 342, + 278, + 363 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 279, + 347, + 394, + 360 + ], + "score": 0.93, + "content": "\\begin{array} { r } { F ( \\pmb { x } ; D ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } f ( \\pmb { x } ; d _ { i } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 342, + 427, + 363 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 427, + 349, + 503, + 359 + ], + "score": 0.92, + "content": "f ( \\pmb { x } ; d _ { i } ) : \\mathbb { R } ^ { p } \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 357, + 304, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 194, + 371 + ], + "score": 1.0, + "content": "is the loss of model", + "type": "text" + }, + { + "bbox": [ + 194, + 361, + 225, + 368 + ], + "score": 0.92, + "content": "\\pmb { x } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 357, + 291, + 371 + ], + "score": 1.0, + "content": "for the record", + "type": "text" + }, + { + "bbox": [ + 291, + 361, + 300, + 369 + ], + "score": 0.9, + "content": "d _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 357, + 304, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 506, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 208, + 388 + ], + "score": 1.0, + "content": "For simplicity, we use", + "type": "text" + }, + { + "bbox": [ + 209, + 377, + 231, + 387 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 374, + 281, + 388 + ], + "score": 1.0, + "content": "to denote", + "type": "text" + }, + { + "bbox": [ + 282, + 377, + 317, + 387 + ], + "score": 0.94, + "content": "F ( { \\pmb x } ; D )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 374, + 362, + 388 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 363, + 377, + 379, + 387 + ], + "score": 0.92, + "content": "\\lVert \\boldsymbol { v } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 374, + 447, + 388 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 447, + 378, + 455, + 386 + ], + "score": 0.9, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "norm of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 385, + 508, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 138, + 400 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 138, + 391, + 144, + 396 + ], + "score": 0.87, + "content": "_ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 385, + 189, + 400 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 189, + 388, + 293, + 400 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { X } _ { f } ^ { * } = \\arg \\operatorname* { m i n } _ { { \\pmb x } \\in \\mathbb { R } ^ { p } } f ( { \\pmb x } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 385, + 482, + 400 + ], + "score": 1.0, + "content": "to denote the set of optimal solutions of", + "type": "text" + }, + { + "bbox": [ + 482, + 388, + 502, + 398 + ], + "score": 0.95, + "content": "f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 385, + 508, + 400 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 328, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 261, + 412 + ], + "score": 1.0, + "content": "Throughout this paper, we assume", + "type": "text" + }, + { + "bbox": [ + 261, + 400, + 275, + 412 + ], + "score": 0.91, + "content": "\\mathcal { X } _ { f } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 396, + 328, + 412 + ], + "score": 1.0, + "content": "non-empty.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 415, + 462, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 461, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 312, + 429 + ], + "score": 1.0, + "content": "Definition 1 (Objective properties). For any", + "type": "text" + }, + { + "bbox": [ + 312, + 418, + 354, + 428 + ], + "score": 0.87, + "content": "\\ b { x } , \\ b { y } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 415, + 363, + 429 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 364, + 418, + 370, + 426 + ], + "score": 0.64, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 415, + 411, + 429 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 411, + 418, + 461, + 427 + ], + "score": 0.89, + "content": "f : \\mathbb { R } ^ { p } \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 131, + 436, + 461, + 514 + ], + "lines": [ + { + "bbox": [ + 132, + 436, + 335, + 451 + ], + "spans": [ + { + "bbox": [ + 132, + 436, + 153, + 451 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 440, + 161, + 447 + ], + "score": 0.71, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 436, + 216, + 451 + ], + "score": 1.0, + "content": "-Lipschitz if", + "type": "text" + }, + { + "bbox": [ + 216, + 439, + 331, + 450 + ], + "score": 0.94, + "content": "| f ( \\pmb { x } ) - f ( \\pmb { y } ) | \\leq L \\| \\pmb { x } - \\pmb { y } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 436, + 335, + 451 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 131, + 457, + 402, + 473 + ], + "spans": [ + { + "bbox": [ + 131, + 457, + 153, + 473 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 461, + 160, + 471 + ], + "score": 0.89, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 457, + 206, + 473 + ], + "score": 1.0, + "content": "-smooth if", + "type": "text" + }, + { + "bbox": [ + 207, + 459, + 402, + 473 + ], + "score": 0.88, + "content": "\\begin{array} { r } { f ( \\pmb { y } ) \\leq f ( \\pmb { x } ) + \\langle \\nabla f ( \\pmb { x } ) , \\pmb { y } - \\pmb { x } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb { y } - \\pmb { x } \\right. ^ { 2 } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 132, + 479, + 325, + 493 + ], + "spans": [ + { + "bbox": [ + 132, + 479, + 195, + 493 + ], + "score": 1.0, + "content": "• is convex if", + "type": "text" + }, + { + "bbox": [ + 196, + 481, + 321, + 492 + ], + "score": 0.92, + "content": "\\langle \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\rangle \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 479, + 325, + 493 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 131, + 500, + 459, + 514 + ], + "spans": [ + { + "bbox": [ + 131, + 500, + 153, + 514 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 506, + 160, + 513 + ], + "score": 0.85, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 500, + 249, + 514 + ], + "score": 1.0, + "content": "-strongly convex (or", + "type": "text" + }, + { + "bbox": [ + 250, + 506, + 256, + 513 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 500, + 289, + 514 + ], + "score": 1.0, + "content": "-SC) if", + "type": "text" + }, + { + "bbox": [ + 289, + 501, + 459, + 513 + ], + "score": 0.89, + "content": "\\left. \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\right. \\geq \\mu \\left. { \\pmb x } - { \\pmb y } \\right. ^ { 2 } .", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 522, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 247, + 535 + ], + "score": 1.0, + "content": "The strong convexity coefficient", + "type": "text" + }, + { + "bbox": [ + 247, + 528, + 254, + 535 + ], + "score": 0.87, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "is the lower bound of the minimum curvature of function", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 533, + 191, + 546 + ], + "spans": [ + { + "bbox": [ + 107, + 537, + 113, + 546 + ], + "score": 0.89, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 533, + 191, + 546 + ], + "score": 1.0, + "content": "over the domain.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 220, + 565 + ], + "score": 1.0, + "content": "We say that two datasets", + "type": "text" + }, + { + "bbox": [ + 221, + 554, + 245, + 564 + ], + "score": 0.93, + "content": "D , D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 551, + 412, + 565 + ], + "score": 1.0, + "content": "are neighboring datasets (denoted as", + "type": "text" + }, + { + "bbox": [ + 413, + 552, + 446, + 562 + ], + "score": 0.88, + "content": "D \\sim D ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 551, + 462, + 565 + ], + "score": 1.0, + "content": ") if", + "type": "text" + }, + { + "bbox": [ + 462, + 555, + 471, + 562 + ], + "score": 0.9, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 312, + 576 + ], + "score": 1.0, + "content": "obtained by arbitrarily modifying one record in", + "type": "text" + }, + { + "bbox": [ + 313, + 565, + 324, + 573 + ], + "score": 0.9, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "(or vice versa). In this paper we consider", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 574, + 262, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 127, + 586 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 574, + 262, + 587 + ], + "score": 1.0, + "content": "-differential privacy as follows.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 177, + 603 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 177, + 592, + 199, + 602 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 589, + 450, + 603 + ], + "score": 1.0, + "content": "-DP (Dwork et al., 2006a;b)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 451, + 592, + 504, + 600 + ], + "score": 0.91, + "content": "\\mathcal { M } : D \\mathcal { R }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 155, + 617 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 155, + 605, + 176, + 615 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 602, + 443, + 617 + ], + "score": 1.0, + "content": "-differential privacy if for any two neighboring input datasets", + "type": "text" + }, + { + "bbox": [ + 443, + 603, + 467, + 615 + ], + "score": 0.92, + "content": "D , D ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 602, + 506, + 617 + ], + "score": 1.0, + "content": "and for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 615, + 464, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 201, + 629 + ], + "score": 1.0, + "content": "any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 202, + 618, + 231, + 627 + ], + "score": 0.92, + "content": "S \\subseteq { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 615, + 289, + 629 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + }, + { + "bbox": [ + 290, + 616, + 459, + 628 + ], + "score": 0.92, + "content": "P r [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( D ^ { ' } ) \\in S ] + \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 615, + 464, + 629 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 168, + 650 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 168, + 640, + 173, + 648 + ], + "score": 0.89, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 637, + 380, + 650 + ], + "score": 1.0, + "content": "can be viewed as the probability that original", + "type": "text" + }, + { + "bbox": [ + 380, + 643, + 385, + 648 + ], + "score": 0.77, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "-DP fails and a meaningful", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 175, + 662 + ], + "score": 1.0, + "content": "setting requires", + "type": "text" + }, + { + "bbox": [ + 176, + 649, + 203, + 662 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\delta \\ll \\frac { 1 } { n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 648, + 506, + 662 + ], + "score": 1.0, + "content": ". By its definition, differential privacy controls the maximum influence", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 315, + 672 + ], + "score": 1.0, + "content": "that any individual record can produce. Smaller", + "type": "text" + }, + { + "bbox": [ + 316, + 662, + 329, + 671 + ], + "score": 0.91, + "content": "\\epsilon , \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "implies less information leak but usually", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 671, + 466, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 274, + 683 + ], + "score": 1.0, + "content": "leads to worse utility. One can adjust", + "type": "text" + }, + { + "bbox": [ + 274, + 673, + 288, + 682 + ], + "score": 0.92, + "content": "\\epsilon , \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 671, + 466, + 683 + ], + "score": 1.0, + "content": "to trade off between privacy and utility.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 241, + 700 + ], + "score": 1.0, + "content": "DP-ERM requires the output", + "type": "text" + }, + { + "bbox": [ + 241, + 690, + 285, + 699 + ], + "score": 0.93, + "content": "\\pmb { x } _ { o u t } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "is differentially private with respect to the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 142, + 711 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 143, + 701, + 152, + 708 + ], + "score": 0.9, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 698, + 177, + 711 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 178, + 701, + 216, + 711 + ], + "score": 0.93, + "content": "{ \\pmb x } _ { * } \\in \\mathcal { X } _ { F } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 698, + 372, + 711 + ], + "score": 1.0, + "content": "be one of the optimal solutions of", + "type": "text" + }, + { + "bbox": [ + 372, + 700, + 395, + 711 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 698, + 506, + 711 + ], + "score": 1.0, + "content": ", the utility of DP-ERM", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 365, + 723 + ], + "score": 1.0, + "content": "algorithm is measured by expected excess empirical risk :", + "type": "text" + }, + { + "bbox": [ + 366, + 711, + 452, + 722 + ], + "score": 0.91, + "content": "\\mathbb { E } [ F ( { \\pmb x } _ { o u t } ) - F ( { \\pmb x } _ { * } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ", where the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 338, + 733 + ], + "score": 1.0, + "content": "expectation is taken over the algorithm randomness.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 327, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 761 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 761 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 158, + 527, + 286 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 116, + 93, + 518, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 93, + 517, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 367, + 106 + ], + "score": 1.0, + "content": "Table 1: Expected excess empirical risk bounds under", + "type": "text" + }, + { + "bbox": [ + 367, + 95, + 389, + 106 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 93, + 442, + 106 + ], + "score": 1.0, + "content": "-DP, where", + "type": "text" + }, + { + "bbox": [ + 443, + 99, + 449, + 103 + ], + "score": 0.9, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 93, + 473, + 106 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 99, + 479, + 105 + ], + "score": 0.91, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 93, + 517, + 106 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 104, + 517, + 118 + ], + "spans": [ + { + "bbox": [ + 117, + 104, + 431, + 118 + ], + "score": 1.0, + "content": "number of samples and the number of parameters, respectively, and", + "type": "text" + }, + { + "bbox": [ + 431, + 107, + 448, + 117 + ], + "score": 0.93, + "content": "\\beta , \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 104, + 473, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 110, + 479, + 114 + ], + "score": 0.88, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 104, + 517, + 118 + ], + "score": 1.0, + "content": "are the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 114, + 517, + 129 + ], + "spans": [ + { + "bbox": [ + 116, + 114, + 517, + 129 + ], + "score": 1.0, + "content": "smooth coefficient, the strongly convex coefficient and the expected curvature, respectively,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 125, + 517, + 140 + ], + "spans": [ + { + "bbox": [ + 116, + 125, + 137, + 140 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 137, + 129, + 162, + 138 + ], + "score": 0.92, + "content": "\\nu \\geq \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 125, + 302, + 140 + ], + "score": 1.0, + "content": "(see Section 3.1). We note that", + "type": "text" + }, + { + "bbox": [ + 302, + 129, + 326, + 138 + ], + "score": 0.92, + "content": "\\mu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 125, + 517, + 140 + ], + "score": 1.0, + "content": "denotes the convex but not strongly convex", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 117, + 137, + 507, + 151 + ], + "spans": [ + { + "bbox": [ + 117, + 137, + 267, + 151 + ], + "score": 1.0, + "content": "objective. The Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 267, + 140, + 275, + 147 + ], + "score": 0.9, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 137, + 406, + 151 + ], + "score": 1.0, + "content": "is assumed to be 1. We omit", + "type": "text" + }, + { + "bbox": [ + 406, + 139, + 443, + 150 + ], + "score": 0.93, + "content": "\\log \\left( 1 / \\delta \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 137, + 507, + 151 + ], + "score": 1.0, + "content": "for simplicity.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 106, + 158, + 527, + 286 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 158, + 527, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 527, + 286 + ], + "score": 0.983, + "html": "
AuthorsPerturbationAlgorithmUtility (μ = 0)Utility(u>0)
Chaudhuri et al. (2011)ObjectiveN/A00 pun22
Zhang et al. (2017)OutputGD0 ()2/3)ne0 βpHn2c²
Bassily et al. (2014)GradientSGD0Vplog3/2(n)ne0plog²(n)μn2c²
Jayaraman et al. (2018)GradientGDN/A0βplog²(n)μ²n2e2
OursGradientGD0 V>Bplog(n)v²n2e²nE0βplog(n)v²n2c2
OursGradientSGD0Vplog(n)>plog(n)nevn2e20plog(n)vn2e2
", + "type": "table", + "image_path": "592bd75ea61c4cf006e848e421ebba74f02b532ba3c0d364e203152487594516.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 158, + 527, + 200.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 200.66666666666666, + 527, + 243.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 243.33333333333331, + 527, + 286.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 308, + 201, + 321 + ], + "lines": [ + { + "bbox": [ + 104, + 307, + 202, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 202, + 323 + ], + "score": 1.0, + "content": "2 Preliminary", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 506, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 409, + 347 + ], + "score": 1.0, + "content": "We introduce notations and definitions in this section. Given dataset", + "type": "text" + }, + { + "bbox": [ + 409, + 336, + 484, + 347 + ], + "score": 0.94, + "content": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 332, + 506, + 347 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 103, + 342, + 503, + 363 + ], + "spans": [ + { + "bbox": [ + 103, + 342, + 186, + 363 + ], + "score": 1.0, + "content": "objective function", + "type": "text" + }, + { + "bbox": [ + 186, + 349, + 221, + 359 + ], + "score": 0.94, + "content": "F ( { \\pmb x } ; D )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 342, + 278, + 363 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + }, + { + "bbox": [ + 279, + 347, + 394, + 360 + ], + "score": 0.93, + "content": "\\begin{array} { r } { F ( \\pmb { x } ; D ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } f ( \\pmb { x } ; d _ { i } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 342, + 427, + 363 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 427, + 349, + 503, + 359 + ], + "score": 0.92, + "content": "f ( \\pmb { x } ; d _ { i } ) : \\mathbb { R } ^ { p } \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 357, + 304, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 194, + 371 + ], + "score": 1.0, + "content": "is the loss of model", + "type": "text" + }, + { + "bbox": [ + 194, + 361, + 225, + 368 + ], + "score": 0.92, + "content": "\\pmb { x } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 357, + 291, + 371 + ], + "score": 1.0, + "content": "for the record", + "type": "text" + }, + { + "bbox": [ + 291, + 361, + 300, + 369 + ], + "score": 0.9, + "content": "d _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 357, + 304, + 371 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 103, + 332, + 506, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 506, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 208, + 388 + ], + "score": 1.0, + "content": "For simplicity, we use", + "type": "text" + }, + { + "bbox": [ + 209, + 377, + 231, + 387 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 374, + 281, + 388 + ], + "score": 1.0, + "content": "to denote", + "type": "text" + }, + { + "bbox": [ + 282, + 377, + 317, + 387 + ], + "score": 0.94, + "content": "F ( { \\pmb x } ; D )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 374, + 362, + 388 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 363, + 377, + 379, + 387 + ], + "score": 0.92, + "content": "\\lVert \\boldsymbol { v } \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 374, + 447, + 388 + ], + "score": 1.0, + "content": "to denote the", + "type": "text" + }, + { + "bbox": [ + 447, + 378, + 455, + 386 + ], + "score": 0.9, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "norm of a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 385, + 508, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 138, + 400 + ], + "score": 1.0, + "content": "vector", + "type": "text" + }, + { + "bbox": [ + 138, + 391, + 144, + 396 + ], + "score": 0.87, + "content": "_ { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 385, + 189, + 400 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 189, + 388, + 293, + 400 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathcal { X } _ { f } ^ { * } = \\arg \\operatorname* { m i n } _ { { \\pmb x } \\in \\mathbb { R } ^ { p } } f ( { \\pmb x } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 385, + 482, + 400 + ], + "score": 1.0, + "content": "to denote the set of optimal solutions of", + "type": "text" + }, + { + "bbox": [ + 482, + 388, + 502, + 398 + ], + "score": 0.95, + "content": "f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 385, + 508, + 400 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 328, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 261, + 412 + ], + "score": 1.0, + "content": "Throughout this paper, we assume", + "type": "text" + }, + { + "bbox": [ + 261, + 400, + 275, + 412 + ], + "score": 0.91, + "content": "\\mathcal { X } _ { f } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 396, + 328, + 412 + ], + "score": 1.0, + "content": "non-empty.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 374, + 508, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 415, + 462, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 461, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 312, + 429 + ], + "score": 1.0, + "content": "Definition 1 (Objective properties). For any", + "type": "text" + }, + { + "bbox": [ + 312, + 418, + 354, + 428 + ], + "score": 0.87, + "content": "\\ b { x } , \\ b { y } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 415, + 363, + 429 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 364, + 418, + 370, + 426 + ], + "score": 0.64, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 415, + 411, + 429 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 411, + 418, + 461, + 427 + ], + "score": 0.89, + "content": "f : \\mathbb { R } ^ { p } \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 415, + 461, + 429 + ] + }, + { + "type": "list", + "bbox": [ + 131, + 436, + 461, + 514 + ], + "lines": [ + { + "bbox": [ + 132, + 436, + 335, + 451 + ], + "spans": [ + { + "bbox": [ + 132, + 436, + 153, + 451 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 440, + 161, + 447 + ], + "score": 0.71, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 436, + 216, + 451 + ], + "score": 1.0, + "content": "-Lipschitz if", + "type": "text" + }, + { + "bbox": [ + 216, + 439, + 331, + 450 + ], + "score": 0.94, + "content": "| f ( \\pmb { x } ) - f ( \\pmb { y } ) | \\leq L \\| \\pmb { x } - \\pmb { y } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 436, + 335, + 451 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 457, + 402, + 473 + ], + "spans": [ + { + "bbox": [ + 131, + 457, + 153, + 473 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 461, + 160, + 471 + ], + "score": 0.89, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 457, + 206, + 473 + ], + "score": 1.0, + "content": "-smooth if", + "type": "text" + }, + { + "bbox": [ + 207, + 459, + 402, + 473 + ], + "score": 0.88, + "content": "\\begin{array} { r } { f ( \\pmb { y } ) \\leq f ( \\pmb { x } ) + \\langle \\nabla f ( \\pmb { x } ) , \\pmb { y } - \\pmb { x } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb { y } - \\pmb { x } \\right. ^ { 2 } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 17, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 479, + 325, + 493 + ], + "spans": [ + { + "bbox": [ + 132, + 479, + 195, + 493 + ], + "score": 1.0, + "content": "• is convex if", + "type": "text" + }, + { + "bbox": [ + 196, + 481, + 321, + 492 + ], + "score": 0.92, + "content": "\\langle \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\rangle \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 479, + 325, + 493 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 131, + 500, + 459, + 514 + ], + "spans": [ + { + "bbox": [ + 131, + 500, + 153, + 514 + ], + "score": 1.0, + "content": "• is", + "type": "text" + }, + { + "bbox": [ + 154, + 506, + 160, + 513 + ], + "score": 0.85, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 500, + 249, + 514 + ], + "score": 1.0, + "content": "-strongly convex (or", + "type": "text" + }, + { + "bbox": [ + 250, + 506, + 256, + 513 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 500, + 289, + 514 + ], + "score": 1.0, + "content": "-SC) if", + "type": "text" + }, + { + "bbox": [ + 289, + 501, + 459, + 513 + ], + "score": 0.89, + "content": "\\left. \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\right. \\geq \\mu \\left. { \\pmb x } - { \\pmb y } \\right. ^ { 2 } .", + "type": "inline_equation" + } + ], + "index": 19, + "is_list_start_line": true + } + ], + "index": 17.5, + "bbox_fs": [ + 131, + 436, + 459, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 522, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 247, + 535 + ], + "score": 1.0, + "content": "The strong convexity coefficient", + "type": "text" + }, + { + "bbox": [ + 247, + 528, + 254, + 535 + ], + "score": 0.87, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "is the lower bound of the minimum curvature of function", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 533, + 191, + 546 + ], + "spans": [ + { + "bbox": [ + 107, + 537, + 113, + 546 + ], + "score": 0.89, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 533, + 191, + 546 + ], + "score": 1.0, + "content": "over the domain.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 522, + 505, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 551, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 220, + 565 + ], + "score": 1.0, + "content": "We say that two datasets", + "type": "text" + }, + { + "bbox": [ + 221, + 554, + 245, + 564 + ], + "score": 0.93, + "content": "D , D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 551, + 412, + 565 + ], + "score": 1.0, + "content": "are neighboring datasets (denoted as", + "type": "text" + }, + { + "bbox": [ + 413, + 552, + 446, + 562 + ], + "score": 0.88, + "content": "D \\sim D ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 551, + 462, + 565 + ], + "score": 1.0, + "content": ") if", + "type": "text" + }, + { + "bbox": [ + 462, + 555, + 471, + 562 + ], + "score": 0.9, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 551, + 505, + 565 + ], + "score": 1.0, + "content": "can be", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 312, + 576 + ], + "score": 1.0, + "content": "obtained by arbitrarily modifying one record in", + "type": "text" + }, + { + "bbox": [ + 313, + 565, + 324, + 573 + ], + "score": 0.9, + "content": "D ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "(or vice versa). In this paper we consider", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 574, + 262, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 127, + 586 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 574, + 262, + 587 + ], + "score": 1.0, + "content": "-differential privacy as follows.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 551, + 505, + 587 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 629 + ], + "lines": [ + { + "bbox": [ + 106, + 589, + 504, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 177, + 603 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 177, + 592, + 199, + 602 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 589, + 450, + 603 + ], + "score": 1.0, + "content": "-DP (Dwork et al., 2006a;b)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 451, + 592, + 504, + 600 + ], + "score": 0.91, + "content": "\\mathcal { M } : D \\mathcal { R }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 602, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 155, + 617 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 155, + 605, + 176, + 615 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 602, + 443, + 617 + ], + "score": 1.0, + "content": "-differential privacy if for any two neighboring input datasets", + "type": "text" + }, + { + "bbox": [ + 443, + 603, + 467, + 615 + ], + "score": 0.92, + "content": "D , D ^ { ' }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 602, + 506, + 617 + ], + "score": 1.0, + "content": "and for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 615, + 464, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 201, + 629 + ], + "score": 1.0, + "content": "any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 202, + 618, + 231, + 627 + ], + "score": 0.92, + "content": "S \\subseteq { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 615, + 289, + 629 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + }, + { + "bbox": [ + 290, + 616, + 459, + 628 + ], + "score": 0.92, + "content": "P r [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( D ^ { ' } ) \\in S ] + \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 615, + 464, + 629 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 589, + 506, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 168, + 650 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 168, + 640, + 173, + 648 + ], + "score": 0.89, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 637, + 380, + 650 + ], + "score": 1.0, + "content": "can be viewed as the probability that original", + "type": "text" + }, + { + "bbox": [ + 380, + 643, + 385, + 648 + ], + "score": 0.77, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "-DP fails and a meaningful", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 175, + 662 + ], + "score": 1.0, + "content": "setting requires", + "type": "text" + }, + { + "bbox": [ + 176, + 649, + 203, + 662 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\delta \\ll \\frac { 1 } { n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 648, + 506, + 662 + ], + "score": 1.0, + "content": ". By its definition, differential privacy controls the maximum influence", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 315, + 672 + ], + "score": 1.0, + "content": "that any individual record can produce. Smaller", + "type": "text" + }, + { + "bbox": [ + 316, + 662, + 329, + 671 + ], + "score": 0.91, + "content": "\\epsilon , \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "implies less information leak but usually", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 671, + 466, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 274, + 683 + ], + "score": 1.0, + "content": "leads to worse utility. One can adjust", + "type": "text" + }, + { + "bbox": [ + 274, + 673, + 288, + 682 + ], + "score": 0.92, + "content": "\\epsilon , \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 671, + 466, + 683 + ], + "score": 1.0, + "content": "to trade off between privacy and utility.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 637, + 506, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 241, + 700 + ], + "score": 1.0, + "content": "DP-ERM requires the output", + "type": "text" + }, + { + "bbox": [ + 241, + 690, + 285, + 699 + ], + "score": 0.93, + "content": "\\pmb { x } _ { o u t } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "is differentially private with respect to the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 142, + 711 + ], + "score": 1.0, + "content": "dataset", + "type": "text" + }, + { + "bbox": [ + 143, + 701, + 152, + 708 + ], + "score": 0.9, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 698, + 177, + 711 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 178, + 701, + 216, + 711 + ], + "score": 0.93, + "content": "{ \\pmb x } _ { * } \\in \\mathcal { X } _ { F } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 698, + 372, + 711 + ], + "score": 1.0, + "content": "be one of the optimal solutions of", + "type": "text" + }, + { + "bbox": [ + 372, + 700, + 395, + 711 + ], + "score": 0.92, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 698, + 506, + 711 + ], + "score": 1.0, + "content": ", the utility of DP-ERM", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 365, + 723 + ], + "score": 1.0, + "content": "algorithm is measured by expected excess empirical risk :", + "type": "text" + }, + { + "bbox": [ + 366, + 711, + 452, + 722 + ], + "score": 0.91, + "content": "\\mathbb { E } [ F ( { \\pmb x } _ { o u t } ) - F ( { \\pmb x } _ { * } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ", where the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 338, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 338, + 733 + ], + "score": 1.0, + "content": "expectation is taken over the algorithm randomness.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 686, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 208, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 210, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 210, + 96 + ], + "score": 1.0, + "content": "3 Main Results", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 339, + 115 + ], + "score": 1.0, + "content": "In this section, we first define the expected curvature", + "type": "text" + }, + { + "bbox": [ + 339, + 108, + 344, + 113 + ], + "score": 0.68, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "and explain why it depends only on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "the average curvature. We then use such expected curvature to improve the analysis of both", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 206, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 206, + 137 + ], + "score": 1.0, + "content": "DP-SGD and DP-GD.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 149, + 238, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 239, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 239, + 162 + ], + "score": 1.0, + "content": "3.1 Expected Curvature", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "In non-private setting, the analysis of convex optimization relies on the strongly convex", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 153, + 194 + ], + "score": 1.0, + "content": "coefficient", + "type": "text" + }, + { + "bbox": [ + 154, + 186, + 160, + 192 + ], + "score": 0.9, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 180, + 505, + 194 + ], + "score": 1.0, + "content": ", which is the minimum curvature over the domain and can be extremely small", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "for some common objectives. Previous work on DP-ERM uses the same analysis as in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "score": 1.0, + "content": "non-private case and therefore the resulting utility bounds rely on the minimum curvature.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "In our analysis, however, we avoid the dependency on the minimum curvature by exploiting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "how the privacy noise affects the optimization. With the perturbation noise, the expected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "curvature that the optimization path encounters is related to the average curvature instead of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 288, + 260 + ], + "score": 1.0, + "content": "the minimum curvature. Definition 3 uses", + "type": "text" + }, + { + "bbox": [ + 288, + 252, + 294, + 256 + ], + "score": 0.88, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "to capture such average curvature with Gaussian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 169, + 271 + ], + "score": 1.0, + "content": "noise. We use", + "type": "text" + }, + { + "bbox": [ + 170, + 259, + 289, + 270 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { x } _ { * } = \\arg \\operatorname* { m i n } _ { \\pmb { x } \\in \\mathcal { X } _ { * } } \\| \\pmb { x } - \\pmb { x } _ { 1 } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 257, + 507, + 271 + ], + "score": 1.0, + "content": "to denote the closest solution to the initial point.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 347, + 285 + ], + "score": 1.0, + "content": "Definition 3 (Expected curvature). A convex function", + "type": "text" + }, + { + "bbox": [ + 348, + 275, + 398, + 282 + ], + "score": 0.91, + "content": "F : \\mathbb { R } ^ { p } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 272, + 506, + 285 + ], + "score": 1.0, + "content": ", has expected curvature", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 281, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 107, + 288, + 113, + 293 + ], + "score": 0.56, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 281, + 208, + 297 + ], + "score": 1.0, + "content": "with respect to noise", + "type": "text" + }, + { + "bbox": [ + 209, + 284, + 257, + 296 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 281, + 304, + 297 + ], + "score": 1.0, + "content": "if for any", + "type": "text" + }, + { + "bbox": [ + 305, + 286, + 336, + 293 + ], + "score": 0.92, + "content": "\\pmb { x } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 281, + 358, + 297 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 358, + 286, + 403, + 294 + ], + "score": 0.91, + "content": "{ \\tilde { \\pmb { x } } } = { \\pmb { x } } - { \\boldsymbol { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 281, + 435, + 297 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 435, + 285, + 502, + 296 + ], + "score": 0.94, + "content": "z \\sim { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } I _ { p } )", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 162, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 162, + 306 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 304, + 387, + 318 + ], + "lines": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "spans": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\geq \\nu \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] ,", + "type": "interline_equation", + "image_path": "a61c53876e260e0333a88e01803a20febc96921b6d804fdeb6cae39da879f82a.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 315, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 312, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 306, + 333 + ], + "score": 1.0, + "content": "where the expectation is taken with respect to", + "type": "text" + }, + { + "bbox": [ + 306, + 325, + 312, + 330 + ], + "score": 0.83, + "content": "_ { z }", + "type": "inline_equation" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 335, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 332, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 164, + 349 + ], + "score": 1.0, + "content": "Claim 1. If", + "type": "text" + }, + { + "bbox": [ + 165, + 338, + 173, + 345 + ], + "score": 0.82, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 333, + 187, + 349 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 187, + 340, + 194, + 347 + ], + "score": 0.76, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 333, + 306, + 349 + ], + "score": 1.0, + "content": "-strongly convex, we have", + "type": "text" + }, + { + "bbox": [ + 307, + 338, + 332, + 347 + ], + "score": 0.91, + "content": "\\nu \\geq \\mu", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 488, + 371 + ], + "lines": [ + { + "bbox": [ + 107, + 358, + 486, + 372 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 231, + 372 + ], + "score": 1.0, + "content": "Proof. It can be verified that", + "type": "text" + }, + { + "bbox": [ + 231, + 361, + 256, + 370 + ], + "score": 0.85, + "content": "\\nu = \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 358, + 486, + 372 + ], + "score": 1.0, + "content": "always holds because of the strongly convex definition.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 382, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 503, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 147, + 396 + ], + "score": 1.0, + "content": "In fact,", + "type": "text" + }, + { + "bbox": [ + 147, + 387, + 153, + 393 + ], + "score": 0.71, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 382, + 446, + 396 + ], + "score": 1.0, + "content": "represents the average curvature and is much larger than", + "type": "text" + }, + { + "bbox": [ + 447, + 388, + 453, + 394 + ], + "score": 0.87, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 382, + 493, + 396 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 494, + 384, + 503, + 392 + ], + "score": 0.88, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 223, + 406 + ], + "score": 1.0, + "content": "to denote the transpose of", + "type": "text" + }, + { + "bbox": [ + 223, + 399, + 230, + 403 + ], + "score": 0.86, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 393, + 254, + 406 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 255, + 395, + 318, + 406 + ], + "score": 0.93, + "content": "H _ { x } = \\nabla ^ { 2 } F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 393, + 475, + 406 + ], + "score": 1.0, + "content": "be the Hessian matrix evaluated at", + "type": "text" + }, + { + "bbox": [ + 476, + 399, + 483, + 403 + ], + "score": 0.88, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 393, + 505, + 406 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 438, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 438, + 417 + ], + "score": 1.0, + "content": "use Taylor expansion to approximate the left hand side of Eq (1) as follows", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 421, + 423, + 469 + ], + "lines": [ + { + "bbox": [ + 186, + 421, + 423, + 469 + ], + "spans": [ + { + "bbox": [ + 186, + 421, + 423, + 469 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\approx \\mathbb { E } [ \\langle \\nabla F ( \\pmb { x } ) - \\pmb { H } _ { \\pmb { x } } \\pmb { z } , \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\rangle ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\mathbb { E } [ \\pmb { z } ^ { \\prime } H _ { \\pmb { x } } \\pmb { z } ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\sigma ^ { 2 } \\operatorname { t r } ( H _ { \\pmb { x } } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "22dc61e52c1b61632edd512eeb8e27dcd93cc06382f69f7d118e512124de3a10.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 186, + 421, + 423, + 437.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 186, + 437.0, + 423, + 453.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 186, + 453.0, + 423, + 469.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 412, + 484 + ], + "score": 1.0, + "content": "For convex objective, the Hessian matrix is positive semi-definite and", + "type": "text" + }, + { + "bbox": [ + 412, + 473, + 444, + 484 + ], + "score": 0.93, + "content": "\\mathrm { t r } ( H _ { \\pmb { x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "is the sum of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 502, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 187, + 494 + ], + "score": 1.0, + "content": "the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 187, + 485, + 201, + 493 + ], + "score": 0.91, + "content": "H _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 483, + 502, + 494 + ], + "score": 1.0, + "content": ". We can further express out the right hand side of Eq (1) as follows", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 501, + 433, + 520 + ], + "lines": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "spans": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } [ \\| \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\nu \\left( \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } + p \\sigma ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ddd56589f813109649282d6c28fe274c054c5622cafae5631708084905907ae1.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 403, + 539 + ], + "score": 1.0, + "content": "Based on the above approximation, we can estimate the value of", + "type": "text" + }, + { + "bbox": [ + 403, + 531, + 409, + 535 + ], + "score": 0.87, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 523, + 486, + 539 + ], + "score": 1.0, + "content": "in Definition 3:", + "type": "text" + }, + { + "bbox": [ + 486, + 527, + 505, + 538 + ], + "score": 0.82, + "content": "\\nu \\lesssim", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 108, + 535, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 108, + 538, + 187, + 556 + ], + "score": 0.93, + "content": "\\frac { \\mathop { \\mathrm { t r } } ( H _ { \\pmb { x } } ) \\sigma ^ { 2 } + \\mu \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } } { p \\sigma ^ { 2 } + \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 535, + 189, + 556 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 193, + 537, + 288, + 552 + ], + "score": 1.0, + "content": "For relatively large", + "type": "text" + }, + { + "bbox": [ + 288, + 541, + 299, + 550 + ], + "score": 0.9, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 537, + 362, + 552 + ], + "score": 1.0, + "content": ", this implies", + "type": "text" + }, + { + "bbox": [ + 363, + 539, + 412, + 555 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\nu \\approx \\frac { \\mathrm { t r } ( H _ { x } ) } { p } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "tr(Hx) that is the average", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 162, + 567 + ], + "score": 1.0, + "content": "curvature at", + "type": "text" + }, + { + "bbox": [ + 163, + 558, + 169, + 563 + ], + "score": 0.89, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 552, + 505, + 567 + ], + "score": 1.0, + "content": ". Large variance is a reasonable setting because meaningful differential privacy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 313, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 313, + 577 + ], + "score": 1.0, + "content": "guarantee requires non-trivial amount of noise.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 253, + 594 + ], + "score": 1.0, + "content": "The above analysis suggests that", + "type": "text" + }, + { + "bbox": [ + 254, + 587, + 260, + 591 + ], + "score": 0.89, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 581, + 460, + 594 + ], + "score": 1.0, + "content": "can be independent of and much larger than", + "type": "text" + }, + { + "bbox": [ + 460, + 587, + 466, + 594 + ], + "score": 0.89, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 581, + 505, + 594 + ], + "score": 1.0, + "content": ". This is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 361, + 605 + ], + "score": 1.0, + "content": "indeed true for many convex objectives. Let us take the", + "type": "text" + }, + { + "bbox": [ + 362, + 595, + 369, + 604 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "regularized logistic regression", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 395, + 617 + ], + "score": 1.0, + "content": "as an example. The objective is strongly convex only due to the", + "type": "text" + }, + { + "bbox": [ + 396, + 606, + 403, + 615 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 603, + 506, + 617 + ], + "score": 1.0, + "content": "regularizer. Thus, the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 455, + 627 + ], + "score": 1.0, + "content": "minimum curvature (strongly convex coefficient) is the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 456, + 617, + 462, + 624 + ], + "score": 0.9, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 614, + 505, + 627 + ], + "score": 1.0, + "content": ". Sharmir", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 624, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 270, + 641 + ], + "score": 1.0, + "content": "et al. [1] shows the optimal choice of", + "type": "text" + }, + { + "bbox": [ + 271, + 629, + 277, + 636 + ], + "score": 0.9, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 624, + 289, + 641 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 290, + 627, + 330, + 639 + ], + "score": 0.94, + "content": "\\Theta ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 624, + 506, + 641 + ], + "score": 1.0, + "content": "(Section 4.3 in [1]). In practice, typical", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 636, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 146, + 651 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 146, + 640, + 153, + 648 + ], + "score": 0.91, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 636, + 342, + 651 + ], + "score": 1.0, + "content": "is even smaller and could be on the order of", + "type": "text" + }, + { + "bbox": [ + 342, + 639, + 359, + 648 + ], + "score": 0.91, + "content": "n ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 636, + 506, + 651 + ], + "score": 1.0, + "content": ". Figure 1 compares the minimum", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "and average curvatures of regularized logistic regression during the training process. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 416, + 673 + ], + "score": 1.0, + "content": "average curvature is basically unaffected by the regularization term", + "type": "text" + }, + { + "bbox": [ + 417, + 662, + 423, + 669 + ], + "score": 0.88, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 660, + 505, + 673 + ], + "score": 1.0, + "content": ". In contrast, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 235, + 684 + ], + "score": 1.0, + "content": "minimum curvature reaches", + "type": "text" + }, + { + "bbox": [ + 235, + 673, + 241, + 680 + ], + "score": 0.88, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "in first few steps. Therefore removing the dependence on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "minimum curvature is a significant improvement. We also plot the curvatures for another", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 692, + 497, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 497, + 705 + ], + "score": 1.0, + "content": "dataset KDDCup99 in the Appendix C. The resulting curvatures are similar to Figure 1.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 310, + 723 + ], + "score": 1.0, + "content": "Perturbation noise is necessary to attain", + "type": "text" + }, + { + "bbox": [ + 311, + 713, + 335, + 721 + ], + "score": 0.9, + "content": "\\nu > \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 708, + 401, + 723 + ], + "score": 1.0, + "content": ". We note that", + "type": "text" + }, + { + "bbox": [ + 401, + 714, + 425, + 721 + ], + "score": 0.9, + "content": "\\nu = \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "when the training", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 384, + 733 + ], + "score": 1.0, + "content": "process does not involve perturbation noise (corresponding to", + "type": "text" + }, + { + "bbox": [ + 384, + 723, + 410, + 730 + ], + "score": 0.91, + "content": "\\sigma = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "in Definition 3). For", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 360, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 496, + 361, + 504, + 369 + ], + "spans": [ + { + "bbox": [ + 496, + 361, + 504, + 369 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 208, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 210, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 210, + 96 + ], + "score": 1.0, + "content": "3 Main Results", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 102, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 339, + 115 + ], + "score": 1.0, + "content": "In this section, we first define the expected curvature", + "type": "text" + }, + { + "bbox": [ + 339, + 108, + 344, + 113 + ], + "score": 0.68, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "and explain why it depends only on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "the average curvature. We then use such expected curvature to improve the analysis of both", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 206, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 206, + 137 + ], + "score": 1.0, + "content": "DP-SGD and DP-GD.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 102, + 505, + 137 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 149, + 238, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 239, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 239, + 162 + ], + "score": 1.0, + "content": "3.1 Expected Curvature", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 505, + 270 + ], + "lines": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "In non-private setting, the analysis of convex optimization relies on the strongly convex", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 153, + 194 + ], + "score": 1.0, + "content": "coefficient", + "type": "text" + }, + { + "bbox": [ + 154, + 186, + 160, + 192 + ], + "score": 0.9, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 180, + 505, + 194 + ], + "score": 1.0, + "content": ", which is the minimum curvature over the domain and can be extremely small", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "for some common objectives. Previous work on DP-ERM uses the same analysis as in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 506, + 216 + ], + "score": 1.0, + "content": "non-private case and therefore the resulting utility bounds rely on the minimum curvature.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 506, + 228 + ], + "score": 1.0, + "content": "In our analysis, however, we avoid the dependency on the minimum curvature by exploiting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "how the privacy noise affects the optimization. With the perturbation noise, the expected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 248 + ], + "score": 1.0, + "content": "curvature that the optimization path encounters is related to the average curvature instead of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 246, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 288, + 260 + ], + "score": 1.0, + "content": "the minimum curvature. Definition 3 uses", + "type": "text" + }, + { + "bbox": [ + 288, + 252, + 294, + 256 + ], + "score": 0.88, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 246, + 505, + 260 + ], + "score": 1.0, + "content": "to capture such average curvature with Gaussian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 257, + 507, + 271 + ], + "spans": [ + { + "bbox": [ + 104, + 257, + 169, + 271 + ], + "score": 1.0, + "content": "noise. We use", + "type": "text" + }, + { + "bbox": [ + 170, + 259, + 289, + 270 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { x } _ { * } = \\arg \\operatorname* { m i n } _ { \\pmb { x } \\in \\mathcal { X } _ { * } } \\| \\pmb { x } - \\pmb { x } _ { 1 } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 257, + 507, + 271 + ], + "score": 1.0, + "content": "to denote the closest solution to the initial point.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 169, + 507, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 272, + 504, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 347, + 285 + ], + "score": 1.0, + "content": "Definition 3 (Expected curvature). A convex function", + "type": "text" + }, + { + "bbox": [ + 348, + 275, + 398, + 282 + ], + "score": 0.91, + "content": "F : \\mathbb { R } ^ { p } \\to \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 272, + 506, + 285 + ], + "score": 1.0, + "content": ", has expected curvature", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 281, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 107, + 288, + 113, + 293 + ], + "score": 0.56, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 281, + 208, + 297 + ], + "score": 1.0, + "content": "with respect to noise", + "type": "text" + }, + { + "bbox": [ + 209, + 284, + 257, + 296 + ], + "score": 0.92, + "content": "\\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 281, + 304, + 297 + ], + "score": 1.0, + "content": "if for any", + "type": "text" + }, + { + "bbox": [ + 305, + 286, + 336, + 293 + ], + "score": 0.92, + "content": "\\pmb { x } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 281, + 358, + 297 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 358, + 286, + 403, + 294 + ], + "score": 0.91, + "content": "{ \\tilde { \\pmb { x } } } = { \\pmb { x } } - { \\boldsymbol { z } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 281, + 435, + 297 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 435, + 285, + 502, + 296 + ], + "score": 0.94, + "content": "z \\sim { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } I _ { p } )", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 162, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 162, + 306 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 272, + 506, + 306 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 304, + 387, + 318 + ], + "lines": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "spans": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\geq \\nu \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] ,", + "type": "interline_equation", + "image_path": "a61c53876e260e0333a88e01803a20febc96921b6d804fdeb6cae39da879f82a.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 223, + 304, + 387, + 318 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 315, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 319, + 312, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 306, + 333 + ], + "score": 1.0, + "content": "where the expectation is taken with respect to", + "type": "text" + }, + { + "bbox": [ + 306, + 325, + 312, + 330 + ], + "score": 0.83, + "content": "_ { z }", + "type": "inline_equation" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 319, + 312, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 335, + 335, + 347 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 332, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 164, + 349 + ], + "score": 1.0, + "content": "Claim 1. If", + "type": "text" + }, + { + "bbox": [ + 165, + 338, + 173, + 345 + ], + "score": 0.82, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 333, + 187, + 349 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 187, + 340, + 194, + 347 + ], + "score": 0.76, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 333, + 306, + 349 + ], + "score": 1.0, + "content": "-strongly convex, we have", + "type": "text" + }, + { + "bbox": [ + 307, + 338, + 332, + 347 + ], + "score": 0.91, + "content": "\\nu \\geq \\mu", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 333, + 332, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 358, + 488, + 371 + ], + "lines": [ + { + "bbox": [ + 107, + 358, + 486, + 372 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 231, + 372 + ], + "score": 1.0, + "content": "Proof. It can be verified that", + "type": "text" + }, + { + "bbox": [ + 231, + 361, + 256, + 370 + ], + "score": 0.85, + "content": "\\nu = \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 358, + 486, + 372 + ], + "score": 1.0, + "content": "always holds because of the strongly convex definition.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 107, + 358, + 486, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 382, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 503, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 147, + 396 + ], + "score": 1.0, + "content": "In fact,", + "type": "text" + }, + { + "bbox": [ + 147, + 387, + 153, + 393 + ], + "score": 0.71, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 382, + 446, + 396 + ], + "score": 1.0, + "content": "represents the average curvature and is much larger than", + "type": "text" + }, + { + "bbox": [ + 447, + 388, + 453, + 394 + ], + "score": 0.87, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 382, + 493, + 396 + ], + "score": 1.0, + "content": ". We use", + "type": "text" + }, + { + "bbox": [ + 494, + 384, + 503, + 392 + ], + "score": 0.88, + "content": "\\mathbf { x } ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 223, + 406 + ], + "score": 1.0, + "content": "to denote the transpose of", + "type": "text" + }, + { + "bbox": [ + 223, + 399, + 230, + 403 + ], + "score": 0.86, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 393, + 254, + 406 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 255, + 395, + 318, + 406 + ], + "score": 0.93, + "content": "H _ { x } = \\nabla ^ { 2 } F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 393, + 475, + 406 + ], + "score": 1.0, + "content": "be the Hessian matrix evaluated at", + "type": "text" + }, + { + "bbox": [ + 476, + 399, + 483, + 403 + ], + "score": 0.88, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 393, + 505, + 406 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 405, + 438, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 438, + 417 + ], + "score": 1.0, + "content": "use Taylor expansion to approximate the left hand side of Eq (1) as follows", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 382, + 505, + 417 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 421, + 423, + 469 + ], + "lines": [ + { + "bbox": [ + 186, + 421, + 423, + 469 + ], + "spans": [ + { + "bbox": [ + 186, + 421, + 423, + 469 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\approx \\mathbb { E } [ \\langle \\nabla F ( \\pmb { x } ) - \\pmb { H } _ { \\pmb { x } } \\pmb { z } , \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\rangle ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\mathbb { E } [ \\pmb { z } ^ { \\prime } H _ { \\pmb { x } } \\pmb { z } ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\sigma ^ { 2 } \\operatorname { t r } ( H _ { \\pmb { x } } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "22dc61e52c1b61632edd512eeb8e27dcd93cc06382f69f7d118e512124de3a10.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 186, + 421, + 423, + 437.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 186, + 437.0, + 423, + 453.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 186, + 453.0, + 423, + 469.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 412, + 484 + ], + "score": 1.0, + "content": "For convex objective, the Hessian matrix is positive semi-definite and", + "type": "text" + }, + { + "bbox": [ + 412, + 473, + 444, + 484 + ], + "score": 0.93, + "content": "\\mathrm { t r } ( H _ { \\pmb { x } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "is the sum of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 502, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 187, + 494 + ], + "score": 1.0, + "content": "the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 187, + 485, + 201, + 493 + ], + "score": 0.91, + "content": "H _ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 483, + 502, + 494 + ], + "score": 1.0, + "content": ". We can further express out the right hand side of Eq (1) as follows", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 471, + 506, + 494 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 501, + 433, + 520 + ], + "lines": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "spans": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } [ \\| \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\nu \\left( \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } + p \\sigma ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ddd56589f813109649282d6c28fe274c054c5622cafae5631708084905907ae1.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 178, + 501, + 433, + 520 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 403, + 539 + ], + "score": 1.0, + "content": "Based on the above approximation, we can estimate the value of", + "type": "text" + }, + { + "bbox": [ + 403, + 531, + 409, + 535 + ], + "score": 0.87, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 523, + 486, + 539 + ], + "score": 1.0, + "content": "in Definition 3:", + "type": "text" + }, + { + "bbox": [ + 486, + 527, + 505, + 538 + ], + "score": 0.82, + "content": "\\nu \\lesssim", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 108, + 535, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 108, + 538, + 187, + 556 + ], + "score": 0.93, + "content": "\\frac { \\mathop { \\mathrm { t r } } ( H _ { \\pmb { x } } ) \\sigma ^ { 2 } + \\mu \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } } { p \\sigma ^ { 2 } + \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 535, + 189, + 556 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 193, + 537, + 288, + 552 + ], + "score": 1.0, + "content": "For relatively large", + "type": "text" + }, + { + "bbox": [ + 288, + 541, + 299, + 550 + ], + "score": 0.9, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 537, + 362, + 552 + ], + "score": 1.0, + "content": ", this implies", + "type": "text" + }, + { + "bbox": [ + 363, + 539, + 412, + 555 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\nu \\approx \\frac { \\mathrm { t r } ( H _ { x } ) } { p } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "tr(Hx) that is the average", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 552, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 162, + 567 + ], + "score": 1.0, + "content": "curvature at", + "type": "text" + }, + { + "bbox": [ + 163, + 558, + 169, + 563 + ], + "score": 0.89, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 552, + 505, + 567 + ], + "score": 1.0, + "content": ". Large variance is a reasonable setting because meaningful differential privacy", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 313, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 313, + 577 + ], + "score": 1.0, + "content": "guarantee requires non-trivial amount of noise.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 523, + 505, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 253, + 594 + ], + "score": 1.0, + "content": "The above analysis suggests that", + "type": "text" + }, + { + "bbox": [ + 254, + 587, + 260, + 591 + ], + "score": 0.89, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 581, + 460, + 594 + ], + "score": 1.0, + "content": "can be independent of and much larger than", + "type": "text" + }, + { + "bbox": [ + 460, + 587, + 466, + 594 + ], + "score": 0.89, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 581, + 505, + 594 + ], + "score": 1.0, + "content": ". This is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 361, + 605 + ], + "score": 1.0, + "content": "indeed true for many convex objectives. Let us take the", + "type": "text" + }, + { + "bbox": [ + 362, + 595, + 369, + 604 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "regularized logistic regression", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 395, + 617 + ], + "score": 1.0, + "content": "as an example. The objective is strongly convex only due to the", + "type": "text" + }, + { + "bbox": [ + 396, + 606, + 403, + 615 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 603, + 506, + 617 + ], + "score": 1.0, + "content": "regularizer. Thus, the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 455, + 627 + ], + "score": 1.0, + "content": "minimum curvature (strongly convex coefficient) is the regularization coefficient", + "type": "text" + }, + { + "bbox": [ + 456, + 617, + 462, + 624 + ], + "score": 0.9, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 614, + 505, + 627 + ], + "score": 1.0, + "content": ". Sharmir", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 624, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 104, + 624, + 270, + 641 + ], + "score": 1.0, + "content": "et al. [1] shows the optimal choice of", + "type": "text" + }, + { + "bbox": [ + 271, + 629, + 277, + 636 + ], + "score": 0.9, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 624, + 289, + 641 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 290, + 627, + 330, + 639 + ], + "score": 0.94, + "content": "\\Theta ( n ^ { - 1 / 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 624, + 506, + 641 + ], + "score": 1.0, + "content": "(Section 4.3 in [1]). In practice, typical", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 636, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 146, + 651 + ], + "score": 1.0, + "content": "choice of", + "type": "text" + }, + { + "bbox": [ + 146, + 640, + 153, + 648 + ], + "score": 0.91, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 636, + 342, + 651 + ], + "score": 1.0, + "content": "is even smaller and could be on the order of", + "type": "text" + }, + { + "bbox": [ + 342, + 639, + 359, + 648 + ], + "score": 0.91, + "content": "n ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 636, + 506, + 651 + ], + "score": 1.0, + "content": ". Figure 1 compares the minimum", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "and average curvatures of regularized logistic regression during the training process. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 416, + 673 + ], + "score": 1.0, + "content": "average curvature is basically unaffected by the regularization term", + "type": "text" + }, + { + "bbox": [ + 417, + 662, + 423, + 669 + ], + "score": 0.88, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 660, + 505, + 673 + ], + "score": 1.0, + "content": ". In contrast, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 235, + 684 + ], + "score": 1.0, + "content": "minimum curvature reaches", + "type": "text" + }, + { + "bbox": [ + 235, + 673, + 241, + 680 + ], + "score": 0.88, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "in first few steps. Therefore removing the dependence on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "minimum curvature is a significant improvement. We also plot the curvatures for another", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 692, + 497, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 497, + 705 + ], + "score": 1.0, + "content": "dataset KDDCup99 in the Appendix C. The resulting curvatures are similar to Figure 1.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 581, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 310, + 723 + ], + "score": 1.0, + "content": "Perturbation noise is necessary to attain", + "type": "text" + }, + { + "bbox": [ + 311, + 713, + 335, + 721 + ], + "score": 0.9, + "content": "\\nu > \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 708, + 401, + 723 + ], + "score": 1.0, + "content": ". We note that", + "type": "text" + }, + { + "bbox": [ + 401, + 714, + 425, + 721 + ], + "score": 0.9, + "content": "\\nu = \\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "when the training", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 384, + 733 + ], + "score": 1.0, + "content": "process does not involve perturbation noise (corresponding to", + "type": "text" + }, + { + "bbox": [ + 384, + 723, + 410, + 730 + ], + "score": 0.91, + "content": "\\sigma = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "in Definition 3). For", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "example, objective/output perturbation cannot utilize this expected curvature condition as", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "no noise is injected in their training process. Therefore, among three existing perturbation", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 276, + 475, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 475, + 288 + ], + "score": 1.0, + "content": "methods, gradient perturbation is the only method can leverage such effect of noise.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 135, + 81, + 258, + 177 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 81, + 258, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 81, + 258, + 177 + ], + "spans": [ + { + "bbox": [ + 135, + 81, + 258, + 177 + ], + "score": 0.959, + "type": "image", + "image_path": "ae96e95a757d3581547102e379e153c5a8968b1bb295cc45f696ce4cc9d3ee9b.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 135, + 81, + 258, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 129.0, + 258, + 177.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 187, + 288, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 187, + 288, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 288, + 199 + ], + "score": 1.0, + "content": "Figure 1: Curvatures of regularized lo-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 198, + 288, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 288, + 210 + ], + "score": 1.0, + "content": "gistic regression on Adult dataset over", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 289, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 289, + 222 + ], + "score": 1.0, + "content": "training. Dot/cross symbol represents av-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 221, + 278, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 278, + 233 + ], + "score": 1.0, + "content": "erage/minimum curvature respectively.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 353, + 85, + 477, + 183 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 85, + 477, + 183 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 353, + 85, + 477, + 183 + ], + "spans": [ + { + "bbox": [ + 353, + 85, + 477, + 183 + ], + "score": 0.96, + "type": "image", + "image_path": "6923d3dc5e0e5aeb483be0ad716b1f4b6fae1ccf325f6cb09ef192bbd44423a7.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 353, + 85, + 477, + 134.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 353, + 134.0, + 477, + 183.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 324, + 193, + 505, + 227 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 324, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 324, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Figure 2: Illustration of a generic loss", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 323, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 323, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "function in the high dimensional setting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 323, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 323, + 214, + 327, + 228 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 327, + 218, + 347, + 226 + ], + "score": 0.81, + "content": "p { > } n", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 214, + 505, + 228 + ], + "score": 1.0, + "content": ", Figure 3 in Negahban et al. (2012)).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 7.75 + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "example, objective/output perturbation cannot utilize this expected curvature condition as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 277 + ], + "score": 1.0, + "content": "no noise is injected in their training process. Therefore, among three existing perturbation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 276, + 475, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 475, + 288 + ], + "score": 1.0, + "content": "methods, gradient perturbation is the only method can leverage such effect of noise.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 292, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 176, + 306 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 202, + 304 + ], + "score": 0.87, + "content": "\\mu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 291, + 347, + 306 + ], + "score": 1.0, + "content": "does not necessarily lead to", + "type": "text" + }, + { + "bbox": [ + 347, + 295, + 372, + 302 + ], + "score": 0.87, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 291, + 505, + 306 + ], + "score": 1.0, + "content": ". A concrete example is given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "in Figure 2 (from Negahban et al. (2012)). It provides an illustration of the loss function in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 203, + 328 + ], + "score": 1.0, + "content": "the high-dimensional", + "type": "text" + }, + { + "bbox": [ + 203, + 315, + 232, + 326 + ], + "score": 0.79, + "content": "( p > n )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "setting, i.e., the resticted strongly convex scenario: the loss is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "curved in certain directions but completely flat in others. The average curvature of such", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "objective is always positive but the worst curvature is 0. Though some recent work shows the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "utility guarantee of high dimensional DP-ERM task may not depend on the worst curvature", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 357, + 502, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 456, + 371 + ], + "score": 1.0, + "content": "(Wang & Gu, 2019), Figure 2 still provides a good illustration for the case of", + "type": "text" + }, + { + "bbox": [ + 456, + 361, + 502, + 370 + ], + "score": 0.93, + "content": "\\nu > \\mu = 0", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "Moreover, as shown in Figure 1, the average curvature of logistic regression on Adult dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "is above 0 during the training procedure even the regularization term is 0. As we will show", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 391, + 488, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 178, + 404 + ], + "score": 1.0, + "content": "later, a positive", + "type": "text" + }, + { + "bbox": [ + 178, + 396, + 184, + 401 + ], + "score": 0.85, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 391, + 488, + 404 + ], + "score": 1.0, + "content": "over the optimization path is sufficient for our optimization analysis.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 107, + 415, + 443, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 446, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 446, + 429 + ], + "score": 1.0, + "content": "3.2 Utility Guarantee of DP-GD Based on Expected Curvature", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "In this section we show that the expected curvature can be used to improve the utility bound", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 220, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 220, + 460 + ], + "score": 1.0, + "content": "of DP-GD (Algorithm 1).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "table", + "bbox": [ + 106, + 473, + 500, + 560 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 473, + 500, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 473, + 500, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 500, + 560 + ], + "score": 0.547, + "html": "
Algorithm 1: Differentially Private Gradient Descent (DP-GD)
Input: Privacy parameters e,δ; running steps T; learning rate n. Loss function F(x) with Lipschitz constant L.
for t=1 to T do
Compute gt = VF(xt).
Update parameter Xt+1 = xt - Nt (gt + zt), where zt ~ N(0,σ²Ip). end for
", + "type": "table", + "image_path": "1ba6c1d6a079a2fb666b8a1dd55e0d55a4a8bf0052ea59e52b3f3cb9d4bd6cba.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 106, + 473, + 500, + 502.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 106, + 502.0, + 500, + 531.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 106, + 531.0, + 500, + 560.0 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 104, + 577, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 176, + 595 + ], + "score": 1.0, + "content": "Algorithm 1 is", + "type": "text" + }, + { + "bbox": [ + 177, + 583, + 198, + 594 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 577, + 262, + 595 + ], + "score": 1.0, + "content": "-DP if we set", + "type": "text" + }, + { + "bbox": [ + 262, + 577, + 364, + 601 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sigma _ { t } = \\Theta \\left( \\frac { L \\sqrt { T \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "(Jayaraman et al., 2018). Let", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 107, + 604, + 153, + 611 + ], + "score": 0.83, + "content": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 599, + 260, + 612 + ], + "score": 1.0, + "content": "be the training path and", + "type": "text" + }, + { + "bbox": [ + 261, + 601, + 349, + 612 + ], + "score": 0.91, + "content": "\\nu = \\operatorname* { m i n } \\{ \\nu _ { 1 } , \\dots , \\nu _ { T } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "be the minimum expected curvature", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 610, + 483, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 450, + 623 + ], + "score": 1.0, + "content": "over the path. Now we present the utility guarantee of DP-GD for the case of", + "type": "text" + }, + { + "bbox": [ + 450, + 613, + 474, + 621 + ], + "score": 0.89, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 610, + 483, + 623 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 253, + 639 + ], + "score": 1.0, + "content": "Theorem 1 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 253, + 628, + 279, + 636 + ], + "score": 0.91, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 624, + 333, + 639 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 333, + 628, + 341, + 635 + ], + "score": 0.87, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 624, + 356, + 639 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 356, + 628, + 363, + 635 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 624, + 430, + 639 + ], + "score": 1.0, + "content": "-Lipschitz and", + "type": "text" + }, + { + "bbox": [ + 430, + 628, + 437, + 637 + ], + "score": 0.87, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 624, + 497, + 639 + ], + "score": 1.0, + "content": "-smooth with", + "type": "text" + }, + { + "bbox": [ + 497, + 631, + 504, + 635 + ], + "score": 0.81, + "content": "\\nu", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 102, + 633, + 482, + 658 + ], + "spans": [ + { + "bbox": [ + 102, + 633, + 210, + 658 + ], + "score": 1.0, + "content": "expected curvature. Set", + "type": "text" + }, + { + "bbox": [ + 210, + 641, + 236, + 655 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 633, + 242, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 640, + 293, + 655 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 633, + 315, + 658 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 315, + 639, + 435, + 657 + ], + "score": 0.92, + "content": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 633, + 482, + 658 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 664, + 421, + 690 + ], + "lines": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "spans": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "score": 0.93, + "content": "\\mathbb { E } \\left[ F \\left( \\pmb { x } _ { T + 1 } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) \\right] = \\mathcal { O } \\left( \\frac { \\beta p \\log { \\left( n \\right) L ^ { 2 } } \\log { \\left( 1 / \\delta \\right) } } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "eeca38ba068bd130824132e5f33e7effcefca8af8b87db4586597c28aa2a6933.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 701, + 372, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 372, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 372, + 715 + ], + "score": 1.0, + "content": "Proof. All proofs in this paper are relegated to Appendix A.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 494, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 495, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 484, + 733 + ], + "score": 1.0, + "content": "Remark 1. Theorem 3 only depends on the expected curvature over the training path", + "type": "text" + }, + { + "bbox": [ + 485, + 725, + 491, + 730 + ], + "score": 0.84, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 719, + 495, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 702, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 495, + 703, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 495, + 703, + 505, + 713 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 135, + 81, + 258, + 177 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 135, + 81, + 258, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 135, + 81, + 258, + 177 + ], + "spans": [ + { + "bbox": [ + 135, + 81, + 258, + 177 + ], + "score": 0.959, + "type": "image", + "image_path": "ae96e95a757d3581547102e379e153c5a8968b1bb295cc45f696ce4cc9d3ee9b.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 135, + 81, + 258, + 129.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 135, + 129.0, + 258, + 177.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 187, + 288, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 187, + 288, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 288, + 199 + ], + "score": 1.0, + "content": "Figure 1: Curvatures of regularized lo-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 198, + 288, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 288, + 210 + ], + "score": 1.0, + "content": "gistic regression on Adult dataset over", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 209, + 289, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 289, + 222 + ], + "score": 1.0, + "content": "training. Dot/cross symbol represents av-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 221, + 278, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 278, + 233 + ], + "score": 1.0, + "content": "erage/minimum curvature respectively.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 353, + 85, + 477, + 183 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 85, + 477, + 183 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 353, + 85, + 477, + 183 + ], + "spans": [ + { + "bbox": [ + 353, + 85, + 477, + 183 + ], + "score": 0.96, + "type": "image", + "image_path": "6923d3dc5e0e5aeb483be0ad716b1f4b6fae1ccf325f6cb09ef192bbd44423a7.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 353, + 85, + 477, + 134.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 353, + 134.0, + 477, + 183.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 324, + 193, + 505, + 227 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 324, + 192, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 324, + 192, + 505, + 205 + ], + "score": 1.0, + "content": "Figure 2: Illustration of a generic loss", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 323, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 323, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "function in the high dimensional setting", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 323, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 323, + 214, + 327, + 228 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 327, + 218, + 347, + 226 + ], + "score": 0.81, + "content": "p { > } n", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 214, + 505, + 228 + ], + "score": 1.0, + "content": ", Figure 3 in Negahban et al. (2012)).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + } + ], + "index": 7.75 + }, + { + "type": "text", + "bbox": [ + 107, + 254, + 505, + 287 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 253, + 505, + 288 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 292, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 176, + 306 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 202, + 304 + ], + "score": 0.87, + "content": "\\mu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 291, + 347, + 306 + ], + "score": 1.0, + "content": "does not necessarily lead to", + "type": "text" + }, + { + "bbox": [ + 347, + 295, + 372, + 302 + ], + "score": 0.87, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 291, + 505, + 306 + ], + "score": 1.0, + "content": ". A concrete example is given", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "in Figure 2 (from Negahban et al. (2012)). It provides an illustration of the loss function in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 313, + 506, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 203, + 328 + ], + "score": 1.0, + "content": "the high-dimensional", + "type": "text" + }, + { + "bbox": [ + 203, + 315, + 232, + 326 + ], + "score": 0.79, + "content": "( p > n )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 313, + 506, + 328 + ], + "score": 1.0, + "content": "setting, i.e., the resticted strongly convex scenario: the loss is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "curved in certain directions but completely flat in others. The average curvature of such", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "objective is always positive but the worst curvature is 0. Though some recent work shows the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "utility guarantee of high dimensional DP-ERM task may not depend on the worst curvature", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 357, + 502, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 456, + 371 + ], + "score": 1.0, + "content": "(Wang & Gu, 2019), Figure 2 still provides a good illustration for the case of", + "type": "text" + }, + { + "bbox": [ + 456, + 361, + 502, + 370 + ], + "score": 0.93, + "content": "\\nu > \\mu = 0", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 368, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 368, + 506, + 383 + ], + "score": 1.0, + "content": "Moreover, as shown in Figure 1, the average curvature of logistic regression on Adult dataset", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 379, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 506, + 394 + ], + "score": 1.0, + "content": "is above 0 during the training procedure even the regularization term is 0. As we will show", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 391, + 488, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 178, + 404 + ], + "score": 1.0, + "content": "later, a positive", + "type": "text" + }, + { + "bbox": [ + 178, + 396, + 184, + 401 + ], + "score": 0.85, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 391, + 488, + 404 + ], + "score": 1.0, + "content": "over the optimization path is sufficient for our optimization analysis.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 291, + 506, + 404 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 415, + 443, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 446, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 446, + 429 + ], + "score": 1.0, + "content": "3.2 Utility Guarantee of DP-GD Based on Expected Curvature", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 449 + ], + "score": 1.0, + "content": "In this section we show that the expected curvature can be used to improve the utility bound", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 446, + 220, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 220, + 460 + ], + "score": 1.0, + "content": "of DP-GD (Algorithm 1).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 437, + 505, + 460 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 473, + 500, + 560 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 473, + 500, + 560 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 473, + 500, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 500, + 560 + ], + "score": 0.547, + "html": "
Algorithm 1: Differentially Private Gradient Descent (DP-GD)
Input: Privacy parameters e,δ; running steps T; learning rate n. Loss function F(x) with Lipschitz constant L.
for t=1 to T do
Compute gt = VF(xt).
Update parameter Xt+1 = xt - Nt (gt + zt), where zt ~ N(0,σ²Ip). end for
", + "type": "table", + "image_path": "1ba6c1d6a079a2fb666b8a1dd55e0d55a4a8bf0052ea59e52b3f3cb9d4bd6cba.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 106, + 473, + 500, + 502.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 106, + 502.0, + 500, + 531.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 106, + 531.0, + 500, + 560.0 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 575, + 505, + 623 + ], + "lines": [ + { + "bbox": [ + 104, + 577, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 176, + 595 + ], + "score": 1.0, + "content": "Algorithm 1 is", + "type": "text" + }, + { + "bbox": [ + 177, + 583, + 198, + 594 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 577, + 262, + 595 + ], + "score": 1.0, + "content": "-DP if we set", + "type": "text" + }, + { + "bbox": [ + 262, + 577, + 364, + 601 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sigma _ { t } = \\Theta \\left( \\frac { L \\sqrt { T \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "(Jayaraman et al., 2018). Let", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 107, + 604, + 153, + 611 + ], + "score": 0.83, + "content": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 599, + 260, + 612 + ], + "score": 1.0, + "content": "be the training path and", + "type": "text" + }, + { + "bbox": [ + 261, + 601, + 349, + 612 + ], + "score": 0.91, + "content": "\\nu = \\operatorname* { m i n } \\{ \\nu _ { 1 } , \\dots , \\nu _ { T } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "be the minimum expected curvature", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 610, + 483, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 450, + 623 + ], + "score": 1.0, + "content": "over the path. Now we present the utility guarantee of DP-GD for the case of", + "type": "text" + }, + { + "bbox": [ + 450, + 613, + 474, + 621 + ], + "score": 0.89, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 610, + 483, + 623 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 577, + 506, + 623 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 625, + 505, + 655 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 253, + 639 + ], + "score": 1.0, + "content": "Theorem 1 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 253, + 628, + 279, + 636 + ], + "score": 0.91, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 624, + 333, + 639 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 333, + 628, + 341, + 635 + ], + "score": 0.87, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 624, + 356, + 639 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 356, + 628, + 363, + 635 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 624, + 430, + 639 + ], + "score": 1.0, + "content": "-Lipschitz and", + "type": "text" + }, + { + "bbox": [ + 430, + 628, + 437, + 637 + ], + "score": 0.87, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 624, + 497, + 639 + ], + "score": 1.0, + "content": "-smooth with", + "type": "text" + }, + { + "bbox": [ + 497, + 631, + 504, + 635 + ], + "score": 0.81, + "content": "\\nu", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 102, + 633, + 482, + 658 + ], + "spans": [ + { + "bbox": [ + 102, + 633, + 210, + 658 + ], + "score": 1.0, + "content": "expected curvature. Set", + "type": "text" + }, + { + "bbox": [ + 210, + 641, + 236, + 655 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 633, + 242, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 243, + 640, + 293, + 655 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 633, + 315, + 658 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 315, + 639, + 435, + 657 + ], + "score": 0.92, + "content": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 633, + 482, + 658 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 102, + 624, + 504, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 664, + 421, + 690 + ], + "lines": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "spans": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "score": 0.93, + "content": "\\mathbb { E } \\left[ F \\left( \\pmb { x } _ { T + 1 } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) \\right] = \\mathcal { O } \\left( \\frac { \\beta p \\log { \\left( n \\right) L ^ { 2 } } \\log { \\left( 1 / \\delta \\right) } } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "eeca38ba068bd130824132e5f33e7effcefca8af8b87db4586597c28aa2a6933.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 189, + 664, + 421, + 690 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 701, + 372, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 700, + 372, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 372, + 715 + ], + "score": 1.0, + "content": "Proof. All proofs in this paper are relegated to Appendix A.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 700, + 372, + 715 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 494, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 719, + 495, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 484, + 733 + ], + "score": 1.0, + "content": "Remark 1. Theorem 3 only depends on the expected curvature over the training path", + "type": "text" + }, + { + "bbox": [ + 485, + 725, + 491, + 730 + ], + "score": 0.84, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 719, + 495, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 719, + 495, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "The expectation is taken over the algorithm randomness if without specification. Theorem 1", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "score": 1.0, + "content": "significantly improves the original analysis of DP-GD because of our arguments in Section 3.1.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 117, + 118 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 117, + 107, + 141, + 114 + ], + "score": 0.9, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 102, + 506, + 118 + ], + "score": 1.0, + "content": ", then the curvatures are flatten in all directions. One example is the linear function,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "which is used by Bassily et al. (2014) to derive their utility lower bound. Such simple function", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "may not be commonly used as loss function in practice. Nonetheless, we give the utility", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 308, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 217, + 148 + ], + "score": 1.0, + "content": "guarantee for the case of", + "type": "text" + }, + { + "bbox": [ + 217, + 139, + 242, + 147 + ], + "score": 0.83, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 138, + 308, + 148 + ], + "score": 1.0, + "content": "in Theorem 2.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 104, + 148, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 246, + 168 + ], + "score": 1.0, + "content": "Theorem 2 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 246, + 155, + 270, + 162 + ], + "score": 0.86, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 148, + 321, + 168 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 321, + 155, + 329, + 162 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 148, + 342, + 168 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 342, + 155, + 349, + 162 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 148, + 412, + 168 + ], + "score": 1.0, + "content": "-Lipschitz and", + "type": "text" + }, + { + "bbox": [ + 412, + 155, + 419, + 164 + ], + "score": 0.89, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 148, + 476, + 168 + ], + "score": 1.0, + "content": "-smooth. Set", + "type": "text" + }, + { + "bbox": [ + 476, + 153, + 502, + 167 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta = \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 148, + 507, + 168 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 103, + 162, + 433, + 188 + ], + "spans": [ + { + "bbox": [ + 103, + 166, + 147, + 181 + ], + "score": 1.0, + "content": "T = nβ\u000f√", + "type": "text" + }, + { + "bbox": [ + 144, + 162, + 165, + 188 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 165, + 167, + 286, + 186 + ], + "score": 0.94, + "content": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 162, + 310, + 188 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 311, + 169, + 386, + 183 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\bar { \\pmb x } = \\frac { 1 } { T } \\sum _ { i = 1 } ^ { T } \\pmb x _ { i + 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 162, + 433, + 188 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 192, + 398, + 219 + ], + "lines": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "spans": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F \\left( \\bar { \\pmb { x } } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log \\left( 1 / \\delta \\right) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "9b0a774c848f175d459322deb7291da3ffcdcbd61e35dd5afdd7049763082a2d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "We use parameter averaging to reduce the influence of perturbation noise because gradient", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 241, + 367, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 339, + 253 + ], + "score": 1.0, + "content": "update does not have strong contraction effect when", + "type": "text" + }, + { + "bbox": [ + 339, + 244, + 363, + 251 + ], + "score": 0.91, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 241, + 367, + 253 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 265, + 449, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 451, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 451, + 279 + ], + "score": 1.0, + "content": "3.3 Utiltiy Guarantee of DP-SGD Based on Expected Curvature", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 504, + 299 + ], + "score": 1.0, + "content": "Stochastic gradient descent has become one of the most popular optimization methods", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "because of the cheap one-iteration cost. In this section we show that expected curvature can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 429, + 321 + ], + "score": 1.0, + "content": "also improve the utility analysis for DP-SGD (Algorithm 2). We note that", + "type": "text" + }, + { + "bbox": [ + 429, + 310, + 457, + 321 + ], + "score": 0.94, + "content": "\\nabla f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "represents", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 320, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 318, + 331 + ], + "score": 1.0, + "content": "an element from the subgradient set evaluated at", + "type": "text" + }, + { + "bbox": [ + 318, + 324, + 325, + 329 + ], + "score": 0.88, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 320, + 504, + 331 + ], + "score": 1.0, + "content": "when the objective is not smooth. Before", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "stating our theorem, we introduce the moments accountant technique (Lemma 1) that is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 281, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 281, + 353 + ], + "score": 1.0, + "content": "essential to establish privacy guarantee.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 345, + 369 + ], + "score": 1.0, + "content": "Lemma 1 (Abadi et al. (2016)). There exist constants", + "type": "text" + }, + { + "bbox": [ + 346, + 361, + 354, + 367 + ], + "score": 0.83, + "content": "c _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 355, + 376, + 369 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 362, + 385, + 367 + ], + "score": 0.84, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "so that given running steps", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 115, + 377 + ], + "score": 0.87, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 366, + 155, + 381 + ], + "score": 1.0, + "content": ", for any √", + "type": "text" + }, + { + "bbox": [ + 155, + 369, + 204, + 380 + ], + "score": 0.93, + "content": "\\epsilon < c _ { 1 } T / n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 366, + 256, + 381 + ], + "score": 1.0, + "content": ", Algorithm", + "type": "text" + }, + { + "bbox": [ + 257, + 370, + 263, + 377 + ], + "score": 0.74, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 366, + 275, + 381 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 276, + 369, + 297, + 380 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 366, + 425, + 381 + ], + "score": 1.0, + "content": "-differentially private for any", + "type": "text" + }, + { + "bbox": [ + 425, + 370, + 448, + 378 + ], + "score": 0.91, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 380, + 181, + 397 + ], + "spans": [ + { + "bbox": [ + 107, + 380, + 181, + 397 + ], + "score": 0.94, + "content": "\\sigma \\ge c _ { 2 } \\frac { \\sqrt { T l o g ( 1 / \\delta ) } } { n \\epsilon }", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 106, + 416, + 443, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 443, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 443, + 432 + ], + "score": 1.0, + "content": "Algorithm 2: Differentially Private Stochastic Gradient Descent (DP-SGD)", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 104, + 432, + 475, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 475, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 187, + 445 + ], + "score": 1.0, + "content": "Input : Dataset", + "type": "text" + }, + { + "bbox": [ + 187, + 434, + 262, + 444 + ], + "score": 0.93, + "content": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 430, + 378, + 445 + ], + "score": 1.0, + "content": ". Individual loss function:", + "type": "text" + }, + { + "bbox": [ + 378, + 434, + 450, + 444 + ], + "score": 0.93, + "content": "f _ { i } \\left( \\pmb { x } \\right) = f \\left( \\pmb { x } ; d _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 430, + 475, + 445 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 148, + 441, + 439, + 457 + ], + "spans": [ + { + "bbox": [ + 148, + 441, + 232, + 457 + ], + "score": 1.0, + "content": "Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 233, + 446, + 240, + 453 + ], + "score": 0.88, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 441, + 344, + 457 + ], + "score": 1.0, + "content": ". Number of iterations:", + "type": "text" + }, + { + "bbox": [ + 345, + 446, + 352, + 453 + ], + "score": 0.88, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 441, + 425, + 457 + ], + "score": 1.0, + "content": ". Learning rate:", + "type": "text" + }, + { + "bbox": [ + 425, + 448, + 434, + 455 + ], + "score": 0.88, + "content": "\\eta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 441, + 439, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 98, + 455, + 184, + 465 + ], + "lines": [ + { + "bbox": [ + 96, + 453, + 185, + 466 + ], + "spans": [ + { + "bbox": [ + 96, + 453, + 124, + 466 + ], + "score": 1.0, + "content": "1 for", + "type": "text" + }, + { + "bbox": [ + 124, + 457, + 147, + 464 + ], + "score": 0.87, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 453, + 160, + 466 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 160, + 456, + 168, + 464 + ], + "score": 0.89, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 453, + 185, + 466 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 102, + 466, + 431, + 502 + ], + "lines": [ + { + "bbox": [ + 120, + 463, + 252, + 478 + ], + "spans": [ + { + "bbox": [ + 120, + 463, + 157, + 478 + ], + "score": 1.0, + "content": "Sample", + "type": "text" + }, + { + "bbox": [ + 157, + 468, + 164, + 476 + ], + "score": 0.88, + "content": "i _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 463, + 191, + 478 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 191, + 467, + 203, + 477 + ], + "score": 0.86, + "content": "[ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 463, + 252, + 478 + ], + "score": 1.0, + "content": "uniformly.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 121, + 475, + 232, + 489 + ], + "spans": [ + { + "bbox": [ + 121, + 475, + 165, + 489 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 165, + 478, + 228, + 488 + ], + "score": 0.83, + "content": "{ \\pmb g } _ { t } = \\nabla f _ { i _ { t } } \\left( { \\pmb x } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 475, + 232, + 489 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 120, + 487, + 432, + 502 + ], + "spans": [ + { + "bbox": [ + 120, + 487, + 205, + 502 + ], + "score": 1.0, + "content": "Update parameter", + "type": "text" + }, + { + "bbox": [ + 205, + 490, + 309, + 501 + ], + "score": 0.91, + "content": "{ \\pmb x } _ { t + 1 } = { \\pmb x } _ { t } - \\eta _ { t } \\left( { \\pmb g } _ { t } + { \\pmb z } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 487, + 343, + 502 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 344, + 489, + 427, + 502 + ], + "score": 0.92, + "content": "z _ { t } \\sim \\mathcal { N } \\left( 0 , L ^ { 2 } \\sigma ^ { 2 } I _ { p } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 487, + 432, + 502 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 97, + 502, + 127, + 511 + ], + "lines": [ + { + "bbox": [ + 95, + 501, + 127, + 513 + ], + "spans": [ + { + "bbox": [ + 95, + 501, + 127, + 513 + ], + "score": 1.0, + "content": "5 end", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 440, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 441, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 174, + 543 + ], + "score": 1.0, + "content": "For the case of", + "type": "text" + }, + { + "bbox": [ + 175, + 532, + 199, + 540 + ], + "score": 0.9, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 528, + 441, + 543 + ], + "score": 1.0, + "content": ", Theorem 3 presents the utility guarantee of DP-SGD.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 246, + 557 + ], + "score": 1.0, + "content": "Theorem 3 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 246, + 547, + 271, + 555 + ], + "score": 0.9, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 544, + 321, + 557 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 321, + 547, + 330, + 554 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 544, + 343, + 557 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 343, + 547, + 350, + 554 + ], + "score": 0.84, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 544, + 415, + 557 + ], + "score": 1.0, + "content": "-Lipschitz with", + "type": "text" + }, + { + "bbox": [ + 415, + 550, + 421, + 554 + ], + "score": 0.56, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "expected curvature.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 102, + 552, + 494, + 572 + ], + "spans": [ + { + "bbox": [ + 102, + 552, + 140, + 572 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 140, + 561, + 146, + 565 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 552, + 226, + 572 + ], + "score": 1.0, + "content": "based on Lemma", + "type": "text" + }, + { + "bbox": [ + 226, + 559, + 231, + 565 + ], + "score": 0.55, + "content": "\\mathit { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 552, + 290, + 572 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 291, + 558, + 312, + 568 + ], + "score": 0.88, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 552, + 353, + 572 + ], + "score": 1.0, + "content": "-DP. Set", + "type": "text" + }, + { + "bbox": [ + 353, + 556, + 385, + 569 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 552, + 407, + 572 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 556, + 447, + 565 + ], + "score": 0.91, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 552, + 494, + 572 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 576, + 412, + 601 + ], + "lines": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "spans": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "score": 0.91, + "content": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log \\left( n \\right) \\log \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .", + "type": "interline_equation", + "image_path": "74488a3dd9a58c634b0687801f4c886ef54449c747129ed55fa6e4e5d59e95c9.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 373, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 374, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 374, + 620 + ], + "score": 1.0, + "content": "Remark 2. Theorem 3 does not require smooth assumption.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 506, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 400, + 640 + ], + "score": 1.0, + "content": "Theorem 3 shows the utility guarantee of DP-SGD also depends on", + "type": "text" + }, + { + "bbox": [ + 400, + 633, + 406, + 637 + ], + "score": 0.86, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 627, + 461, + 640 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 461, + 633, + 468, + 640 + ], + "score": 0.89, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 627, + 505, + 640 + ], + "score": 1.0, + "content": ". We set", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 107, + 640, + 155, + 651 + ], + "score": 0.94, + "content": "T = \\Theta ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 637, + 361, + 651 + ], + "score": 1.0, + "content": "following Bassily et al. (2014). We note that", + "type": "text" + }, + { + "bbox": [ + 361, + 640, + 409, + 651 + ], + "score": 0.94, + "content": "T = \\Theta ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "is necessary even for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 220, + 663 + ], + "score": 1.0, + "content": "non-private SGD to reach", + "type": "text" + }, + { + "bbox": [ + 220, + 651, + 241, + 662 + ], + "score": 0.92, + "content": "1 / n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "precision. We next show for a relatively coarse precision, the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 292, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 292, + 674 + ], + "score": 1.0, + "content": "running time can be reduced significantly.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 104, + 675, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 102, + 675, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 102, + 675, + 207, + 707 + ], + "score": 1.0, + "content": "Theorem 4. SupposeLemma 1 to guarantee", + "type": "text" + }, + { + "bbox": [ + 212, + 678, + 219, + 685 + ], + "score": 0.89, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 675, + 232, + 707 + ], + "score": 1.0, + "content": "s-", + "type": "text" + }, + { + "bbox": [ + 236, + 678, + 243, + 685 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 675, + 270, + 707 + ], + "score": 1.0, + "content": "Lipsc. Set", + "type": "text" + }, + { + "bbox": [ + 302, + 675, + 313, + 707 + ], + "score": 1.0, + "content": "th a", + "type": "text" + }, + { + "bbox": [ + 314, + 681, + 320, + 685 + ], + "score": 0.82, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 675, + 324, + 707 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 359, + 675, + 403, + 707 + ], + "score": 1.0, + "content": "curvatur. Suppose", + "type": "text" + }, + { + "bbox": [ + 433, + 675, + 453, + 707 + ], + "score": 1.0, + "content": "oose , we", + "type": "text" + }, + { + "bbox": [ + 454, + 681, + 460, + 685 + ], + "score": 0.8, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 675, + 506, + 707 + ], + "score": 1.0, + "content": "based onave", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 208, + 687, + 433, + 702 + ], + "spans": [ + { + "bbox": [ + 208, + 689, + 229, + 699 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 689, + 247, + 696 + ], + "score": 0.39, + "content": "D P", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 687, + 302, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 689, + 358, + 702 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 688, + 433, + 699 + ], + "score": 0.92, + "content": "p < n ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 709, + 396, + 735 + ], + "lines": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "spans": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F \\left( \\mathbf { x } _ { T } \\right) - F \\left( \\mathbf { x } _ { * } \\right) ] = { \\mathcal { O } } \\left( { \\frac { { \\sqrt { p } } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } } \\right) .", + "type": "interline_equation", + "image_path": "72d34ec70e7e7bcf03373d74d385c02f85c24ca9633ccd5e91ec3c810b08e74b.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 327, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "The expectation is taken over the algorithm randomness if without specification. Theorem 1", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 506, + 105 + ], + "score": 1.0, + "content": "significantly improves the original analysis of DP-GD because of our arguments in Section 3.1.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 117, + 118 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 117, + 107, + 141, + 114 + ], + "score": 0.9, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 102, + 506, + 118 + ], + "score": 1.0, + "content": ", then the curvatures are flatten in all directions. One example is the linear function,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "which is used by Bassily et al. (2014) to derive their utility lower bound. Such simple function", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "may not be commonly used as loss function in practice. Nonetheless, we give the utility", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 308, + 148 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 217, + 148 + ], + "score": 1.0, + "content": "guarantee for the case of", + "type": "text" + }, + { + "bbox": [ + 217, + 139, + 242, + 147 + ], + "score": 0.83, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 138, + 308, + 148 + ], + "score": 1.0, + "content": "in Theorem 2.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 104, + 83, + 506, + 148 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 104, + 148, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 246, + 168 + ], + "score": 1.0, + "content": "Theorem 2 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 246, + 155, + 270, + 162 + ], + "score": 0.86, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 148, + 321, + 168 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 321, + 155, + 329, + 162 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 148, + 342, + 168 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 342, + 155, + 349, + 162 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 148, + 412, + 168 + ], + "score": 1.0, + "content": "-Lipschitz and", + "type": "text" + }, + { + "bbox": [ + 412, + 155, + 419, + 164 + ], + "score": 0.89, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 148, + 476, + 168 + ], + "score": 1.0, + "content": "-smooth. Set", + "type": "text" + }, + { + "bbox": [ + 476, + 153, + 502, + 167 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta = \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 148, + 507, + 168 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 103, + 162, + 433, + 188 + ], + "spans": [ + { + "bbox": [ + 103, + 166, + 147, + 181 + ], + "score": 1.0, + "content": "T = nβ\u000f√", + "type": "text" + }, + { + "bbox": [ + 144, + 162, + 165, + 188 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 165, + 167, + 286, + 186 + ], + "score": 0.94, + "content": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 162, + 310, + 188 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 311, + 169, + 386, + 183 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\bar { \\pmb x } = \\frac { 1 } { T } \\sum _ { i = 1 } ^ { T } \\pmb x _ { i + 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 162, + 433, + 188 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 103, + 148, + 507, + 188 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 192, + 398, + 219 + ], + "lines": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "spans": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F \\left( \\bar { \\pmb { x } } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log \\left( 1 / \\delta \\right) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "9b0a774c848f175d459322deb7291da3ffcdcbd61e35dd5afdd7049763082a2d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 212, + 192, + 398, + 219 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "We use parameter averaging to reduce the influence of perturbation noise because gradient", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 241, + 367, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 339, + 253 + ], + "score": 1.0, + "content": "update does not have strong contraction effect when", + "type": "text" + }, + { + "bbox": [ + 339, + 244, + 363, + 251 + ], + "score": 0.91, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 241, + 367, + 253 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 230, + 505, + 253 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 265, + 449, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 451, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 451, + 279 + ], + "score": 1.0, + "content": "3.3 Utiltiy Guarantee of DP-SGD Based on Expected Curvature", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 504, + 299 + ], + "score": 1.0, + "content": "Stochastic gradient descent has become one of the most popular optimization methods", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "because of the cheap one-iteration cost. In this section we show that expected curvature can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 429, + 321 + ], + "score": 1.0, + "content": "also improve the utility analysis for DP-SGD (Algorithm 2). We note that", + "type": "text" + }, + { + "bbox": [ + 429, + 310, + 457, + 321 + ], + "score": 0.94, + "content": "\\nabla f ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "represents", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 320, + 504, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 318, + 331 + ], + "score": 1.0, + "content": "an element from the subgradient set evaluated at", + "type": "text" + }, + { + "bbox": [ + 318, + 324, + 325, + 329 + ], + "score": 0.88, + "content": "_ { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 320, + 504, + 331 + ], + "score": 1.0, + "content": "when the objective is not smooth. Before", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "stating our theorem, we introduce the moments accountant technique (Lemma 1) that is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 342, + 281, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 281, + 353 + ], + "score": 1.0, + "content": "essential to establish privacy guarantee.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 286, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 345, + 369 + ], + "score": 1.0, + "content": "Lemma 1 (Abadi et al. (2016)). There exist constants", + "type": "text" + }, + { + "bbox": [ + 346, + 361, + 354, + 367 + ], + "score": 0.83, + "content": "c _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 355, + 376, + 369 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 362, + 385, + 367 + ], + "score": 0.84, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "so that given running steps", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 366, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 370, + 115, + 377 + ], + "score": 0.87, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 366, + 155, + 381 + ], + "score": 1.0, + "content": ", for any √", + "type": "text" + }, + { + "bbox": [ + 155, + 369, + 204, + 380 + ], + "score": 0.93, + "content": "\\epsilon < c _ { 1 } T / n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 366, + 256, + 381 + ], + "score": 1.0, + "content": ", Algorithm", + "type": "text" + }, + { + "bbox": [ + 257, + 370, + 263, + 377 + ], + "score": 0.74, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 366, + 275, + 381 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 276, + 369, + 297, + 380 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 366, + 425, + 381 + ], + "score": 1.0, + "content": "-differentially private for any", + "type": "text" + }, + { + "bbox": [ + 425, + 370, + 448, + 378 + ], + "score": 0.91, + "content": "\\delta > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 366, + 506, + 381 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 380, + 181, + 397 + ], + "spans": [ + { + "bbox": [ + 107, + 380, + 181, + 397 + ], + "score": 0.94, + "content": "\\sigma \\ge c _ { 2 } \\frac { \\sqrt { T l o g ( 1 / \\delta ) } } { n \\epsilon }", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 355, + 506, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 416, + 443, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 443, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 443, + 432 + ], + "score": 1.0, + "content": "Algorithm 2: Differentially Private Stochastic Gradient Descent (DP-SGD)", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 104, + 432, + 475, + 455 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 475, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 187, + 445 + ], + "score": 1.0, + "content": "Input : Dataset", + "type": "text" + }, + { + "bbox": [ + 187, + 434, + 262, + 444 + ], + "score": 0.93, + "content": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 430, + 378, + 445 + ], + "score": 1.0, + "content": ". Individual loss function:", + "type": "text" + }, + { + "bbox": [ + 378, + 434, + 450, + 444 + ], + "score": 0.93, + "content": "f _ { i } \\left( \\pmb { x } \\right) = f \\left( \\pmb { x } ; d _ { i } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 430, + 475, + 445 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 148, + 441, + 439, + 457 + ], + "spans": [ + { + "bbox": [ + 148, + 441, + 232, + 457 + ], + "score": 1.0, + "content": "Lipschitz constant", + "type": "text" + }, + { + "bbox": [ + 233, + 446, + 240, + 453 + ], + "score": 0.88, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 441, + 344, + 457 + ], + "score": 1.0, + "content": ". Number of iterations:", + "type": "text" + }, + { + "bbox": [ + 345, + 446, + 352, + 453 + ], + "score": 0.88, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 441, + 425, + 457 + ], + "score": 1.0, + "content": ". Learning rate:", + "type": "text" + }, + { + "bbox": [ + 425, + 448, + 434, + 455 + ], + "score": 0.88, + "content": "\\eta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 441, + 439, + 457 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 430, + 475, + 457 + ] + }, + { + "type": "text", + "bbox": [ + 98, + 455, + 184, + 465 + ], + "lines": [ + { + "bbox": [ + 96, + 453, + 185, + 466 + ], + "spans": [ + { + "bbox": [ + 96, + 453, + 124, + 466 + ], + "score": 1.0, + "content": "1 for", + "type": "text" + }, + { + "bbox": [ + 124, + 457, + 147, + 464 + ], + "score": 0.87, + "content": "t = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 453, + 160, + 466 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 160, + 456, + 168, + 464 + ], + "score": 0.89, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 453, + 185, + 466 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 96, + 453, + 185, + 466 + ] + }, + { + "type": "list", + "bbox": [ + 102, + 466, + 431, + 502 + ], + "lines": [ + { + "bbox": [ + 120, + 463, + 252, + 478 + ], + "spans": [ + { + "bbox": [ + 120, + 463, + 157, + 478 + ], + "score": 1.0, + "content": "Sample", + "type": "text" + }, + { + "bbox": [ + 157, + 468, + 164, + 476 + ], + "score": 0.88, + "content": "i _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 463, + 191, + 478 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 191, + 467, + 203, + 477 + ], + "score": 0.86, + "content": "[ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 463, + 252, + 478 + ], + "score": 1.0, + "content": "uniformly.", + "type": "text" + } + ], + "index": 25, + "is_list_end_line": true + }, + { + "bbox": [ + 121, + 475, + 232, + 489 + ], + "spans": [ + { + "bbox": [ + 121, + 475, + 165, + 489 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 165, + 478, + 228, + 488 + ], + "score": 0.83, + "content": "{ \\pmb g } _ { t } = \\nabla f _ { i _ { t } } \\left( { \\pmb x } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 475, + 232, + 489 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 120, + 487, + 432, + 502 + ], + "spans": [ + { + "bbox": [ + 120, + 487, + 205, + 502 + ], + "score": 1.0, + "content": "Update parameter", + "type": "text" + }, + { + "bbox": [ + 205, + 490, + 309, + 501 + ], + "score": 0.91, + "content": "{ \\pmb x } _ { t + 1 } = { \\pmb x } _ { t } - \\eta _ { t } \\left( { \\pmb g } _ { t } + { \\pmb z } _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 487, + 343, + 502 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 344, + 489, + 427, + 502 + ], + "score": 0.92, + "content": "z _ { t } \\sim \\mathcal { N } \\left( 0 , L ^ { 2 } \\sigma ^ { 2 } I _ { p } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 487, + 432, + 502 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 26, + "bbox_fs": [ + 120, + 463, + 432, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 97, + 502, + 127, + 511 + ], + "lines": [ + { + "bbox": [ + 95, + 501, + 127, + 513 + ], + "spans": [ + { + "bbox": [ + 95, + 501, + 127, + 513 + ], + "score": 1.0, + "content": "5 end", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 95, + 501, + 127, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 529, + 440, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 441, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 174, + 543 + ], + "score": 1.0, + "content": "For the case of", + "type": "text" + }, + { + "bbox": [ + 175, + 532, + 199, + 540 + ], + "score": 0.9, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 528, + 441, + 543 + ], + "score": 1.0, + "content": ", Theorem 3 presents the utility guarantee of DP-SGD.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 528, + 441, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 246, + 557 + ], + "score": 1.0, + "content": "Theorem 3 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 246, + 547, + 271, + 555 + ], + "score": 0.9, + "content": "\\nu > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 544, + 321, + 557 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 321, + 547, + 330, + 554 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 544, + 343, + 557 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 343, + 547, + 350, + 554 + ], + "score": 0.84, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 544, + 415, + 557 + ], + "score": 1.0, + "content": "-Lipschitz with", + "type": "text" + }, + { + "bbox": [ + 415, + 550, + 421, + 554 + ], + "score": 0.56, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "expected curvature.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 102, + 552, + 494, + 572 + ], + "spans": [ + { + "bbox": [ + 102, + 552, + 140, + 572 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 140, + 561, + 146, + 565 + ], + "score": 0.73, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 552, + 226, + 572 + ], + "score": 1.0, + "content": "based on Lemma", + "type": "text" + }, + { + "bbox": [ + 226, + 559, + 231, + 565 + ], + "score": 0.55, + "content": "\\mathit { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 552, + 290, + 572 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 291, + 558, + 312, + 568 + ], + "score": 0.88, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 552, + 353, + 572 + ], + "score": 1.0, + "content": "-DP. Set", + "type": "text" + }, + { + "bbox": [ + 353, + 556, + 385, + 569 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 552, + 407, + 572 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 408, + 556, + 447, + 565 + ], + "score": 0.91, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 552, + 494, + 572 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 102, + 544, + 506, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 576, + 412, + 601 + ], + "lines": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "spans": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "score": 0.91, + "content": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log \\left( n \\right) \\log \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .", + "type": "interline_equation", + "image_path": "74488a3dd9a58c634b0687801f4c886ef54449c747129ed55fa6e4e5d59e95c9.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 199, + 576, + 412, + 601 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 373, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 605, + 374, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 374, + 620 + ], + "score": 1.0, + "content": "Remark 2. Theorem 3 does not require smooth assumption.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 605, + 374, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 627, + 506, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 400, + 640 + ], + "score": 1.0, + "content": "Theorem 3 shows the utility guarantee of DP-SGD also depends on", + "type": "text" + }, + { + "bbox": [ + 400, + 633, + 406, + 637 + ], + "score": 0.86, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 627, + 461, + 640 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 461, + 633, + 468, + 640 + ], + "score": 0.89, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 627, + 505, + 640 + ], + "score": 1.0, + "content": ". We set", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 107, + 640, + 155, + 651 + ], + "score": 0.94, + "content": "T = \\Theta ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 637, + 361, + 651 + ], + "score": 1.0, + "content": "following Bassily et al. (2014). We note that", + "type": "text" + }, + { + "bbox": [ + 361, + 640, + 409, + 651 + ], + "score": 0.94, + "content": "T = \\Theta ( n ^ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "is necessary even for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 220, + 663 + ], + "score": 1.0, + "content": "non-private SGD to reach", + "type": "text" + }, + { + "bbox": [ + 220, + 651, + 241, + 662 + ], + "score": 0.92, + "content": "1 / n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 649, + 506, + 663 + ], + "score": 1.0, + "content": "precision. We next show for a relatively coarse precision, the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 660, + 292, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 292, + 674 + ], + "score": 1.0, + "content": "running time can be reduced significantly.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 627, + 506, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 675, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 102, + 675, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 102, + 675, + 207, + 707 + ], + "score": 1.0, + "content": "Theorem 4. SupposeLemma 1 to guarantee", + "type": "text" + }, + { + "bbox": [ + 212, + 678, + 219, + 685 + ], + "score": 0.89, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 675, + 232, + 707 + ], + "score": 1.0, + "content": "s-", + "type": "text" + }, + { + "bbox": [ + 236, + 678, + 243, + 685 + ], + "score": 0.76, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 675, + 270, + 707 + ], + "score": 1.0, + "content": "Lipsc. Set", + "type": "text" + }, + { + "bbox": [ + 302, + 675, + 313, + 707 + ], + "score": 1.0, + "content": "th a", + "type": "text" + }, + { + "bbox": [ + 314, + 681, + 320, + 685 + ], + "score": 0.82, + "content": "\\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 675, + 324, + 707 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 359, + 675, + 403, + 707 + ], + "score": 1.0, + "content": "curvatur. Suppose", + "type": "text" + }, + { + "bbox": [ + 433, + 675, + 453, + 707 + ], + "score": 1.0, + "content": "oose , we", + "type": "text" + }, + { + "bbox": [ + 454, + 681, + 460, + 685 + ], + "score": 0.8, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 675, + 506, + 707 + ], + "score": 1.0, + "content": "based onave", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 208, + 687, + 433, + 702 + ], + "spans": [ + { + "bbox": [ + 208, + 689, + 229, + 699 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 689, + 247, + 696 + ], + "score": 0.39, + "content": "D P", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 687, + 302, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 689, + 358, + 702 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 688, + 433, + 699 + ], + "score": 0.92, + "content": "p < n ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 102, + 675, + 506, + 707 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 709, + 396, + 735 + ], + "lines": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "spans": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F \\left( \\mathbf { x } _ { T } \\right) - F \\left( \\mathbf { x } _ { * } \\right) ] = { \\mathcal { O } } \\left( { \\frac { { \\sqrt { p } } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } } \\right) .", + "type": "interline_equation", + "image_path": "72d34ec70e7e7bcf03373d74d385c02f85c24ca9633ccd5e91ec3c810b08e74b.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 215, + 709, + 396, + 735 + ], + "spans": [], + "index": 40 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 102, + 77, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 102, + 77, + 504, + 102 + ], + "score": 1.0, + "content": "We note that the analysis of Bassily et al. (2014) yields E[F (xT )−F (x∗)] = O \u0010 √pL2 log2(n)n\u000fµ \u0011", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 101, + 90, + 510, + 124 + ], + "spans": [ + { + "bbox": [ + 101, + 90, + 150, + 124 + ], + "score": 1.0, + "content": "if setting", + "type": "text" + }, + { + "bbox": [ + 150, + 101, + 185, + 114 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 90, + 201, + 124 + ], + "score": 1.0, + "content": ", w", + "type": "text" + }, + { + "bbox": [ + 226, + 90, + 510, + 124 + ], + "score": 1.0, + "content": "till depends on the minimum curvature. Theorem 5 shows the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 202, + 115, + 226, + 122 + ], + "spans": [ + { + "bbox": [ + 202, + 115, + 226, + 122 + ], + "score": 0.9, + "content": "\\nu = 0", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 254, + 138 + ], + "score": 1.0, + "content": "Theorem 5 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 254, + 128, + 282, + 135 + ], + "score": 0.88, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 124, + 336, + 138 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 336, + 128, + 344, + 135 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 124, + 360, + 138 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 360, + 128, + 367, + 135 + ], + "score": 0.85, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 124, + 458, + 138 + ], + "score": 1.0, + "content": "-Lipschitz. Assume", + "type": "text" + }, + { + "bbox": [ + 459, + 127, + 504, + 137 + ], + "score": 0.91, + "content": "\\| \\pmb { x } _ { t } \\| \\le D", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 123, + 151 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 123, + 140, + 153, + 150 + ], + "score": 0.91, + "content": "t \\in [ T ]", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 137, + 195, + 151 + ], + "score": 1.0, + "content": ". Choose", + "type": "text" + }, + { + "bbox": [ + 195, + 143, + 202, + 148 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 137, + 283, + 151 + ], + "score": 1.0, + "content": "based on Lemma", + "type": "text" + }, + { + "bbox": [ + 283, + 141, + 288, + 148 + ], + "score": 0.55, + "content": "\\mathit { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 137, + 349, + 151 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 349, + 140, + 371, + 150 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 137, + 413, + 151 + ], + "score": 1.0, + "content": "-DP. Let", + "type": "text" + }, + { + "bbox": [ + 413, + 138, + 484, + 151 + ], + "score": 0.94, + "content": "G = L \\sqrt { 1 + p \\sigma ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 137, + 506, + 151 + ], + "score": 1.0, + "content": ", set", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 253, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 152, + 166 + ], + "score": 1.0, + "content": "ηt = DG√t", + "type": "text" + }, + { + "bbox": [ + 147, + 150, + 169, + 163 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 152, + 210, + 161 + ], + "score": 0.92, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 150, + 253, + 163 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 169, + 415, + 200 + ], + "lines": [ + { + "bbox": [ + 195, + 169, + 415, + 200 + ], + "spans": [ + { + "bbox": [ + 195, + 169, + 415, + 200 + ], + "score": 0.93, + "content": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p \\log \\left( 1 / \\delta \\right) } L \\log \\left( n \\right) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "98be7acc70267bbb2d1ef57d798745715487d46a835cbbcc73bad196232cf161.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 169, + 415, + 184.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 195, + 184.5, + 415, + 200.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 206, + 466, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 468, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 395, + 221 + ], + "score": 1.0, + "content": "This utility guarantee can be derived from Theorem 2 in (Shamir", + "type": "text" + }, + { + "bbox": [ + 396, + 209, + 403, + 217 + ], + "score": 0.27, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 205, + 468, + 221 + ], + "score": 1.0, + "content": "Zhang, 2013).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 106, + 231, + 369, + 243 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 370, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 370, + 243 + ], + "score": 1.0, + "content": "3.4 Discussion on three perturbation approaches.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 504, + 274 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 264 + ], + "score": 1.0, + "content": "In this section, we briefly discuss two other perturbation approaches and compare them to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 262, + 264, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 264, + 274 + ], + "score": 1.0, + "content": "the gradient perturbation approach.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "score": 1.0, + "content": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) perturbs the learning algorithm", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "after training. It adds noise to the resulting model of non-private learning process. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "magnitude of perturbation noise is propositional to the maximum influence one record can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 504, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 504, + 325 + ], + "score": 1.0, + "content": "cause on the learned model. Take the gradient descent algorithm as an example. At each", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "step, the gradient of different records would diverge the two sets of parameters generated by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "neighboring datasets, the maximum distance expansion is related to the Lipschitz coefficient.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "At the same time, the gradient of the same records in two datasets would shrink the parameter", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "distance because of the contraction effect of the gradient update. The contraction effect", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 367, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 504, + 379 + ], + "score": 1.0, + "content": "depends on the smooth and strongly convex coefficient. Smaller strongly convex coefficient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 392 + ], + "score": 1.0, + "content": "leads to weaker contraction. The sensitivity of output perturbation algorithm is the upper", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 389, + 439, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 439, + 401 + ], + "score": 1.0, + "content": "bound on the largest possible final distance between two sets of parameters.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 504, + 418 + ], + "score": 1.0, + "content": "Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "the objective function before training. It requires the objective function to be strongly convex", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 355, + 441 + ], + "score": 1.0, + "content": "to guarantee the uniqueness of the solution. It first adds", + "type": "text" + }, + { + "bbox": [ + 356, + 430, + 367, + 439 + ], + "score": 0.91, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 427, + 506, + 441 + ], + "score": 1.0, + "content": "regularization to obtain strong", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "convexity if the original objective is not strongly convex. Then it perturbs the objective with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "a random linear term. The sensitivity of objective perturbation is the maximum change of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "the minimizer that one record can produce. Chaudhuri et al. (2011) and Kifer et al. (2012)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "use the largest and the smallest eigenvalue (i.e. the smooth and strongly convex coefficient)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 481, + 381, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 381, + 496 + ], + "score": 1.0, + "content": "of the objective’s Hessian matrix to upper bound such change.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "In comparison, gradient perturbation is more flexible than output/objective perturbation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "For example, to bound the sensitivity, gradient perturbation only requires Lipschitz coefficient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "which can be easily obtained by using the gradient clipping technique. However, both output", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "and objective perturbation further need to compute the smooth coefficient, which is hard for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 544, + 337, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 337, + 556 + ], + "score": 1.0, + "content": "some common objectives such as softmax regression.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 504, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "More critically, output/objective perturbation cannot utilize the expected curvature condition", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "because their training process does not contain perturbation noise. Moreover, they have", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "to consider the worst performance of learning algorithm. That is because DP makes the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "worst case assumption on query function and output/objective perturbation treat the whole", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "learning algorithm as a single query to private dataset. This explains why their utility", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 615, + 365, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 365, + 627 + ], + "score": 1.0, + "content": "guarantee depends on the worst curvature of the objective.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 108, + 639, + 198, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 199, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 199, + 653 + ], + "score": 1.0, + "content": "4 Experiment", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "In this section, we evaluate the performance of DP-GD and DP-SGD on multiple real world", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "datasets. We use the benchmark datasets provided by Iyengar et al. (2019). Objective", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 681, + 507, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 695 + ], + "score": 1.0, + "content": "functions are logistic regression and softmax regression for binary and multi-class datasets,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 693, + 162, + 705 + ], + "spans": [ + { + "bbox": [ + 104, + 693, + 162, + 705 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Datasets. The benchmark datasets includes two multi-class datasets (MNIST, Covertype)", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "score": 1.0, + "content": "and five binary datasets, and three of them are high dimensional (Gisette, Real-sim, RCV1).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 102, + 77, + 504, + 102 + ], + "spans": [ + { + "bbox": [ + 102, + 77, + 504, + 102 + ], + "score": 1.0, + "content": "We note that the analysis of Bassily et al. (2014) yields E[F (xT )−F (x∗)] = O \u0010 √pL2 log2(n)n\u000fµ \u0011", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 101, + 90, + 510, + 124 + ], + "spans": [ + { + "bbox": [ + 101, + 90, + 150, + 124 + ], + "score": 1.0, + "content": "if setting", + "type": "text" + }, + { + "bbox": [ + 150, + 101, + 185, + 114 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 90, + 201, + 124 + ], + "score": 1.0, + "content": ", w", + "type": "text" + }, + { + "bbox": [ + 226, + 90, + 510, + 124 + ], + "score": 1.0, + "content": "till depends on the minimum curvature. Theorem 5 shows the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 202, + 115, + 226, + 122 + ], + "spans": [ + { + "bbox": [ + 202, + 115, + 226, + 122 + ], + "score": 0.9, + "content": "\\nu = 0", + "type": "inline_equation" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 101, + 77, + 510, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 124, + 505, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 504, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 254, + 138 + ], + "score": 1.0, + "content": "Theorem 5 (Utility guarantee,", + "type": "text" + }, + { + "bbox": [ + 254, + 128, + 282, + 135 + ], + "score": 0.88, + "content": "\\nu = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 124, + 336, + 138 + ], + "score": 1.0, + "content": ".). Suppose", + "type": "text" + }, + { + "bbox": [ + 336, + 128, + 344, + 135 + ], + "score": 0.89, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 124, + 360, + 138 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 360, + 128, + 367, + 135 + ], + "score": 0.85, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 124, + 458, + 138 + ], + "score": 1.0, + "content": "-Lipschitz. Assume", + "type": "text" + }, + { + "bbox": [ + 459, + 127, + 504, + 137 + ], + "score": 0.91, + "content": "\\| \\pmb { x } _ { t } \\| \\le D", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 123, + 151 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 123, + 140, + 153, + 150 + ], + "score": 0.91, + "content": "t \\in [ T ]", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 137, + 195, + 151 + ], + "score": 1.0, + "content": ". Choose", + "type": "text" + }, + { + "bbox": [ + 195, + 143, + 202, + 148 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 137, + 283, + 151 + ], + "score": 1.0, + "content": "based on Lemma", + "type": "text" + }, + { + "bbox": [ + 283, + 141, + 288, + 148 + ], + "score": 0.55, + "content": "\\mathit { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 137, + 349, + 151 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 349, + 140, + 371, + 150 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 137, + 413, + 151 + ], + "score": 1.0, + "content": "-DP. Let", + "type": "text" + }, + { + "bbox": [ + 413, + 138, + 484, + 151 + ], + "score": 0.94, + "content": "G = L \\sqrt { 1 + p \\sigma ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 137, + 506, + 151 + ], + "score": 1.0, + "content": ", set", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 253, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 152, + 166 + ], + "score": 1.0, + "content": "ηt = DG√t", + "type": "text" + }, + { + "bbox": [ + 147, + 150, + 169, + 163 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 170, + 152, + 210, + 161 + ], + "score": 0.92, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 150, + 253, + 163 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 124, + 506, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 169, + 415, + 200 + ], + "lines": [ + { + "bbox": [ + 195, + 169, + 415, + 200 + ], + "spans": [ + { + "bbox": [ + 195, + 169, + 415, + 200 + ], + "score": 0.93, + "content": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p \\log \\left( 1 / \\delta \\right) } L \\log \\left( n \\right) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "98be7acc70267bbb2d1ef57d798745715487d46a835cbbcc73bad196232cf161.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 169, + 415, + 184.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 195, + 184.5, + 415, + 200.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 206, + 466, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 468, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 395, + 221 + ], + "score": 1.0, + "content": "This utility guarantee can be derived from Theorem 2 in (Shamir", + "type": "text" + }, + { + "bbox": [ + 396, + 209, + 403, + 217 + ], + "score": 0.27, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 205, + 468, + 221 + ], + "score": 1.0, + "content": "Zhang, 2013).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 205, + 468, + 221 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 231, + 369, + 243 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 370, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 370, + 243 + ], + "score": 1.0, + "content": "3.4 Discussion on three perturbation approaches.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 251, + 504, + 274 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 264 + ], + "score": 1.0, + "content": "In this section, we briefly discuss two other perturbation approaches and compare them to", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 262, + 264, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 264, + 274 + ], + "score": 1.0, + "content": "the gradient perturbation approach.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 249, + 505, + 274 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 505, + 292 + ], + "score": 1.0, + "content": "Output perturbation (Wu et al., 2017; Zhang et al., 2017) perturbs the learning algorithm", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "after training. It adds noise to the resulting model of non-private learning process. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "magnitude of perturbation noise is propositional to the maximum influence one record can", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 312, + 504, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 504, + 325 + ], + "score": 1.0, + "content": "cause on the learned model. Take the gradient descent algorithm as an example. At each", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "step, the gradient of different records would diverge the two sets of parameters generated by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "neighboring datasets, the maximum distance expansion is related to the Lipschitz coefficient.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "At the same time, the gradient of the same records in two datasets would shrink the parameter", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "distance because of the contraction effect of the gradient update. The contraction effect", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 367, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 504, + 379 + ], + "score": 1.0, + "content": "depends on the smooth and strongly convex coefficient. Smaller strongly convex coefficient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 392 + ], + "score": 1.0, + "content": "leads to weaker contraction. The sensitivity of output perturbation algorithm is the upper", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 389, + 439, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 439, + 401 + ], + "score": 1.0, + "content": "bound on the largest possible final distance between two sets of parameters.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 279, + 506, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 406, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 504, + 418 + ], + "score": 1.0, + "content": "Objective perturbation (Chaudhuri et al., 2011; Kifer et al., 2012; Iyengar et al., 2019) perturbs", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "the objective function before training. It requires the objective function to be strongly convex", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 355, + 441 + ], + "score": 1.0, + "content": "to guarantee the uniqueness of the solution. It first adds", + "type": "text" + }, + { + "bbox": [ + 356, + 430, + 367, + 439 + ], + "score": 0.91, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 427, + 506, + 441 + ], + "score": 1.0, + "content": "regularization to obtain strong", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "convexity if the original objective is not strongly convex. Then it perturbs the objective with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "a random linear term. The sensitivity of objective perturbation is the maximum change of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "the minimizer that one record can produce. Chaudhuri et al. (2011) and Kifer et al. (2012)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "use the largest and the smallest eigenvalue (i.e. the smooth and strongly convex coefficient)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 481, + 381, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 381, + 496 + ], + "score": 1.0, + "content": "of the objective’s Hessian matrix to upper bound such change.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 406, + 506, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "In comparison, gradient perturbation is more flexible than output/objective perturbation.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 504, + 523 + ], + "score": 1.0, + "content": "For example, to bound the sensitivity, gradient perturbation only requires Lipschitz coefficient", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "which can be easily obtained by using the gradient clipping technique. However, both output", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "and objective perturbation further need to compute the smooth coefficient, which is hard for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 544, + 337, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 337, + 556 + ], + "score": 1.0, + "content": "some common objectives such as softmax regression.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 500, + 505, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 504, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "More critically, output/objective perturbation cannot utilize the expected curvature condition", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "because their training process does not contain perturbation noise. Moreover, they have", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "to consider the worst performance of learning algorithm. That is because DP makes the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "worst case assumption on query function and output/objective perturbation treat the whole", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "learning algorithm as a single query to private dataset. This explains why their utility", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 615, + 365, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 365, + 627 + ], + "score": 1.0, + "content": "guarantee depends on the worst curvature of the objective.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 560, + 505, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 639, + 198, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 199, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 199, + 653 + ], + "score": 1.0, + "content": "4 Experiment", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "In this section, we evaluate the performance of DP-GD and DP-SGD on multiple real world", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "datasets. We use the benchmark datasets provided by Iyengar et al. (2019). Objective", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 681, + 507, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 507, + 695 + ], + "score": 1.0, + "content": "functions are logistic regression and softmax regression for binary and multi-class datasets,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 693, + 162, + 705 + ], + "spans": [ + { + "bbox": [ + 104, + 693, + 162, + 705 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 104, + 659, + 507, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Datasets. The benchmark datasets includes two multi-class datasets (MNIST, Covertype)", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 504, + 733 + ], + "score": 1.0, + "content": "and five binary datasets, and three of them are high dimensional (Gisette, Real-sim, RCV1).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 111, + 517, + 182 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 307, + 92 + ], + "score": 1.0, + "content": "Table 2: Algorithm validation accuracy (in", + "type": "text" + }, + { + "bbox": [ + 308, + 82, + 317, + 90 + ], + "score": 0.72, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 80, + 506, + 92 + ], + "score": 1.0, + "content": ") on various kinds of real world datasets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 446, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 191, + 104 + ], + "score": 1.0, + "content": "Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 191, + 96, + 195, + 101 + ], + "score": 0.8, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 91, + 446, + 104 + ], + "score": 1.0, + "content": "is 0.1 for binary dataset and 1 for multi-classes datasets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 111, + 517, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 111, + 517, + 182 + ], + "spans": [ + { + "bbox": [ + 107, + 111, + 517, + 182 + ], + "score": 0.952, + "html": "
KDDCup99AdultMNISTCovertypeGisetteReal-simRCV1
Non private99.184.891.971.296.693.393.5
AMP197.579.371.964.362.873.164.5
Out-SGD98.177.469.462.462.373.266.7
DP-SGD98.780.487.567.763.073.870.4
DP-GD98.780.988.666.267.376.174.9
", + "type": "table", + "image_path": "ed47ab137e8c828ed8f4a4ed8680c944923c818aab97811aa87d6223e122d1a8.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 107, + 111, + 517, + 134.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 134.66666666666666, + 517, + 158.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 158.33333333333331, + 517, + 181.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 121, + 196, + 492, + 282 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 196, + 492, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 196, + 492, + 282 + ], + "spans": [ + { + "bbox": [ + 121, + 196, + 492, + 282 + ], + "score": 0.96, + "type": "image", + "image_path": "e4bca66c83380d29bc2d6fc58d3bc916e6e2c9f242addde6ddb24f85443a6db7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 121, + 196, + 492, + 224.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 121, + 224.66666666666666, + 492, + 253.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 121, + 253.33333333333331, + 492, + 282.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 289, + 504, + 312 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 302, + 303 + ], + "score": 1.0, + "content": "Figure 3: Algorithm validation accuracy (in", + "type": "text" + }, + { + "bbox": [ + 302, + 290, + 312, + 300 + ], + "score": 0.72, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 290, + 506, + 303 + ], + "score": 1.0, + "content": ") with varying \u000f. NP represents non-private", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 301, + 459, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 459, + 312 + ], + "score": 1.0, + "content": "baseline. Detailed description about evaluated datasets can be found in Table 3.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 503, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 271, + 347 + ], + "score": 1.0, + "content": "Following Iyengar et al. (2019), we use", + "type": "text" + }, + { + "bbox": [ + 271, + 335, + 290, + 345 + ], + "score": 0.44, + "content": "8 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "data for training and the rest for testing. Detailed", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 344, + 334, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 344, + 334, + 357 + ], + "score": 1.0, + "content": "description of datasets can be found in Appendix B", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 397, + 375 + ], + "score": 1.0, + "content": "Implementation details. We track Rényi differentialy privacy", + "type": "text" + }, + { + "bbox": [ + 398, + 364, + 428, + 374 + ], + "score": 0.37, + "content": "( R D P )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 362, + 506, + 375 + ], + "score": 1.0, + "content": "(Mironov, 2017)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 184, + 386 + ], + "score": 1.0, + "content": "and convert it to", + "type": "text" + }, + { + "bbox": [ + 185, + 375, + 206, + 385 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 372, + 291, + 386 + ], + "score": 1.0, + "content": "-DP. Running step", + "type": "text" + }, + { + "bbox": [ + 291, + 376, + 299, + 383 + ], + "score": 0.89, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 372, + 367, + 386 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + }, + { + "bbox": [ + 368, + 374, + 427, + 385 + ], + "score": 0.87, + "content": "\\{ 5 0 , 2 0 0 , 8 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "for both DP-GD", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "and DP-SGD. For DP-SGD, we use moments accountant to track the privacy loss and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 426, + 407 + ], + "score": 1.0, + "content": "sampling ratio is set as 0.1. The standard deviation of the added noise", + "type": "text" + }, + { + "bbox": [ + 426, + 400, + 433, + 405 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "is set to be the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "smallest value such that the privacy budget is allowable to run desired steps. We ensure", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "each loss function is Lipschitz by clipping individual gradient. The method in Goodfellow", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "(2015) allows us to clip individual gradient efficiently. Clipping threshold is set as 1 (0.5", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "for high dimensional datasets because of the sparse gradient). For DP-GD, learning rate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 174, + 464 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + }, + { + "bbox": [ + 174, + 451, + 232, + 462 + ], + "score": 0.71, + "content": "\\{ 0 . 1 , 1 . 0 , 5 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 452, + 302, + 462 + ], + "score": 0.58, + "content": "( \\{ 0 . 2 , 2 . 0 , 1 0 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 448, + 506, + 464 + ], + "score": 1.0, + "content": "for high dimensional datasets). The learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "rate of DP-SGD is twice as large as DP-GD and it is divided by 2 at the middle of training.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 192, + 486 + ], + "score": 1.0, + "content": "Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 193, + 473, + 198, + 482 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 470, + 240, + 486 + ], + "score": 1.0, + "content": "is set as", + "type": "text" + }, + { + "bbox": [ + 241, + 473, + 252, + 485 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { 1 } { n ^ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 470, + 281, + 486 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 281, + 474, + 288, + 483 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 470, + 443, + 486 + ], + "score": 1.0, + "content": "regularization coefficient is set as", + "type": "text" + }, + { + "bbox": [ + 443, + 473, + 482, + 482 + ], + "score": 0.93, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 470, + 506, + 486 + ], + "score": 1.0, + "content": ". All", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 483, + 304, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 304, + 496 + ], + "score": 1.0, + "content": "reported numbers are averaged over 20 runs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "Baseline algorithms. The baseline algorithms include state-of-the-art objective and output", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "perturbation algorithms. For objective perturbation, we use Approximate Minima Perturba-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 522, + 507, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 507, + 535 + ], + "score": 1.0, + "content": "tion (AMP) (Iyengar et al., 2019). For output perturbation, we use the algorithm in Wu et al.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "(2017) (Output perturbation SGD). We adopt the implementation and hyperparameters", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "score": 1.0, + "content": "in Iyengar et al. (2019) for both algorithms. For multi-class classification tasks, Wu et al.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 569 + ], + "score": 1.0, + "content": "(2017) and Iyengar et al. (2019) divide the privacy budget evenly and train multiple binary", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "classifiers because their algorithms need to compute smooth coefficient before training and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 363, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 363, + 590 + ], + "score": 1.0, + "content": "therefore are not directly applicable to softmax regression.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 504, + 605 + ], + "score": 1.0, + "content": "Experiment results. The validation accuracy results for all evaluated algorithms with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 603, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 607, + 138, + 614 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 603, + 505, + 618 + ], + "score": 1.0, + "content": "(1.0 for multi-class datasets) are presented in Table 2. We also plot the accuracy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 616, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 198, + 628 + ], + "score": 1.0, + "content": "results with varying", + "type": "text" + }, + { + "bbox": [ + 198, + 621, + 202, + 625 + ], + "score": 0.8, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 616, + 504, + 628 + ], + "score": 1.0, + "content": "in Figure 3. These results confirm our theory in Section 3: gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "score": 1.0, + "content": "perturbation achieves better performance than other perturbation methods as it leverages", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 637, + 206, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 206, + 650 + ], + "score": 1.0, + "content": "the average curvature.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 107, + 659, + 196, + 672 + ], + "lines": [ + { + "bbox": [ + 104, + 657, + 198, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 657, + 198, + 676 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "In this paper, we show the privacy noise actually helps optimization analysis, which can be", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 690, + 504, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 504, + 703 + ], + "score": 1.0, + "content": "used to improve the utility guarantee of both DP-GD and DP-SGD. Our result theoretically", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "1For multi-class datas sets MNIST and Covertype, we use the numbers reported in Iyengar et al.", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 477, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 477, + 733 + ], + "score": 1.0, + "content": "(2019) directly because of the long running time of AMP especially on multi-class datasets.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 111, + 517, + 182 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 506, + 92 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 307, + 92 + ], + "score": 1.0, + "content": "Table 2: Algorithm validation accuracy (in", + "type": "text" + }, + { + "bbox": [ + 308, + 82, + 317, + 90 + ], + "score": 0.72, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 80, + 506, + 92 + ], + "score": 1.0, + "content": ") on various kinds of real world datasets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 91, + 446, + 104 + ], + "spans": [ + { + "bbox": [ + 106, + 91, + 191, + 104 + ], + "score": 1.0, + "content": "Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 191, + 96, + 195, + 101 + ], + "score": 0.8, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 91, + 446, + 104 + ], + "score": 1.0, + "content": "is 0.1 for binary dataset and 1 for multi-classes datasets.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 111, + 517, + 182 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 111, + 517, + 182 + ], + "spans": [ + { + "bbox": [ + 107, + 111, + 517, + 182 + ], + "score": 0.952, + "html": "
KDDCup99AdultMNISTCovertypeGisetteReal-simRCV1
Non private99.184.891.971.296.693.393.5
AMP197.579.371.964.362.873.164.5
Out-SGD98.177.469.462.462.373.266.7
DP-SGD98.780.487.567.763.073.870.4
DP-GD98.780.988.666.267.376.174.9
", + "type": "table", + "image_path": "ed47ab137e8c828ed8f4a4ed8680c944923c818aab97811aa87d6223e122d1a8.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 107, + 111, + 517, + 134.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 134.66666666666666, + 517, + 158.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 158.33333333333331, + 517, + 181.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 121, + 196, + 492, + 282 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 121, + 196, + 492, + 282 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 121, + 196, + 492, + 282 + ], + "spans": [ + { + "bbox": [ + 121, + 196, + 492, + 282 + ], + "score": 0.96, + "type": "image", + "image_path": "e4bca66c83380d29bc2d6fc58d3bc916e6e2c9f242addde6ddb24f85443a6db7.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 121, + 196, + 492, + 224.66666666666666 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 121, + 224.66666666666666, + 492, + 253.33333333333331 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 121, + 253.33333333333331, + 492, + 282.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 289, + 504, + 312 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 302, + 303 + ], + "score": 1.0, + "content": "Figure 3: Algorithm validation accuracy (in", + "type": "text" + }, + { + "bbox": [ + 302, + 290, + 312, + 300 + ], + "score": 0.72, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 290, + 506, + 303 + ], + "score": 1.0, + "content": ") with varying \u000f. NP represents non-private", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 301, + 459, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 459, + 312 + ], + "score": 1.0, + "content": "baseline. Detailed description about evaluated datasets can be found in Table 3.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 503, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 271, + 347 + ], + "score": 1.0, + "content": "Following Iyengar et al. (2019), we use", + "type": "text" + }, + { + "bbox": [ + 271, + 335, + 290, + 345 + ], + "score": 0.44, + "content": "8 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 333, + 505, + 347 + ], + "score": 1.0, + "content": "data for training and the rest for testing. Detailed", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 344, + 334, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 344, + 334, + 357 + ], + "score": 1.0, + "content": "description of datasets can be found in Appendix B", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 333, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 397, + 375 + ], + "score": 1.0, + "content": "Implementation details. We track Rényi differentialy privacy", + "type": "text" + }, + { + "bbox": [ + 398, + 364, + 428, + 374 + ], + "score": 0.37, + "content": "( R D P )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 362, + 506, + 375 + ], + "score": 1.0, + "content": "(Mironov, 2017)", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 184, + 386 + ], + "score": 1.0, + "content": "and convert it to", + "type": "text" + }, + { + "bbox": [ + 185, + 375, + 206, + 385 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 372, + 291, + 386 + ], + "score": 1.0, + "content": "-DP. Running step", + "type": "text" + }, + { + "bbox": [ + 291, + 376, + 299, + 383 + ], + "score": 0.89, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 372, + 367, + 386 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + }, + { + "bbox": [ + 368, + 374, + 427, + 385 + ], + "score": 0.87, + "content": "\\{ 5 0 , 2 0 0 , 8 0 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "for both DP-GD", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 397 + ], + "score": 1.0, + "content": "and DP-SGD. For DP-SGD, we use moments accountant to track the privacy loss and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 426, + 407 + ], + "score": 1.0, + "content": "sampling ratio is set as 0.1. The standard deviation of the added noise", + "type": "text" + }, + { + "bbox": [ + 426, + 400, + 433, + 405 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "is set to be the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "smallest value such that the privacy budget is allowable to run desired steps. We ensure", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "each loss function is Lipschitz by clipping individual gradient. The method in Goodfellow", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "(2015) allows us to clip individual gradient efficiently. Clipping threshold is set as 1 (0.5", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "for high dimensional datasets because of the sparse gradient). For DP-GD, learning rate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 174, + 464 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + }, + { + "bbox": [ + 174, + 451, + 232, + 462 + ], + "score": 0.71, + "content": "\\{ 0 . 1 , 1 . 0 , 5 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 452, + 302, + 462 + ], + "score": 0.58, + "content": "( \\{ 0 . 2 , 2 . 0 , 1 0 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 448, + 506, + 464 + ], + "score": 1.0, + "content": "for high dimensional datasets). The learning", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 474 + ], + "score": 1.0, + "content": "rate of DP-SGD is twice as large as DP-GD and it is divided by 2 at the middle of training.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 192, + 486 + ], + "score": 1.0, + "content": "Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 193, + 473, + 198, + 482 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 470, + 240, + 486 + ], + "score": 1.0, + "content": "is set as", + "type": "text" + }, + { + "bbox": [ + 241, + 473, + 252, + 485 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { 1 } { n ^ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 470, + 281, + 486 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 281, + 474, + 288, + 483 + ], + "score": 0.91, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 470, + 443, + 486 + ], + "score": 1.0, + "content": "regularization coefficient is set as", + "type": "text" + }, + { + "bbox": [ + 443, + 473, + 482, + 482 + ], + "score": 0.93, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 470, + 506, + 486 + ], + "score": 1.0, + "content": ". All", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 483, + 304, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 304, + 496 + ], + "score": 1.0, + "content": "reported numbers are averaged over 20 runs.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 362, + 506, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 505, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "Baseline algorithms. The baseline algorithms include state-of-the-art objective and output", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 523 + ], + "score": 1.0, + "content": "perturbation algorithms. For objective perturbation, we use Approximate Minima Perturba-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 522, + 507, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 507, + 535 + ], + "score": 1.0, + "content": "tion (AMP) (Iyengar et al., 2019). For output perturbation, we use the algorithm in Wu et al.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "(2017) (Output perturbation SGD). We adopt the implementation and hyperparameters", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 507, + 557 + ], + "score": 1.0, + "content": "in Iyengar et al. (2019) for both algorithms. For multi-class classification tasks, Wu et al.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 505, + 569 + ], + "score": 1.0, + "content": "(2017) and Iyengar et al. (2019) divide the privacy budget evenly and train multiple binary", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "classifiers because their algorithms need to compute smooth coefficient before training and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 363, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 363, + 590 + ], + "score": 1.0, + "content": "therefore are not directly applicable to softmax regression.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 499, + 507, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 504, + 605 + ], + "score": 1.0, + "content": "Experiment results. The validation accuracy results for all evaluated algorithms with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 107, + 603, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 107, + 607, + 138, + 614 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 603, + 505, + 618 + ], + "score": 1.0, + "content": "(1.0 for multi-class datasets) are presented in Table 2. We also plot the accuracy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 616, + 504, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 198, + 628 + ], + "score": 1.0, + "content": "results with varying", + "type": "text" + }, + { + "bbox": [ + 198, + 621, + 202, + 625 + ], + "score": 0.8, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 616, + 504, + 628 + ], + "score": 1.0, + "content": "in Figure 3. These results confirm our theory in Section 3: gradient", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 641 + ], + "score": 1.0, + "content": "perturbation achieves better performance than other perturbation methods as it leverages", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 637, + 206, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 206, + 650 + ], + "score": 1.0, + "content": "the average curvature.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 594, + 505, + 650 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 659, + 196, + 672 + ], + "lines": [ + { + "bbox": [ + 104, + 657, + 198, + 676 + ], + "spans": [ + { + "bbox": [ + 104, + 657, + 198, + 676 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "In this paper, we show the privacy noise actually helps optimization analysis, which can be", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 690, + 504, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 504, + 703 + ], + "score": 1.0, + "content": "used to improve the utility guarantee of both DP-GD and DP-SGD. Our result theoretically", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "justifies the empirical superiority of gradient perturbation over other methods and advance", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "the state of the art utility guarantee of DP-ERM algorithms. Experiments on real world", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "datasets corroborate our theoretical findings nicely. In the future, it is interesting to consider", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "how to utilize the expected curvature condition to improve the utility guarantee of other", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 282, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 282, + 139 + ], + "score": 1.0, + "content": "gradient perturbation based algorithms.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 678, + 504, + 703 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 137 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "justifies the empirical superiority of gradient perturbation over other methods and advance", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "the state of the art utility guarantee of DP-ERM algorithms. Experiments on real world", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "datasets corroborate our theoretical findings nicely. In the future, it is interesting to consider", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "how to utilize the expected curvature condition to improve the utility guarantee of other", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 282, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 282, + 139 + ], + "score": 1.0, + "content": "gradient perturbation based algorithms.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 137 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 82, + 505, + 139 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 178, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 179, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 179, + 94 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "score": 1.0, + "content": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 109, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 116, + 109, + 506, + 120 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 119, + 265, + 131 + ], + "spans": [ + { + "bbox": [ + 116, + 119, + 265, + 131 + ], + "score": 1.0, + "content": "and Communications Security, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 502, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 504, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 504, + 149 + ], + "score": 1.0, + "content": "John M Abowd. The challenge of scientific reproducibility and privacy protection for statistical", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 338, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 338, + 159 + ], + "score": 1.0, + "content": "agencies. Census Scientific Advisory Committee, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 504, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 504, + 176 + ], + "score": 1.0, + "content": "Naman Agarwal, Ananda Theertha Suresh, Felix Xinnan X Yu, Sanjiv Kumar, and Brendan", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "McMahan. cpsgd: Communication-efficient and differentially-private distributed sgd. In Advances", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 185, + 314, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 314, + 196 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 202, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk mini-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 213, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 505, + 224 + ], + "score": 1.0, + "content": "mization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 222, + 217, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 222, + 217, + 234 + ], + "score": 1.0, + "content": "Computer Science, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 504, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri and Claire Monteleoni. Privacy-preserving logistic regression. In Advances in", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 250, + 303, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 303, + 262 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, 2009.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 279, + 360, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 279, + 360, + 290 + ], + "score": 1.0, + "content": "minimization. Journal of Machine Learning Research, 2011.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 296, + 504, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Bolin Ding, Janardhan Kulkarni, and Sergey Yekhanin. Collecting telemetry data privately. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 306, + 355, + 318 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 355, + 318 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 109, + 323, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 107, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 107, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "ourselves: Privacy via distributed noise generation. In Annual International Conference on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 344, + 363, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 344, + 363, + 357 + ], + "score": 1.0, + "content": "Theory and Applications of Cryptographic Techniques, 2006a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 503, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 372, + 401, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 401, + 384 + ], + "score": 1.0, + "content": "in private data analysis. In Theory of cryptography conference, 2006b.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 400, + 333, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 400, + 333, + 411 + ], + "score": 1.0, + "content": "and Trends\rR in Theoretical Computer Science, 2014.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 108, + 417, + 503, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Úlfar Erlingsson, Vasyl Pihur, and Aleksandra Korolova. Rappor: Randomized aggregatable privacy-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "preserving ordinal response. In Proceedings of the 2014 ACM SIGSAC conference on computer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 438, + 261, + 450 + ], + "spans": [ + { + "bbox": [ + 116, + 438, + 261, + 450 + ], + "score": 1.0, + "content": "and communications security, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "Vitaly Feldman, Ilya Mironov, Kunal Talwar, and Abhradeep Thakurta. Privacy amplification by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "iteration. In 2018 IEEE 59th Annual Symposium on Foundations of Computer Science (FOCS),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 475, + 140, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 140, + 487 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 504, + 505 + ], + "score": 1.0, + "content": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 115, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 513, + 265, + 525 + ], + "spans": [ + { + "bbox": [ + 116, + 513, + 265, + 525 + ], + "score": 1.0, + "content": "and Communications Security, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 531, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "score": 1.0, + "content": "Ian Goodfellow. Efficient per-example gradient computations. arXiv preprint arXiv:1510.01799,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 541, + 141, + 553 + ], + "spans": [ + { + "bbox": [ + 114, + 541, + 141, + 553 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 580, + 322, + 590 + ], + "spans": [ + { + "bbox": [ + 116, + 580, + 322, + 590 + ], + "score": 1.0, + "content": "on Computer and Communications Security, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "Towards practical differentially private convex optimization. In IEEE Symposium on Security", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 618, + 192, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 192, + 628 + ], + "score": 1.0, + "content": "and Privacy, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 655, + 222, + 667 + ], + "spans": [ + { + "bbox": [ + 116, + 655, + 222, + 667 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 504, + 684 + ], + "score": 1.0, + "content": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 683, + 420, + 695 + ], + "spans": [ + { + "bbox": [ + 115, + 683, + 420, + 695 + ], + "score": 1.0, + "content": "and high-dimensional regression. In Conference on Learning Theory, 2012.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 108, + 701, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 115, + 721, + 307, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 307, + 732 + ], + "score": 1.0, + "content": "on Knowledge Discovery & Data Mining, 2018.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 178, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 179, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 179, + 94 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 110 + ], + "score": 1.0, + "content": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 109, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 116, + 109, + 506, + 120 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 119, + 265, + 131 + ], + "spans": [ + { + "bbox": [ + 116, + 119, + 265, + 131 + ], + "score": 1.0, + "content": "and Communications Security, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 99, + 506, + 131 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 502, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 137, + 504, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 504, + 149 + ], + "score": 1.0, + "content": "John M Abowd. The challenge of scientific reproducibility and privacy protection for statistical", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 338, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 338, + 159 + ], + "score": 1.0, + "content": "agencies. Census Scientific Advisory Committee, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 137, + 504, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 504, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 504, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 504, + 176 + ], + "score": 1.0, + "content": "Naman Agarwal, Ananda Theertha Suresh, Felix Xinnan X Yu, Sanjiv Kumar, and Brendan", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "McMahan. cpsgd: Communication-efficient and differentially-private distributed sgd. In Advances", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 185, + 314, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 314, + 196 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 164, + 506, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 202, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk mini-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 213, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 505, + 224 + ], + "score": 1.0, + "content": "mization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 222, + 217, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 222, + 217, + 234 + ], + "score": 1.0, + "content": "Computer Science, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 202, + 505, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 504, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri and Claire Monteleoni. Privacy-preserving logistic regression. In Advances in", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 250, + 303, + 262 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 303, + 262 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, 2009.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 240, + 506, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 268, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 505, + 281 + ], + "score": 1.0, + "content": "Kamalika Chaudhuri, Claire Monteleoni, and Anand D Sarwate. Differentially private empirical risk", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 279, + 360, + 290 + ], + "spans": [ + { + "bbox": [ + 115, + 279, + 360, + 290 + ], + "score": 1.0, + "content": "minimization. Journal of Machine Learning Research, 2011.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 268, + 505, + 290 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 296, + 504, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Bolin Ding, Janardhan Kulkarni, and Sergey Yekhanin. Collecting telemetry data privately. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 306, + 355, + 318 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 355, + 318 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 295, + 505, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 323, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 107, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 107, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "ourselves: Privacy via distributed noise generation. In Annual International Conference on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 344, + 363, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 344, + 363, + 357 + ], + "score": 1.0, + "content": "Theory and Applications of Cryptographic Techniques, 2006a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 107, + 324, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 361, + 503, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 375 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 372, + 401, + 384 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 401, + 384 + ], + "score": 1.0, + "content": "in private data analysis. In Theory of cryptography conference, 2006b.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 361, + 505, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 504, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 400, + 333, + 411 + ], + "spans": [ + { + "bbox": [ + 115, + 400, + 333, + 411 + ], + "score": 1.0, + "content": "and Trends\rR in Theoretical Computer Science, 2014.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 389, + 505, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 417, + 503, + 449 + ], + "lines": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "Úlfar Erlingsson, Vasyl Pihur, and Aleksandra Korolova. Rappor: Randomized aggregatable privacy-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "preserving ordinal response. In Proceedings of the 2014 ACM SIGSAC conference on computer", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 438, + 261, + 450 + ], + "spans": [ + { + "bbox": [ + 116, + 438, + 261, + 450 + ], + "score": 1.0, + "content": "and communications security, 2014.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 417, + 505, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 455, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 468 + ], + "score": 1.0, + "content": "Vitaly Feldman, Ilya Mironov, Kunal Talwar, and Abhradeep Thakurta. Privacy amplification by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "iteration. In 2018 IEEE 59th Annual Symposium on Foundations of Computer Science (FOCS),", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 475, + 140, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 140, + 487 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 455, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 494, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 504, + 505 + ], + "score": 1.0, + "content": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 503, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 115, + 503, + 505, + 515 + ], + "score": 1.0, + "content": "confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 513, + 265, + 525 + ], + "spans": [ + { + "bbox": [ + 116, + 513, + 265, + 525 + ], + "score": 1.0, + "content": "and Communications Security, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 494, + 505, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 531, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 544 + ], + "score": 1.0, + "content": "Ian Goodfellow. Efficient per-example gradient computations. arXiv preprint arXiv:1510.01799,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 541, + 141, + 553 + ], + "spans": [ + { + "bbox": [ + 114, + 541, + 141, + 553 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 530, + 506, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 116, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 580, + 322, + 590 + ], + "spans": [ + { + "bbox": [ + 116, + 580, + 322, + 590 + ], + "score": 1.0, + "content": "on Computer and Communications Security, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 559, + 505, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 504, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 607, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 505, + 620 + ], + "score": 1.0, + "content": "Towards practical differentially private convex optimization. In IEEE Symposium on Security", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 618, + 192, + 628 + ], + "spans": [ + { + "bbox": [ + 116, + 618, + 192, + 628 + ], + "score": 1.0, + "content": "and Privacy, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 596, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 504, + 667 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 115, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 655, + 222, + 667 + ], + "spans": [ + { + "bbox": [ + 116, + 655, + 222, + 667 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 635, + 506, + 667 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 504, + 694 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 504, + 684 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 504, + 684 + ], + "score": 1.0, + "content": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 683, + 420, + 695 + ], + "spans": [ + { + "bbox": [ + 115, + 683, + 420, + 695 + ], + "score": 1.0, + "content": "and high-dimensional regression. In Conference on Learning Theory, 2012.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 673, + 504, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 701, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 711, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 711, + 506, + 723 + ], + "score": 1.0, + "content": "per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 115, + 721, + 307, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 307, + 732 + ], + "score": 1.0, + "content": "on Knowledge Discovery & Data Mining, 2018.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48, + "bbox_fs": [ + 106, + 701, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 83, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "score": 1.0, + "content": "Robert McMillan. Apple tries to peek at user habits without violating privacy. The Wall Street", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 176, + 104 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 176, + 104 + ], + "score": 1.0, + "content": "Journal, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In IEEE 30th Computer Security Foundations Symposium", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 120, + 171, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 120, + 171, + 133 + ], + "score": 1.0, + "content": "(CSF), 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 504, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "Sahand N Negahban, Pradeep Ravikumar, Martin J Wainwright, Bin Yu, et al. A unified framework", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 148, + 245, + 161 + ], + "score": 1.0, + "content": "for high-dimensional analysis of", + "type": "text" + }, + { + "bbox": [ + 245, + 154, + 254, + 158 + ], + "score": 0.88, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "-estimators with decomposable regularizers. Statistical Science,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 158, + 201, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 158, + 201, + 170 + ], + "score": 1.0, + "content": "27(4):538–557, 2012.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "Membership inference attack against differentially private deep learning model. Transactions on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 197, + 198, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 198, + 208 + ], + "score": 1.0, + "content": "Data Privacy, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 503, + 236 + ], + "lines": [ + { + "bbox": [ + 107, + 214, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 107, + 214, + 504, + 226 + ], + "score": 1.0, + "content": "Arun Rajkumar and Shivani Agarwal. A differentially private stochastic gradient descent algorithm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 225, + 416, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 416, + 236 + ], + "score": 1.0, + "content": "for multiparty classification. In Artificial Intelligence and Statistics, 2012.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 242, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "Ohad Shamir and Tong Zhang. Stochastic gradient descent for non-smooth optimization: Convergence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "results and optimal averaging schemes. In International Conference on Machine Learning, 2013.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 280, + 488, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 488, + 292 + ], + "score": 1.0, + "content": "against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 504, + 311 + ], + "score": 1.0, + "content": "Adam Smith, Abhradeep Thakurta, and Jalaj Upadhyay. Is interaction necessary for distributed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 308, + 452, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 452, + 320 + ], + "score": 1.0, + "content": "private learning? In IEEE Symposium on Security and Privacy (SP). IEEE, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "differentially private updates. In Global Conference on Signal and Information Processing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 347, + 242, + 357 + ], + "spans": [ + { + "bbox": [ + 117, + 347, + 242, + 357 + ], + "score": 1.0, + "content": "(GlobalSIP), 2013 IEEE, 2013.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 503, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 374, + 314, + 386 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 314, + 386 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 391, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 401, + 471, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 471, + 414 + ], + "score": 1.0, + "content": "Faster and more general. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 105, + 419, + 503, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 429, + 469, + 442 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 469, + 442 + ], + "score": 1.0, + "content": "sparse learning. In 28th International Joint Conference on Artificial Intelligence, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "model-inversion attacks. In 2016 IEEE 29th Computer Security Foundations Symposium (CSF),", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 467, + 140, + 479 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 140, + 479 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 504, + 497 + ], + "score": 1.0, + "content": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 496, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 117, + 496, + 505, + 506 + ], + "score": 1.0, + "content": "differential privacy for scalable stochastic gradient descent-based analytics. In ACM International", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 505, + 290, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 505, + 290, + 517 + ], + "score": 1.0, + "content": "Conference on Management of Data, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "Jiaqi Zhang, Kai Zheng, Wenlong Mou, and Liwei Wang. Efficient private erm for smooth objectives.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 533, + 382, + 545 + ], + "spans": [ + { + "bbox": [ + 116, + 533, + 382, + 545 + ], + "score": 1.0, + "content": "In International Joint Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 326, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 83, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 506, + 94 + ], + "score": 1.0, + "content": "Robert McMillan. Apple tries to peek at user habits without violating privacy. The Wall Street", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 176, + 104 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 176, + 104 + ], + "score": 1.0, + "content": "Journal, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 83, + 506, + 104 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 110, + 504, + 132 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 505, + 123 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In IEEE 30th Computer Security Foundations Symposium", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 120, + 171, + 133 + ], + "spans": [ + { + "bbox": [ + 115, + 120, + 171, + 133 + ], + "score": 1.0, + "content": "(CSF), 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 505, + 133 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 504, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "Sahand N Negahban, Pradeep Ravikumar, Martin J Wainwright, Bin Yu, et al. A unified framework", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 115, + 148, + 245, + 161 + ], + "score": 1.0, + "content": "for high-dimensional analysis of", + "type": "text" + }, + { + "bbox": [ + 245, + 154, + 254, + 158 + ], + "score": 0.88, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "-estimators with decomposable regularizers. Statistical Science,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 158, + 201, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 158, + 201, + 170 + ], + "score": 1.0, + "content": "27(4):538–557, 2012.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 138, + 506, + 170 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 504, + 208 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "Membership inference attack against differentially private deep learning model. Transactions on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 197, + 198, + 208 + ], + "spans": [ + { + "bbox": [ + 116, + 197, + 198, + 208 + ], + "score": 1.0, + "content": "Data Privacy, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 175, + 506, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 214, + 503, + 236 + ], + "lines": [ + { + "bbox": [ + 107, + 214, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 107, + 214, + 504, + 226 + ], + "score": 1.0, + "content": "Arun Rajkumar and Shivani Agarwal. A differentially private stochastic gradient descent algorithm", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 225, + 416, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 416, + 236 + ], + "score": 1.0, + "content": "for multiparty classification. In Artificial Intelligence and Statistics, 2012.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 107, + 214, + 504, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 242, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "Ohad Shamir and Tong Zhang. Stochastic gradient descent for non-smooth optimization: Convergence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "results and optimal averaging schemes. In International Conference on Machine Learning, 2013.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 241, + 505, + 264 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 280, + 488, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 488, + 292 + ], + "score": 1.0, + "content": "against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 269, + 505, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 298, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 504, + 311 + ], + "score": 1.0, + "content": "Adam Smith, Abhradeep Thakurta, and Jalaj Upadhyay. Is interaction necessary for distributed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 308, + 452, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 452, + 320 + ], + "score": 1.0, + "content": "private learning? In IEEE Symposium on Security and Privacy (SP). IEEE, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 298, + 504, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 504, + 337 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 334, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 334, + 506, + 349 + ], + "score": 1.0, + "content": "differentially private updates. In Global Conference on Signal and Information Processing", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 347, + 242, + 357 + ], + "spans": [ + { + "bbox": [ + 117, + 347, + 242, + 357 + ], + "score": 1.0, + "content": "(GlobalSIP), 2013 IEEE, 2013.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 325, + 506, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 363, + 503, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 374, + 314, + 386 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 314, + 386 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 363, + 505, + 386 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 391, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 506, + 404 + ], + "score": 1.0, + "content": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 401, + 471, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 401, + 471, + 414 + ], + "score": 1.0, + "content": "Faster and more general. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 391, + 506, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 419, + 503, + 441 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 429, + 469, + 442 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 469, + 442 + ], + "score": 1.0, + "content": "sparse learning. In 28th International Joint Conference on Artificial Intelligence, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 419, + 505, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "model-inversion attacks. In 2016 IEEE 29th Computer Security Foundations Symposium (CSF),", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 467, + 140, + 479 + ], + "spans": [ + { + "bbox": [ + 115, + 467, + 140, + 479 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 446, + 506, + 479 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 504, + 497 + ], + "score": 1.0, + "content": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 496, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 117, + 496, + 505, + 506 + ], + "score": 1.0, + "content": "differential privacy for scalable stochastic gradient descent-based analytics. In ACM International", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 505, + 290, + 517 + ], + "spans": [ + { + "bbox": [ + 116, + 505, + 290, + 517 + ], + "score": 1.0, + "content": "Conference on Management of Data, 2017.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 485, + 505, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 523, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "Jiaqi Zhang, Kai Zheng, Wenlong Mou, and Liwei Wang. Efficient private erm for smooth objectives.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 533, + 382, + 545 + ], + "spans": [ + { + "bbox": [ + 116, + 533, + 382, + 545 + ], + "score": 1.0, + "content": "In International Joint Conference on Artificial Intelligence, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 523, + 505, + 545 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 105, + 80, + 433, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 434, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 434, + 96 + ], + "score": 1.0, + "content": "Appendix A Proofs Related to DP-GD and DP-SGD", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 210, + 118 + ], + "score": 1.0, + "content": "Proof of Theorem 1. Let", + "type": "text" + }, + { + "bbox": [ + 211, + 109, + 251, + 115 + ], + "score": 0.91, + "content": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 103, + 493, + 118 + ], + "score": 1.0, + "content": "be the path generated by optimization procedure. Since", + "type": "text" + }, + { + "bbox": [ + 494, + 109, + 503, + 115 + ], + "score": 0.88, + "content": "\\scriptstyle { \\mathbf { x } } _ { t }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 368, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 259, + 126 + ], + "score": 1.0, + "content": "contains Gaussian perturbation noise", + "type": "text" + }, + { + "bbox": [ + 260, + 119, + 278, + 125 + ], + "score": 0.9, + "content": "{ z t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 115, + 368, + 126 + ], + "score": 1.0, + "content": ", Definition 3 gives us", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 132, + 404, + 144 + ], + "lines": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "spans": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\big ] \\geq \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\big \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\big \\| ^ { 2 } \\big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "688b99fd21363ae6156cef5411e6b111e00c53ffef7c34981bcecec66ba79717.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 228, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 228, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 131, + 165 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 156, + 138, + 162 + ], + "score": 0.91, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 152, + 150, + 165 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 151, + 155, + 156, + 164 + ], + "score": 0.9, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 152, + 228, + 165 + ], + "score": 1.0, + "content": "-smooth, we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 170, + 380, + 190 + ], + "lines": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "spans": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "score": 0.93, + "content": "\\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\geq \\frac { 1 } { \\beta } \\left\\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\right\\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "bac03d2baf19a3359d9c90c53d6a3204549fe8e43b83397a0691dc18b1e6ece0.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 293, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 294, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 294, + 213 + ], + "score": 1.0, + "content": "Take linear combination of above inequalities,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 216, + 465, + 264 + ], + "lines": [ + { + "bbox": [ + 146, + 216, + 465, + 264 + ], + "spans": [ + { + "bbox": [ + 146, + 216, + 465, + 264 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } & { } & { \\mathbb { E } _ { z _ { t - 1 } } [ \\langle x _ { t } - x _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle ] \\ge \\theta \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] } \\\\ & { } & \\\\ & { } & { \\ge \\theta \\nu \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "e7a04f051b0448263c12baff5c114411ace49f3ff66eb1100c4e8f4656374b10.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 146, + 216, + 465, + 232.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 232.0, + 465, + 248.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 248.0, + 465, + 264.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 272, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 104, + 270, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 123, + 288 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 274, + 184, + 284 + ], + "score": 0.91, + "content": "r _ { t } = \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 270, + 302, + 288 + ], + "score": 1.0, + "content": "be the solution error at step", + "type": "text" + }, + { + "bbox": [ + 303, + 276, + 306, + 282 + ], + "score": 0.83, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 270, + 487, + 288 + ], + "score": 1.0, + "content": ". We have the following inequalities between", + "type": "text" + }, + { + "bbox": [ + 487, + 278, + 504, + 284 + ], + "score": 0.88, + "content": "r _ { t + 1 }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 281, + 139, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 281, + 124, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 288, + 133, + 293 + ], + "score": 0.87, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 281, + 139, + 296 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 306, + 448, + 337 + ], + "lines": [ + { + "bbox": [ + 163, + 306, + 448, + 337 + ], + "spans": [ + { + "bbox": [ + 163, + 306, + 448, + 337 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { r _ { t + 1 } ^ { 2 } = \\left. x _ { t } - \\eta \\nabla F \\left( { \\pmb x } _ { t } \\right) - \\eta z _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } , } \\\\ & { \\qquad = \\left. { \\pmb x } _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\left. \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } \\right. ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6f4ca0147a4b787a1a9b4d564dc196dc2209d04042e3ad13e7782f9820dd88ab.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 163, + 306, + 448, + 316.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 163, + 316.3333333333333, + 448, + 326.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 163, + 326.66666666666663, + 448, + 336.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 343, + 290, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 290, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 242, + 356 + ], + "score": 1.0, + "content": "Take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 242, + 348, + 251, + 353 + ], + "score": 0.83, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 342, + 290, + 356 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 358, + 455, + 371 + ], + "lines": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "spans": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } } [ r _ { t + 1 } ^ { 2 } ] \\le \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "8581607a478b5f2c14be66363e02400b461d9078b797eb81fde6e00816443bf0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 387, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 387, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 273, + 392 + ], + "score": 1.0, + "content": "Further take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 274, + 385, + 292, + 391 + ], + "score": 0.9, + "content": "{ \\boldsymbol { \\mathbf { \\mathit { z } } } } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 380, + 387, + 392 + ], + "score": 1.0, + "content": "and use Eq 2, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 408, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 111, + 408, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 111, + 408, + 505, + 452 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathfrak { L } _ { \\mathfrak { z } _ { t } , \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t + 1 } ^ { 2 } \\big ] \\leq \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| x _ { t } - \\mathfrak { x } _ { * } \\big \\| ^ { 2 } \\big ] - 2 \\eta \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\langle \\nabla F \\left( \\mathfrak { x } _ { t } \\right) , \\mathfrak { x } _ { t } - \\mathfrak { x } _ { * } \\rangle \\big ] + \\eta ^ { 2 } \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } , } \\\\ & { \\qquad \\leq \\left( 1 - 2 \\left( 1 - \\theta \\right) \\eta \\nu \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t } ^ { 2 } \\big ] + \\left( \\eta ^ { 2 } - \\frac { 2 \\eta \\theta } { \\beta } \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "01377a5c12682a4008e826abdd4e5dbf1af3a6c2f9de5b51551d62366bc5ff62.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 111, + 408, + 505, + 422.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 111, + 422.6666666666667, + 505, + 437.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 111, + 437.33333333333337, + 505, + 452.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 195, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 196, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 123, + 479 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 465, + 146, + 476 + ], + "score": 0.94, + "content": "\\textstyle \\theta = { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 460, + 167, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 465, + 191, + 477 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 460, + 196, + 479 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 476, + 394, + 489 + ], + "lines": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "spans": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } } [ r _ { t + 1 } ^ { 2 } ] \\leq ( 1 - \\eta \\nu ) \\mathbb { E } _ { z _ { t - 1 } } [ r _ { t } ^ { 2 } ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "bd5eb852efaa9068d66d10597762e6add550afd95c642a6343f4be5d030351ec.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 469, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 469, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 335, + 510 + ], + "score": 1.0, + "content": "Applying Eq (6) and taking expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 335, + 502, + 397, + 508 + ], + "score": 0.9, + "content": "z _ { t } , z _ { t - 1 } , \\cdots , z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 496, + 469, + 510 + ], + "score": 1.0, + "content": "iteratively yields", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 513, + 400, + 543 + ], + "lines": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "spans": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "score": 0.94, + "content": "\\mathbb { E } [ r _ { t + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { t } r _ { 1 } ^ { 2 } + { p \\eta } ^ { 2 } \\sum _ { i = 1 } ^ { t } { ( 1 - \\eta \\nu ) } ^ { t - i } \\sigma _ { i } ^ { 2 } .", + "type": "interline_equation", + "image_path": "33dbda01797ba1b2aab4e2295a71bbd879c88499a8e82a36e700f0b790bc4244.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 546, + 297, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 297, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 297, + 559 + ], + "score": 1.0, + "content": "Uniform privacy budget allocation scheme sets", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 564, + 357, + 586 + ], + "lines": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "spans": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "score": 0.94, + "content": "\\sigma _ { t } ^ { 2 } = \\Theta \\left( \\frac { T L ^ { 2 } \\log ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "efcc6428eb5a7527e252b6f238e7e5aec5024e220cc5020de8ab0d112b249217.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 147, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 148, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 148, + 608 + ], + "score": 1.0, + "content": "Therefore", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 604, + 402, + 629 + ], + "lines": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "spans": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "score": 0.93, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } + \\Theta \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "51dccc64047b5d3e991bdd893227b15a1c040a0afe840cfa036051b5c9008a34.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 208, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 209, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 123, + 653 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 639, + 169, + 651 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 635, + 209, + 653 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 656, + 478, + 711 + ], + "lines": [ + { + "bbox": [ + 131, + 656, + 478, + 711 + ], + "spans": [ + { + "bbox": [ + 131, + 656, + 478, + 711 + ], + "score": 0.93, + "content": "\\begin{array} { c } { \\displaystyle \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } = \\exp \\left( \\frac { \\log \\left( 1 - \\eta \\nu \\right) \\log \\left( n ^ { 2 } \\right) } { \\eta \\nu } \\right) r _ { 1 } ^ { 2 } = \\exp \\left( \\log ( 1 / n ^ { 2 } ) \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) \\right) r _ { 1 } ^ { 2 } , } \\\\ { \\displaystyle \\qquad \\leq \\left( \\frac { 1 } { n ^ { 2 } } \\right) ^ { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) } r _ { 1 } ^ { 2 } < \\frac { r _ { 1 } ^ { 2 } } { n ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "b9eb9383861501cf79b391dd072d701ab2cbc8273a241e44739e201f534c18c3.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 131, + 656, + 478, + 674.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 131, + 674.3333333333334, + 478, + 692.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 131, + 692.6666666666667, + 478, + 711.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 380, + 735 + ], + "lines": [ + { + "bbox": [ + 103, + 717, + 377, + 738 + ], + "spans": [ + { + "bbox": [ + 103, + 717, + 229, + 738 + ], + "score": 1.0, + "content": "Last inequality holds because", + "type": "text" + }, + { + "bbox": [ + 229, + 722, + 313, + 735 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) > 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 717, + 330, + 738 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 330, + 721, + 377, + 735 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\geq \\frac { \\beta } { \\nu } \\geq 1 } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 327, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 105, + 80, + 433, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 434, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 434, + 96 + ], + "score": 1.0, + "content": "Appendix A Proofs Related to DP-GD and DP-SGD", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 503, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 210, + 118 + ], + "score": 1.0, + "content": "Proof of Theorem 1. Let", + "type": "text" + }, + { + "bbox": [ + 211, + 109, + 251, + 115 + ], + "score": 0.91, + "content": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 103, + 493, + 118 + ], + "score": 1.0, + "content": "be the path generated by optimization procedure. Since", + "type": "text" + }, + { + "bbox": [ + 494, + 109, + 503, + 115 + ], + "score": 0.88, + "content": "\\scriptstyle { \\mathbf { x } } _ { t }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 368, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 259, + 126 + ], + "score": 1.0, + "content": "contains Gaussian perturbation noise", + "type": "text" + }, + { + "bbox": [ + 260, + 119, + 278, + 125 + ], + "score": 0.9, + "content": "{ z t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 115, + 368, + 126 + ], + "score": 1.0, + "content": ", Definition 3 gives us", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 103, + 503, + 126 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 132, + 404, + 144 + ], + "lines": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "spans": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "score": 0.86, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\big ] \\geq \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\big \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\big \\| ^ { 2 } \\big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "688b99fd21363ae6156cef5411e6b111e00c53ffef7c34981bcecec66ba79717.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 206, + 132, + 404, + 144 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 228, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 228, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 131, + 165 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 156, + 138, + 162 + ], + "score": 0.91, + "content": "F ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 152, + 150, + 165 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 151, + 155, + 156, + 164 + ], + "score": 0.9, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 152, + 228, + 165 + ], + "score": 1.0, + "content": "-smooth, we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 152, + 228, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 170, + 380, + 190 + ], + "lines": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "spans": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "score": 0.93, + "content": "\\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\geq \\frac { 1 } { \\beta } \\left\\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\right\\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "bac03d2baf19a3359d9c90c53d6a3204549fe8e43b83397a0691dc18b1e6ece0.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 231, + 170, + 380, + 190 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 200, + 293, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 294, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 294, + 213 + ], + "score": 1.0, + "content": "Take linear combination of above inequalities,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 198, + 294, + 213 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 216, + 465, + 264 + ], + "lines": [ + { + "bbox": [ + 146, + 216, + 465, + 264 + ], + "spans": [ + { + "bbox": [ + 146, + 216, + 465, + 264 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } & { } & { \\mathbb { E } _ { z _ { t - 1 } } [ \\langle x _ { t } - x _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle ] \\ge \\theta \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] } \\\\ & { } & \\\\ & { } & { \\ge \\theta \\nu \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] . } \\end{array}", + "type": "interline_equation", + "image_path": "e7a04f051b0448263c12baff5c114411ace49f3ff66eb1100c4e8f4656374b10.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 146, + 216, + 465, + 232.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 232.0, + 465, + 248.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 248.0, + 465, + 264.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 272, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 104, + 270, + 504, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 123, + 288 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 274, + 184, + 284 + ], + "score": 0.91, + "content": "r _ { t } = \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 270, + 302, + 288 + ], + "score": 1.0, + "content": "be the solution error at step", + "type": "text" + }, + { + "bbox": [ + 303, + 276, + 306, + 282 + ], + "score": 0.83, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 270, + 487, + 288 + ], + "score": 1.0, + "content": ". We have the following inequalities between", + "type": "text" + }, + { + "bbox": [ + 487, + 278, + 504, + 284 + ], + "score": 0.88, + "content": "r _ { t + 1 }", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 281, + 139, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 281, + 124, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 125, + 288, + 133, + 293 + ], + "score": 0.87, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 281, + 139, + 296 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 270, + 504, + 296 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 306, + 448, + 337 + ], + "lines": [ + { + "bbox": [ + 163, + 306, + 448, + 337 + ], + "spans": [ + { + "bbox": [ + 163, + 306, + 448, + 337 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { r _ { t + 1 } ^ { 2 } = \\left. x _ { t } - \\eta \\nabla F \\left( { \\pmb x } _ { t } \\right) - \\eta z _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } , } \\\\ & { \\qquad = \\left. { \\pmb x } _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\left. \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } \\right. ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "6f4ca0147a4b787a1a9b4d564dc196dc2209d04042e3ad13e7782f9820dd88ab.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 163, + 306, + 448, + 316.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 163, + 316.3333333333333, + 448, + 326.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 163, + 326.66666666666663, + 448, + 336.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 343, + 290, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 290, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 242, + 356 + ], + "score": 1.0, + "content": "Take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 242, + 348, + 251, + 353 + ], + "score": 0.83, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 342, + 290, + 356 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 342, + 290, + 356 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 358, + 455, + 371 + ], + "lines": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "spans": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "score": 0.87, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } } [ r _ { t + 1 } ^ { 2 } ] \\le \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "8581607a478b5f2c14be66363e02400b461d9078b797eb81fde6e00816443bf0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 156, + 358, + 455, + 371 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 380, + 387, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 387, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 273, + 392 + ], + "score": 1.0, + "content": "Further take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 274, + 385, + 292, + 391 + ], + "score": 0.9, + "content": "{ \\boldsymbol { \\mathbf { \\mathit { z } } } } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 380, + 387, + 392 + ], + "score": 1.0, + "content": "and use Eq 2, we have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 380, + 387, + 392 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 408, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 111, + 408, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 111, + 408, + 505, + 452 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathfrak { L } _ { \\mathfrak { z } _ { t } , \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t + 1 } ^ { 2 } \\big ] \\leq \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| x _ { t } - \\mathfrak { x } _ { * } \\big \\| ^ { 2 } \\big ] - 2 \\eta \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\langle \\nabla F \\left( \\mathfrak { x } _ { t } \\right) , \\mathfrak { x } _ { t } - \\mathfrak { x } _ { * } \\rangle \\big ] + \\eta ^ { 2 } \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } , } \\\\ & { \\qquad \\leq \\left( 1 - 2 \\left( 1 - \\theta \\right) \\eta \\nu \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t } ^ { 2 } \\big ] + \\left( \\eta ^ { 2 } - \\frac { 2 \\eta \\theta } { \\beta } \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "01377a5c12682a4008e826abdd4e5dbf1af3a6c2f9de5b51551d62366bc5ff62.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 111, + 408, + 505, + 422.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 111, + 422.6666666666667, + 505, + 437.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 111, + 437.33333333333337, + 505, + 452.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 195, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 196, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 123, + 479 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 465, + 146, + 476 + ], + "score": 0.94, + "content": "\\textstyle \\theta = { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 460, + 167, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 167, + 465, + 191, + 477 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 460, + 196, + 479 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 460, + 196, + 479 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 476, + 394, + 489 + ], + "lines": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "spans": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } } [ r _ { t + 1 } ^ { 2 } ] \\leq ( 1 - \\eta \\nu ) \\mathbb { E } _ { z _ { t - 1 } } [ r _ { t } ^ { 2 } ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "bd5eb852efaa9068d66d10597762e6add550afd95c642a6343f4be5d030351ec.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 217, + 476, + 394, + 489 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 469, + 509 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 469, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 335, + 510 + ], + "score": 1.0, + "content": "Applying Eq (6) and taking expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 335, + 502, + 397, + 508 + ], + "score": 0.9, + "content": "z _ { t } , z _ { t - 1 } , \\cdots , z _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 496, + 469, + 510 + ], + "score": 1.0, + "content": "iteratively yields", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 496, + 469, + 510 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 513, + 400, + 543 + ], + "lines": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "spans": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "score": 0.94, + "content": "\\mathbb { E } [ r _ { t + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { t } r _ { 1 } ^ { 2 } + { p \\eta } ^ { 2 } \\sum _ { i = 1 } ^ { t } { ( 1 - \\eta \\nu ) } ^ { t - i } \\sigma _ { i } ^ { 2 } .", + "type": "interline_equation", + "image_path": "33dbda01797ba1b2aab4e2295a71bbd879c88499a8e82a36e700f0b790bc4244.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 212, + 513, + 400, + 543 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 546, + 297, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 546, + 297, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 297, + 559 + ], + "score": 1.0, + "content": "Uniform privacy budget allocation scheme sets", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 546, + 297, + 559 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 564, + 357, + 586 + ], + "lines": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "spans": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "score": 0.94, + "content": "\\sigma _ { t } ^ { 2 } = \\Theta \\left( \\frac { T L ^ { 2 } \\log ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "efcc6428eb5a7527e252b6f238e7e5aec5024e220cc5020de8ab0d112b249217.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 254, + 564, + 357, + 586 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 147, + 607 + ], + "lines": [ + { + "bbox": [ + 106, + 595, + 148, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 148, + 608 + ], + "score": 1.0, + "content": "Therefore", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 595, + 148, + 608 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 604, + 402, + 629 + ], + "lines": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "spans": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "score": 0.93, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } + \\Theta \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "51dccc64047b5d3e991bdd893227b15a1c040a0afe840cfa036051b5c9008a34.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 208, + 604, + 402, + 629 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 636, + 208, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 209, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 123, + 653 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 639, + 169, + 651 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 635, + 209, + 653 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 635, + 209, + 653 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 131, + 656, + 478, + 711 + ], + "lines": [ + { + "bbox": [ + 131, + 656, + 478, + 711 + ], + "spans": [ + { + "bbox": [ + 131, + 656, + 478, + 711 + ], + "score": 0.93, + "content": "\\begin{array} { c } { \\displaystyle \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } = \\exp \\left( \\frac { \\log \\left( 1 - \\eta \\nu \\right) \\log \\left( n ^ { 2 } \\right) } { \\eta \\nu } \\right) r _ { 1 } ^ { 2 } = \\exp \\left( \\log ( 1 / n ^ { 2 } ) \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) \\right) r _ { 1 } ^ { 2 } , } \\\\ { \\displaystyle \\qquad \\leq \\left( \\frac { 1 } { n ^ { 2 } } \\right) ^ { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) } r _ { 1 } ^ { 2 } < \\frac { r _ { 1 } ^ { 2 } } { n ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "b9eb9383861501cf79b391dd072d701ab2cbc8273a241e44739e201f534c18c3.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 131, + 656, + 478, + 674.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 131, + 674.3333333333334, + 478, + 692.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 131, + 692.6666666666667, + 478, + 711.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 380, + 735 + ], + "lines": [ + { + "bbox": [ + 103, + 717, + 377, + 738 + ], + "spans": [ + { + "bbox": [ + 103, + 717, + 229, + 738 + ], + "score": 1.0, + "content": "Last inequality holds because", + "type": "text" + }, + { + "bbox": [ + 229, + 722, + 313, + 735 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) > 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 717, + 330, + 738 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 330, + 721, + 377, + 735 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\geq \\frac { \\beta } { \\nu } \\geq 1 } \\end{array}", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 103, + 717, + 377, + 738 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 429, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 430, + 99 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 165, + 99 + ], + "score": 1.0, + "content": "Therefore, for", + "type": "text" + }, + { + "bbox": [ + 165, + 83, + 212, + 96 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\geq \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 80, + 363, + 99 + ], + "score": 1.0, + "content": ", we have the excepted solution error", + "type": "text" + }, + { + "bbox": [ + 363, + 84, + 394, + 95 + ], + "score": 0.94, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 80, + 430, + 99 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 98, + 373, + 123 + ], + "lines": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "spans": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "score": 0.95, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] = \\mathcal { O } \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "780e7e07162e09bd7ac762191e91e0da17e2b3a16ad42884b36f57ebfeaa5871.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 241, + 142 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 242, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 131, + 143 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 133, + 152, + 142 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 130, + 164, + 143 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 164, + 133, + 170, + 142 + ], + "score": 0.91, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 130, + 242, + 143 + ], + "score": 1.0, + "content": "-smooth, we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 144, + 368, + 165 + ], + "lines": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "spans": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "score": 0.94, + "content": "F ( \\pmb { x } ) - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } - \\pmb { x } _ { \\ast } \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "faafdfda2cd41fe91ca14ce476a29f735fc3bff9cd356843ecca49238ad9f7cb.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 387, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 388, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 388, + 185 + ], + "score": 1.0, + "content": "Using Eq (10) and Eq (11), we have the excepted excess risk satisfies", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 186, + 399, + 210 + ], + "lines": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "spans": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F ( { \\pmb x } _ { T + 1 } ) - F ( { \\pmb x } _ { \\ast } ) ] = { \\mathcal O } \\left( \\frac { \\beta p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "58c5c81bebf4ad076fc90107a320c09e9ad1a8a55d70088a39023631b44aa2d1.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 376, + 228 + ], + "lines": [ + { + "bbox": [ + 103, + 209, + 373, + 230 + ], + "spans": [ + { + "bbox": [ + 103, + 209, + 121, + 230 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 214, + 168, + 228 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 209, + 326, + 230 + ], + "score": 1.0, + "content": ". The utility bound is minimized when", + "type": "text" + }, + { + "bbox": [ + 327, + 214, + 373, + 228 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 238, + 321, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 322, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 181, + 253 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 181, + 242, + 186, + 248 + ], + "score": 0.63, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 236, + 322, + 253 + ], + "score": 1.0, + "content": ". The smooth condition gives us,", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 251, + 446, + 298 + ], + "lines": [ + { + "bbox": [ + 165, + 251, + 446, + 298 + ], + "spans": [ + { + "bbox": [ + 165, + 251, + 446, + 298 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle F ( { \\pmb x } _ { t + 1 } ) \\leq F ( { \\pmb x } _ { t } ) + \\langle \\nabla F ( { \\pmb x } _ { t } ) , { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\rangle + \\displaystyle \\frac { \\beta } { 2 } \\left\\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\right\\| ^ { 2 } } \\\\ { \\displaystyle \\qquad = F ( { \\pmb x } _ { t } ) - \\eta \\langle \\nabla F ( { \\pmb x } _ { t } ) , \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\rangle + \\displaystyle \\frac { \\beta \\eta ^ { 2 } } { 2 } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\right\\| ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "11b8ceed167607a9b72a31151039077bbd33bf2e37063f327ea23ca5e9e66b41.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 251, + 446, + 266.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 266.6666666666667, + 446, + 282.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 282.33333333333337, + 446, + 298.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 343, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 339, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 242, + 319 + ], + "score": 1.0, + "content": "Take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 243, + 309, + 251, + 315 + ], + "score": 0.87, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 301, + 315, + 319 + ], + "score": 1.0, + "content": "and substitute", + "type": "text" + }, + { + "bbox": [ + 315, + 306, + 339, + 318 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta = { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 320, + 406, + 342 + ], + "lines": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "spans": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { z _ { t } } [ F ( { \\pmb x } _ { t + 1 } ) ] = F ( { \\pmb x } _ { t } ) - \\frac { 1 } { 2 \\beta } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) \\right\\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } .", + "type": "interline_equation", + "image_path": "b82ed3987b95bf2fdeff6e81e485cbbacad0005a733ee4e36b33094f3e986d83.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 304, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 304, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 145, + 363 + ], + "score": 1.0, + "content": "Subtract", + "type": "text" + }, + { + "bbox": [ + 145, + 352, + 170, + 361 + ], + "score": 0.93, + "content": "F ( { \\pmb x } _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 347, + 304, + 363 + ], + "score": 1.0, + "content": "on both sides and use convexity,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 363, + 449, + 411 + ], + "lines": [ + { + "bbox": [ + 162, + 363, + 449, + 411 + ], + "spans": [ + { + "bbox": [ + 162, + 363, + 449, + 411 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\displaystyle \\mathbb { E } _ { z _ { t } } [ F ( { \\boldsymbol x } _ { t + 1 } ) - F ( { \\boldsymbol x } _ { * } ) ] = F ( { \\boldsymbol x } _ { t } ) - F ( { \\boldsymbol x } _ { * } ) - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { \\displaystyle \\le \\langle \\nabla F ( { \\boldsymbol x } _ { t } ) , { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "fd3a50ca042fca076dde097664d860468cec694e35eb887356b36352d42bd193.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 162, + 363, + 449, + 379.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 162, + 379.0, + 449, + 395.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 162, + 395.0, + 449, + 411.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 272, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 273, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 151, + 430 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 152, + 418, + 268, + 428 + ], + "score": 0.91, + "content": "\\nabla F ( { \\pmb x } _ { t } ) = \\beta ( { \\pmb x } _ { t } - { \\pmb x } _ { t + 1 } ) - { \\pmb z } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 414, + 273, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 430, + 501, + 546 + ], + "lines": [ + { + "bbox": [ + 112, + 430, + 501, + 546 + ], + "spans": [ + { + "bbox": [ + 112, + 430, + 501, + 546 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathbb { E } _ { \\mathbf { z } _ { t } } [ F ( \\mathbf { x } _ { t + 1 } ) - F ( \\mathbf { x } _ { * } ) ] \\leq \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\mathbb { E } _ { \\mathbf { z } _ { t } } [ \\left. \\beta ( \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } ) - z _ { t } \\right. ^ { 2 } ] + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t + 1 } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t } - \\boldsymbol { \\eta } \\nabla F ( \\mathbf { x } _ { t } ) - \\boldsymbol { \\eta } z _ { t } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { } & { = \\frac { \\beta } { 2 } ( \\Vert \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\Vert ^ { 2 } - \\Vert \\mathbf { x } _ { t + 1 } - \\mathbf { x } _ { * } \\Vert ^ { 2 } ) + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "54d9bd79979ce7b108cd31d88f8bdd1546c8488001c245817895f57244ac34a3.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 112, + 430, + 501, + 468.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 468.6666666666667, + 501, + 507.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 507.33333333333337, + 501, + 546.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 557, + 415, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 416, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 167, + 572 + ], + "score": 1.0, + "content": "Summing over", + "type": "text" + }, + { + "bbox": [ + 168, + 561, + 216, + 569 + ], + "score": 0.93, + "content": "t = 1 , \\ldots , T ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 555, + 369, + 572 + ], + "score": 1.0, + "content": "and take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 370, + 563, + 411, + 569 + ], + "score": 0.84, + "content": "z _ { 1 } , \\dots , z _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 555, + 416, + 572 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 571, + 413, + 601 + ], + "lines": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "spans": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "score": 0.92, + "content": "\\sum _ { t = 1 } ^ { T } \\mathbb { E } [ F ( \\pmb { x } _ { t + 1 } ) - F ( \\pmb { x } _ { * } ) ] \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } _ { 1 } - \\pmb { x } _ { * } \\right. ^ { 2 } + \\sum _ { t = 1 } ^ { T } \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } .", + "type": "interline_equation", + "image_path": "ff767cbf49f047257c076ba6db88c35fcd57cd67d0f81840e7c1a722ca3b9e4a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 165, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 167, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 167, + 622 + ], + "score": 1.0, + "content": "Use convexity,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 618, + 422, + 668 + ], + "lines": [ + { + "bbox": [ + 188, + 618, + 422, + 668 + ], + "spans": [ + { + "bbox": [ + 188, + 618, + 422, + 668 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\mathbb { E } [ F ( \\bar { \\pmb { x } } ) - F ( { \\pmb x } _ { * } ) ] \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma ^ { 2 } } } \\\\ & { } & { \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\Theta ( \\frac { L ^ { 2 } p T \\log ( 1 / \\delta ) } { \\beta n ^ { 2 } \\epsilon ^ { 2 } } ) } \\end{array}", + "type": "interline_equation", + "image_path": "27cc35a06d047cbee40acecb5614c10cce79d08859d339f902d3b1e1c066f78b.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 618, + 422, + 643.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 188, + 643.0, + 422, + 668.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 212, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 212, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 175, + 685 + ], + "score": 1.0, + "content": "Choose T = nβ\u000f√ ,", + "type": "text" + }, + { + "bbox": [ + 158, + 679, + 178, + 688 + ], + "score": 0.727, + "content": "√p,", + "type": "text" + }, + { + "bbox": [ + 176, + 674, + 212, + 686 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 690, + 390, + 720 + ], + "lines": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "spans": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F ( \\bar { \\pmb x } ) - F ( { \\pmb x } _ { \\ast } ) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( 1 / \\delta ) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "75f3a78e18dd8f7809c5183e84f8a579ca3cd485e3a7ecc7b53e7bc8aaef19d3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 327, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 214, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 495, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 495, + 215, + 505, + 227 + ], + "score": 0.992, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 721, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 496, + 722, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 496, + 722, + 505, + 732 + ], + "score": 0.995, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 429, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 430, + 99 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 165, + 99 + ], + "score": 1.0, + "content": "Therefore, for", + "type": "text" + }, + { + "bbox": [ + 165, + 83, + 212, + 96 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\geq \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 80, + 363, + 99 + ], + "score": 1.0, + "content": ", we have the excepted solution error", + "type": "text" + }, + { + "bbox": [ + 363, + 84, + 394, + 95 + ], + "score": 0.94, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 80, + 430, + 99 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 430, + 99 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 238, + 98, + 373, + 123 + ], + "lines": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "spans": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "score": 0.95, + "content": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] = \\mathcal { O } \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "780e7e07162e09bd7ac762191e91e0da17e2b3a16ad42884b36f57ebfeaa5871.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 238, + 98, + 373, + 123 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 241, + 142 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 242, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 131, + 143 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 133, + 152, + 142 + ], + "score": 0.93, + "content": "F ( { \\pmb x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 130, + 164, + 143 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 164, + 133, + 170, + 142 + ], + "score": 0.91, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 130, + 242, + 143 + ], + "score": 1.0, + "content": "-smooth, we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 130, + 242, + 143 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 144, + 368, + 165 + ], + "lines": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "spans": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "score": 0.94, + "content": "F ( \\pmb { x } ) - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } - \\pmb { x } _ { \\ast } \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "faafdfda2cd41fe91ca14ce476a29f735fc3bff9cd356843ecca49238ad9f7cb.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 243, + 144, + 368, + 165 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 387, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 388, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 388, + 185 + ], + "score": 1.0, + "content": "Using Eq (10) and Eq (11), we have the excepted excess risk satisfies", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 172, + 388, + 185 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 186, + 399, + 210 + ], + "lines": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "spans": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F ( { \\pmb x } _ { T + 1 } ) - F ( { \\pmb x } _ { \\ast } ) ] = { \\mathcal O } \\left( \\frac { \\beta p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right)", + "type": "interline_equation", + "image_path": "58c5c81bebf4ad076fc90107a320c09e9ad1a8a55d70088a39023631b44aa2d1.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 186, + 399, + 210 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 376, + 228 + ], + "lines": [ + { + "bbox": [ + 103, + 209, + 373, + 230 + ], + "spans": [ + { + "bbox": [ + 103, + 209, + 121, + 230 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 214, + 168, + 228 + ], + "score": 0.95, + "content": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 209, + 326, + 230 + ], + "score": 1.0, + "content": ". The utility bound is minimized when", + "type": "text" + }, + { + "bbox": [ + 327, + 214, + 373, + 228 + ], + "score": 0.93, + "content": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 103, + 209, + 373, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 238, + 321, + 250 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 322, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 181, + 253 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 181, + 242, + 186, + 248 + ], + "score": 0.63, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 236, + 322, + 253 + ], + "score": 1.0, + "content": ". The smooth condition gives us,", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 236, + 322, + 253 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 251, + 446, + 298 + ], + "lines": [ + { + "bbox": [ + 165, + 251, + 446, + 298 + ], + "spans": [ + { + "bbox": [ + 165, + 251, + 446, + 298 + ], + "score": 0.92, + "content": "\\begin{array} { l } { \\displaystyle F ( { \\pmb x } _ { t + 1 } ) \\leq F ( { \\pmb x } _ { t } ) + \\langle \\nabla F ( { \\pmb x } _ { t } ) , { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\rangle + \\displaystyle \\frac { \\beta } { 2 } \\left\\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\right\\| ^ { 2 } } \\\\ { \\displaystyle \\qquad = F ( { \\pmb x } _ { t } ) - \\eta \\langle \\nabla F ( { \\pmb x } _ { t } ) , \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\rangle + \\displaystyle \\frac { \\beta \\eta ^ { 2 } } { 2 } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\right\\| ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "11b8ceed167607a9b72a31151039077bbd33bf2e37063f327ea23ca5e9e66b41.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 251, + 446, + 266.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 266.6666666666667, + 446, + 282.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 282.33333333333337, + 446, + 298.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 343, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 339, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 242, + 319 + ], + "score": 1.0, + "content": "Take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 243, + 309, + 251, + 315 + ], + "score": 0.87, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 301, + 315, + 319 + ], + "score": 1.0, + "content": "and substitute", + "type": "text" + }, + { + "bbox": [ + 315, + 306, + 339, + 318 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta = { \\frac { 1 } { \\beta } } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 301, + 339, + 319 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 320, + 406, + 342 + ], + "lines": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "spans": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { z _ { t } } [ F ( { \\pmb x } _ { t + 1 } ) ] = F ( { \\pmb x } _ { t } ) - \\frac { 1 } { 2 \\beta } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) \\right\\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } .", + "type": "interline_equation", + "image_path": "b82ed3987b95bf2fdeff6e81e485cbbacad0005a733ee4e36b33094f3e986d83.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 205, + 320, + 406, + 342 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 349, + 304, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 304, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 145, + 363 + ], + "score": 1.0, + "content": "Subtract", + "type": "text" + }, + { + "bbox": [ + 145, + 352, + 170, + 361 + ], + "score": 0.93, + "content": "F ( { \\pmb x } _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 347, + 304, + 363 + ], + "score": 1.0, + "content": "on both sides and use convexity,", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 347, + 304, + 363 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 363, + 449, + 411 + ], + "lines": [ + { + "bbox": [ + 162, + 363, + 449, + 411 + ], + "spans": [ + { + "bbox": [ + 162, + 363, + 449, + 411 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\displaystyle \\mathbb { E } _ { z _ { t } } [ F ( { \\boldsymbol x } _ { t + 1 } ) - F ( { \\boldsymbol x } _ { * } ) ] = F ( { \\boldsymbol x } _ { t } ) - F ( { \\boldsymbol x } _ { * } ) - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { \\displaystyle \\le \\langle \\nabla F ( { \\boldsymbol x } _ { t } ) , { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "fd3a50ca042fca076dde097664d860468cec694e35eb887356b36352d42bd193.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 162, + 363, + 449, + 379.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 162, + 379.0, + 449, + 395.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 162, + 395.0, + 449, + 411.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 416, + 272, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 273, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 151, + 430 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 152, + 418, + 268, + 428 + ], + "score": 0.91, + "content": "\\nabla F ( { \\pmb x } _ { t } ) = \\beta ( { \\pmb x } _ { t } - { \\pmb x } _ { t + 1 } ) - { \\pmb z } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 414, + 273, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 414, + 273, + 430 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 112, + 430, + 501, + 546 + ], + "lines": [ + { + "bbox": [ + 112, + 430, + 501, + 546 + ], + "spans": [ + { + "bbox": [ + 112, + 430, + 501, + 546 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathbb { E } _ { \\mathbf { z } _ { t } } [ F ( \\mathbf { x } _ { t + 1 } ) - F ( \\mathbf { x } _ { * } ) ] \\leq \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\mathbb { E } _ { \\mathbf { z } _ { t } } [ \\left. \\beta ( \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } ) - z _ { t } \\right. ^ { 2 } ] + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t + 1 } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t } - \\boldsymbol { \\eta } \\nabla F ( \\mathbf { x } _ { t } ) - \\boldsymbol { \\eta } z _ { t } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { } & { = \\frac { \\beta } { 2 } ( \\Vert \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\Vert ^ { 2 } - \\Vert \\mathbf { x } _ { t + 1 } - \\mathbf { x } _ { * } \\Vert ^ { 2 } ) + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "54d9bd79979ce7b108cd31d88f8bdd1546c8488001c245817895f57244ac34a3.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 112, + 430, + 501, + 468.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 468.6666666666667, + 501, + 507.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 507.33333333333337, + 501, + 546.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 557, + 415, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 416, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 167, + 572 + ], + "score": 1.0, + "content": "Summing over", + "type": "text" + }, + { + "bbox": [ + 168, + 561, + 216, + 569 + ], + "score": 0.93, + "content": "t = 1 , \\ldots , T ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 555, + 369, + 572 + ], + "score": 1.0, + "content": "and take expectation with respect to", + "type": "text" + }, + { + "bbox": [ + 370, + 563, + 411, + 569 + ], + "score": 0.84, + "content": "z _ { 1 } , \\dots , z _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 555, + 416, + 572 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 555, + 416, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 571, + 413, + 601 + ], + "lines": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "spans": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "score": 0.92, + "content": "\\sum _ { t = 1 } ^ { T } \\mathbb { E } [ F ( \\pmb { x } _ { t + 1 } ) - F ( \\pmb { x } _ { * } ) ] \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } _ { 1 } - \\pmb { x } _ { * } \\right. ^ { 2 } + \\sum _ { t = 1 } ^ { T } \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } .", + "type": "interline_equation", + "image_path": "ff767cbf49f047257c076ba6db88c35fcd57cd67d0f81840e7c1a722ca3b9e4a.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 197, + 571, + 413, + 601 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 165, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 607, + 167, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 167, + 622 + ], + "score": 1.0, + "content": "Use convexity,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 607, + 167, + 622 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 618, + 422, + 668 + ], + "lines": [ + { + "bbox": [ + 188, + 618, + 422, + 668 + ], + "spans": [ + { + "bbox": [ + 188, + 618, + 422, + 668 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { \\mathbb { E } [ F ( \\bar { \\pmb { x } } ) - F ( { \\pmb x } _ { * } ) ] \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma ^ { 2 } } } \\\\ & { } & { \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\Theta ( \\frac { L ^ { 2 } p T \\log ( 1 / \\delta ) } { \\beta n ^ { 2 } \\epsilon ^ { 2 } } ) } \\end{array}", + "type": "interline_equation", + "image_path": "27cc35a06d047cbee40acecb5614c10cce79d08859d339f902d3b1e1c066f78b.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 618, + 422, + 643.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 188, + 643.0, + 422, + 668.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 212, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 212, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 175, + 685 + ], + "score": 1.0, + "content": "Choose T = nβ\u000f√ ,", + "type": "text" + }, + { + "bbox": [ + 158, + 679, + 178, + 688 + ], + "score": 0.727, + "content": "√p,", + "type": "text" + }, + { + "bbox": [ + 176, + 674, + 212, + 686 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 671, + 212, + 688 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 690, + 390, + 720 + ], + "lines": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "spans": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "score": 0.94, + "content": "\\mathbb { E } [ F ( \\bar { \\pmb x } ) - F ( { \\pmb x } _ { \\ast } ) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( 1 / \\delta ) } { n \\epsilon } \\right) .", + "type": "interline_equation", + "image_path": "75f3a78e18dd8f7809c5183e84f8a579ca3cd485e3a7ecc7b53e7bc8aaef19d3.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 221, + 690, + 390, + 720 + ], + "spans": [], + "index": 27 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 362, + 95 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 361, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 361, + 96 + ], + "score": 1.0, + "content": "Proof of Theorem 3 and 4. We start by giving a useful lemma.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 113 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 189, + 114 + ], + "score": 1.0, + "content": "Lemma 2. Choose", + "type": "text" + }, + { + "bbox": [ + 189, + 101, + 219, + 112 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 98, + 342, + 114 + ], + "score": 1.0, + "content": ", the expected solution error of", + "type": "text" + }, + { + "bbox": [ + 343, + 105, + 352, + 110 + ], + "score": 0.81, + "content": "_ { x t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 98, + 408, + 114 + ], + "score": 1.0, + "content": "in Algorithm", + "type": "text" + }, + { + "bbox": [ + 409, + 101, + 415, + 110 + ], + "score": 0.32, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 98, + 448, + 114 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 449, + 102, + 470, + 110 + ], + "score": 0.82, + "content": "t > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 98, + 506, + 114 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 119, + 369, + 141 + ], + "lines": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "spans": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\| ^ { 2 } ] \\le \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } ,", + "type": "interline_equation", + "image_path": "62fd7b4cd904720cde223992d6ce70ceabebef3bfd98d16d1150a9503647c317.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 153, + 223, + 164 + ], + "lines": [ + { + "bbox": [ + 107, + 153, + 223, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 175, + 165 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 176, + 156, + 181, + 162 + ], + "score": 0.68, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 153, + 223, + 165 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 169, + 473, + 200 + ], + "lines": [ + { + "bbox": [ + 122, + 169, + 473, + 200 + ], + "spans": [ + { + "bbox": [ + 122, + 169, + 473, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\| x _ { t + 1 } - x _ { * } \\| ^ { 2 } = \\| x _ { t } - \\eta _ { t } g _ { t } - \\eta _ { t } z _ { t } - x _ { * } \\| ^ { 2 } } \\\\ & { \\qquad = \\| x _ { t } - x _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle x _ { t } - x _ { * } , g _ { t } + z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| g _ { t } \\right\\| ^ { 2 } - 2 \\eta _ { t } ^ { 2 } \\langle g _ { t } , z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| z _ { t } \\right\\| ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "49d61634e94fbe2dd4df230c8c2369211532801d26908cc09cf7cbb0e3ffc1f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 122, + 169, + 473, + 179.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 179.33333333333334, + 473, + 189.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 122, + 189.66666666666669, + 473, + 200.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 209, + 460, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 459, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 319, + 223 + ], + "score": 1.0, + "content": "Take expectation with respect to perturbation noise", + "type": "text" + }, + { + "bbox": [ + 320, + 215, + 328, + 220 + ], + "score": 0.88, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 209, + 459, + 223 + ], + "score": 1.0, + "content": "and uniform sampling, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 226, + 464, + 258 + ], + "lines": [ + { + "bbox": [ + 146, + 226, + 464, + 258 + ], + "spans": [ + { + "bbox": [ + 146, + 226, + 464, + 258 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t } - \\eta _ { t } { \\boldsymbol g } _ { t } - \\eta _ { t } z _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\qquad \\le \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } , \\nabla F ( { \\boldsymbol x } _ { t } ) \\rangle + \\eta _ { t } ^ { 2 } L ^ { 2 } + p \\eta _ { t } ^ { 2 } L ^ { 2 } \\sigma ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "2c79e2153939e847ec61f57d5b08a5540c77d33176f28ea0719250597f216a95.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 146, + 226, + 464, + 236.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 236.66666666666666, + 464, + 247.33333333333331 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 146, + 247.33333333333331, + 464, + 258.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 336, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 337, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 221, + 280 + ], + "score": 1.0, + "content": "Further take expectation to", + "type": "text" + }, + { + "bbox": [ + 221, + 272, + 239, + 278 + ], + "score": 0.9, + "content": "{ \\boldsymbol { z } } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 266, + 337, + 280 + ], + "score": 1.0, + "content": "and apply Definition 3,", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 290, + 457, + 322 + ], + "lines": [ + { + "bbox": [ + 154, + 290, + 457, + 322 + ], + "spans": [ + { + "bbox": [ + 154, + 290, + 457, + 322 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] \\leq \\left( 1 - 2 \\nu _ { t } \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } \\\\ { \\leq \\left( 1 - 2 \\nu \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) . } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "d1e222e003cc3cbb131763dd751a702d6f124e00f7468f15a7f32dd6032699d2.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 154, + 290, + 457, + 300.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 154, + 300.6666666666667, + 457, + 311.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 154, + 311.33333333333337, + 457, + 322.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 328, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 331, + 345 + ], + "score": 1.0, + "content": "Now we use induction to conduct the proof. Substitute", + "type": "text" + }, + { + "bbox": [ + 331, + 331, + 361, + 342 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 328, + 506, + 345 + ], + "score": 1.0, + "content": "into Eq 21, we have Lemma 2 hold", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 147, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 121, + 351 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 343, + 142, + 349 + ], + "score": 0.9, + "content": "t = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 339, + 147, + 351 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 340, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 340, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 140, + 372 + ], + "score": 1.0, + "content": "Assume", + "type": "text" + }, + { + "bbox": [ + 141, + 356, + 253, + 371 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\left\\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\right\\| ^ { 2 } ] \\leq \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 351, + 293, + 372 + ], + "score": 1.0, + "content": "holds for", + "type": "text" + }, + { + "bbox": [ + 294, + 362, + 314, + 369 + ], + "score": 0.9, + "content": "t > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 351, + 340, + 372 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 378, + 430, + 459 + ], + "lines": [ + { + "bbox": [ + 181, + 378, + 430, + 459 + ], + "spans": [ + { + "bbox": [ + 181, + 378, + 430, + 459 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbb { E } [ \\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { * } \\| ^ { 2 } ] \\leq ( 1 - \\frac { 2 } { t } ) \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } } \\\\ & { } & { \\leq ( \\frac { 1 } { t } - \\frac { 2 } { t ^ { 2 } } ) \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } \\\\ & { } & { = ( \\frac { 2 } { t } - \\frac { 3 } { t ^ { 2 } } ) \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } \\leq \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { ( t + 1 ) \\nu ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "9a2fddc376400476966ea5ed4d2365233ff97fb84ee8587812a86ee6bd5291b4.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 181, + 378, + 430, + 405.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 181, + 405.0, + 430, + 432.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 181, + 432.0, + 430, + 459.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 491, + 504, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 313, + 504 + ], + "score": 1.0, + "content": "It’s easy to check that Eq 20 holds for arbitrary", + "type": "text" + }, + { + "bbox": [ + 313, + 497, + 319, + 501 + ], + "score": 0.88, + "content": "\\textbf { \\em x }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 491, + 374, + 504 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 374, + 497, + 385, + 502 + ], + "score": 0.89, + "content": "^ { x \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 491, + 505, + 504 + ], + "score": 1.0, + "content": ". Rearrange Eq 20 and take", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 502, + 193, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 193, + 513 + ], + "score": 1.0, + "content": "expectation, we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 518, + 454, + 543 + ], + "lines": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "spans": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\langle x _ { t } - x , \\nabla F \\left( x _ { t } \\right) \\rangle ] \\leq \\frac { \\mathbb { E } [ \\Vert x _ { t } - x \\Vert ^ { 2 } ] - \\mathbb { E } [ \\Vert x _ { t + 1 } - x \\Vert ^ { 2 } ] } { 2 \\eta _ { t } } + \\frac { \\eta _ { t } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } .", + "type": "interline_equation", + "image_path": "342d27ed7d53adbf1b4ba801946fec21595a4f46fb29b2d07605192cda20978e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 123, + 568 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 557, + 129, + 564 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 555, + 243, + 568 + ], + "score": 1.0, + "content": "be arbitrarily chosen from", + "type": "text" + }, + { + "bbox": [ + 243, + 557, + 302, + 567 + ], + "score": 0.91, + "content": "\\{ 1 , \\ldots , \\lfloor { T / 2 } \\rfloor \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 555, + 405, + 568 + ], + "score": 1.0, + "content": ". Summing over the last", + "type": "text" + }, + { + "bbox": [ + 405, + 558, + 426, + 565 + ], + "score": 0.93, + "content": "k + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "iterations and use", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 564, + 362, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 212, + 578 + ], + "score": 1.0, + "content": "convexity to lower bound", + "type": "text" + }, + { + "bbox": [ + 212, + 566, + 284, + 576 + ], + "score": 0.89, + "content": "\\langle { \\pmb x } _ { t } - { \\pmb x } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 564, + 298, + 578 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 299, + 567, + 357, + 576 + ], + "score": 0.93, + "content": "F \\left( { \\pmb x } _ { t } \\right) - F \\left( { \\pmb x } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 564, + 362, + 578 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 589, + 466, + 654 + ], + "lines": [ + { + "bbox": [ + 127, + 589, + 466, + 654 + ], + "spans": [ + { + "bbox": [ + 127, + 589, + 466, + 654 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\displaystyle \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F ( { \\pmb x } _ { t } ) - F ( { \\pmb x } ) ] \\leq \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T - k } } + \\frac { 1 } { 2 } \\displaystyle \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } \\| ^ { 2 } ] \\left( \\frac { 1 } { n _ { t } } - \\frac { 1 } { n _ { t - 1 } } \\right) } & { } \\\\ { - \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T + 1 } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T } } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = T - k } ^ { T } \\eta _ { t } . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "7a419174cd48ec2dc2c8d5a6aa9ce0da72cb44d960d9a8e44045e5e7a43d7e43.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 127, + 589, + 466, + 610.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 127, + 610.6666666666666, + 466, + 632.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 127, + 632.3333333333333, + 466, + 653.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 662, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 103, + 660, + 507, + 678 + ], + "spans": [ + { + "bbox": [ + 103, + 660, + 151, + 678 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 151, + 664, + 181, + 675 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 660, + 421, + 678 + ], + "score": 1.0, + "content": "and follow the idea in Shamir & Zhang (2013) by choosing", + "type": "text" + }, + { + "bbox": [ + 421, + 668, + 461, + 674 + ], + "score": 0.9, + "content": "{ \\pmb x } = { \\pmb x } _ { T - k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 660, + 507, + 678 + ], + "score": 1.0, + "content": ", we arrive", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 672, + 119, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 119, + 685 + ], + "score": 1.0, + "content": "at", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 704, + 460, + 735 + ], + "lines": [ + { + "bbox": [ + 124, + 704, + 460, + 735 + ], + "spans": [ + { + "bbox": [ + 124, + 704, + 460, + 735 + ], + "score": 0.92, + "content": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { \\nu } { 2 } \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ] + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .", + "type": "interline_equation", + "image_path": "a46c30ac6682a066434527727e111021442d3fa500df199324c2b929a6da6e01.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 124, + 704, + 460, + 714.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 124, + 714.3333333333334, + 460, + 724.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 124, + 724.6666666666667, + 460, + 735.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 327, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 468, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 496, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 496, + 468, + 505, + 480 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 362, + 95 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 361, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 361, + 96 + ], + "score": 1.0, + "content": "Proof of Theorem 3 and 4. We start by giving a useful lemma.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 107, + 82, + 361, + 96 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 505, + 113 + ], + "lines": [ + { + "bbox": [ + 105, + 98, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 98, + 189, + 114 + ], + "score": 1.0, + "content": "Lemma 2. Choose", + "type": "text" + }, + { + "bbox": [ + 189, + 101, + 219, + 112 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 98, + 342, + 114 + ], + "score": 1.0, + "content": ", the expected solution error of", + "type": "text" + }, + { + "bbox": [ + 343, + 105, + 352, + 110 + ], + "score": 0.81, + "content": "_ { x t }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 98, + 408, + 114 + ], + "score": 1.0, + "content": "in Algorithm", + "type": "text" + }, + { + "bbox": [ + 409, + 101, + 415, + 110 + ], + "score": 0.32, + "content": "\\mathcal { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 98, + 448, + 114 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 449, + 102, + 470, + 110 + ], + "score": 0.82, + "content": "t > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 98, + 506, + 114 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 98, + 506, + 114 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 119, + 369, + 141 + ], + "lines": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "spans": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\| ^ { 2 } ] \\le \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } ,", + "type": "interline_equation", + "image_path": "62fd7b4cd904720cde223992d6ce70ceabebef3bfd98d16d1150a9503647c317.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 240, + 119, + 369, + 141 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 153, + 223, + 164 + ], + "lines": [ + { + "bbox": [ + 107, + 153, + 223, + 165 + ], + "spans": [ + { + "bbox": [ + 107, + 153, + 175, + 165 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 176, + 156, + 181, + 162 + ], + "score": 0.68, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 153, + 223, + 165 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 107, + 153, + 223, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 169, + 473, + 200 + ], + "lines": [ + { + "bbox": [ + 122, + 169, + 473, + 200 + ], + "spans": [ + { + "bbox": [ + 122, + 169, + 473, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\| x _ { t + 1 } - x _ { * } \\| ^ { 2 } = \\| x _ { t } - \\eta _ { t } g _ { t } - \\eta _ { t } z _ { t } - x _ { * } \\| ^ { 2 } } \\\\ & { \\qquad = \\| x _ { t } - x _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle x _ { t } - x _ { * } , g _ { t } + z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| g _ { t } \\right\\| ^ { 2 } - 2 \\eta _ { t } ^ { 2 } \\langle g _ { t } , z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| z _ { t } \\right\\| ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "49d61634e94fbe2dd4df230c8c2369211532801d26908cc09cf7cbb0e3ffc1f9.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 122, + 169, + 473, + 179.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 122, + 179.33333333333334, + 473, + 189.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 122, + 189.66666666666669, + 473, + 200.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 209, + 460, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 459, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 319, + 223 + ], + "score": 1.0, + "content": "Take expectation with respect to perturbation noise", + "type": "text" + }, + { + "bbox": [ + 320, + 215, + 328, + 220 + ], + "score": 0.88, + "content": "\\scriptstyle { \\mathcal { Z } } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 209, + 459, + 223 + ], + "score": 1.0, + "content": "and uniform sampling, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 209, + 459, + 223 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 226, + 464, + 258 + ], + "lines": [ + { + "bbox": [ + 146, + 226, + 464, + 258 + ], + "spans": [ + { + "bbox": [ + 146, + 226, + 464, + 258 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t } - \\eta _ { t } { \\boldsymbol g } _ { t } - \\eta _ { t } z _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\qquad \\le \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } , \\nabla F ( { \\boldsymbol x } _ { t } ) \\rangle + \\eta _ { t } ^ { 2 } L ^ { 2 } + p \\eta _ { t } ^ { 2 } L ^ { 2 } \\sigma ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "2c79e2153939e847ec61f57d5b08a5540c77d33176f28ea0719250597f216a95.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 146, + 226, + 464, + 236.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 236.66666666666666, + 464, + 247.33333333333331 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 146, + 247.33333333333331, + 464, + 258.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 336, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 337, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 221, + 280 + ], + "score": 1.0, + "content": "Further take expectation to", + "type": "text" + }, + { + "bbox": [ + 221, + 272, + 239, + 278 + ], + "score": 0.9, + "content": "{ \\boldsymbol { z } } _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 266, + 337, + 280 + ], + "score": 1.0, + "content": "and apply Definition 3,", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 266, + 337, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 154, + 290, + 457, + 322 + ], + "lines": [ + { + "bbox": [ + 154, + 290, + 457, + 322 + ], + "spans": [ + { + "bbox": [ + 154, + 290, + 457, + 322 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] \\leq \\left( 1 - 2 \\nu _ { t } \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } \\\\ { \\leq \\left( 1 - 2 \\nu \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) . } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "d1e222e003cc3cbb131763dd751a702d6f124e00f7468f15a7f32dd6032699d2.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 154, + 290, + 457, + 300.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 154, + 300.6666666666667, + 457, + 311.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 154, + 311.33333333333337, + 457, + 322.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 329, + 504, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 328, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 328, + 331, + 345 + ], + "score": 1.0, + "content": "Now we use induction to conduct the proof. Substitute", + "type": "text" + }, + { + "bbox": [ + 331, + 331, + 361, + 342 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 328, + 506, + 345 + ], + "score": 1.0, + "content": "into Eq 21, we have Lemma 2 hold", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 339, + 147, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 121, + 351 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 343, + 142, + 349 + ], + "score": 0.9, + "content": "t = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 339, + 147, + 351 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 328, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 353, + 340, + 372 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 340, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 140, + 372 + ], + "score": 1.0, + "content": "Assume", + "type": "text" + }, + { + "bbox": [ + 141, + 356, + 253, + 371 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathbb { E } [ \\left\\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\right\\| ^ { 2 } ] \\leq \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 351, + 293, + 372 + ], + "score": 1.0, + "content": "holds for", + "type": "text" + }, + { + "bbox": [ + 294, + 362, + 314, + 369 + ], + "score": 0.9, + "content": "t > 2", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 351, + 340, + 372 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 351, + 340, + 372 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 378, + 430, + 459 + ], + "lines": [ + { + "bbox": [ + 181, + 378, + 430, + 459 + ], + "spans": [ + { + "bbox": [ + 181, + 378, + 430, + 459 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbb { E } [ \\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { * } \\| ^ { 2 } ] \\leq ( 1 - \\frac { 2 } { t } ) \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } } \\\\ & { } & { \\leq ( \\frac { 1 } { t } - \\frac { 2 } { t ^ { 2 } } ) \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } \\\\ & { } & { = ( \\frac { 2 } { t } - \\frac { 3 } { t ^ { 2 } } ) \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } \\leq \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { ( t + 1 ) \\nu ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "9a2fddc376400476966ea5ed4d2365233ff97fb84ee8587812a86ee6bd5291b4.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 181, + 378, + 430, + 405.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 181, + 405.0, + 430, + 432.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 181, + 432.0, + 430, + 459.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 491, + 504, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 313, + 504 + ], + "score": 1.0, + "content": "It’s easy to check that Eq 20 holds for arbitrary", + "type": "text" + }, + { + "bbox": [ + 313, + 497, + 319, + 501 + ], + "score": 0.88, + "content": "\\textbf { \\em x }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 491, + 374, + 504 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 374, + 497, + 385, + 502 + ], + "score": 0.89, + "content": "^ { x \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 491, + 505, + 504 + ], + "score": 1.0, + "content": ". Rearrange Eq 20 and take", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 502, + 193, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 193, + 513 + ], + "score": 1.0, + "content": "expectation, we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 491, + 505, + 513 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 518, + 454, + 543 + ], + "lines": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "spans": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\langle x _ { t } - x , \\nabla F \\left( x _ { t } \\right) \\rangle ] \\leq \\frac { \\mathbb { E } [ \\Vert x _ { t } - x \\Vert ^ { 2 } ] - \\mathbb { E } [ \\Vert x _ { t + 1 } - x \\Vert ^ { 2 } ] } { 2 \\eta _ { t } } + \\frac { \\eta _ { t } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } .", + "type": "interline_equation", + "image_path": "342d27ed7d53adbf1b4ba801946fec21595a4f46fb29b2d07605192cda20978e.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 157, + 518, + 454, + 543 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 123, + 568 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 557, + 129, + 564 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 555, + 243, + 568 + ], + "score": 1.0, + "content": "be arbitrarily chosen from", + "type": "text" + }, + { + "bbox": [ + 243, + 557, + 302, + 567 + ], + "score": 0.91, + "content": "\\{ 1 , \\ldots , \\lfloor { T / 2 } \\rfloor \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 555, + 405, + 568 + ], + "score": 1.0, + "content": ". Summing over the last", + "type": "text" + }, + { + "bbox": [ + 405, + 558, + 426, + 565 + ], + "score": 0.93, + "content": "k + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "iterations and use", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 564, + 362, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 212, + 578 + ], + "score": 1.0, + "content": "convexity to lower bound", + "type": "text" + }, + { + "bbox": [ + 212, + 566, + 284, + 576 + ], + "score": 0.89, + "content": "\\langle { \\pmb x } _ { t } - { \\pmb x } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 564, + 298, + 578 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 299, + 567, + 357, + 576 + ], + "score": 0.93, + "content": "F \\left( { \\pmb x } _ { t } \\right) - F \\left( { \\pmb x } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 564, + 362, + 578 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 555, + 505, + 578 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 127, + 589, + 466, + 654 + ], + "lines": [ + { + "bbox": [ + 127, + 589, + 466, + 654 + ], + "spans": [ + { + "bbox": [ + 127, + 589, + 466, + 654 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\displaystyle \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F ( { \\pmb x } _ { t } ) - F ( { \\pmb x } ) ] \\leq \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T - k } } + \\frac { 1 } { 2 } \\displaystyle \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } \\| ^ { 2 } ] \\left( \\frac { 1 } { n _ { t } } - \\frac { 1 } { n _ { t - 1 } } \\right) } & { } \\\\ { - \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T + 1 } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T } } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = T - k } ^ { T } \\eta _ { t } . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "7a419174cd48ec2dc2c8d5a6aa9ce0da72cb44d960d9a8e44045e5e7a43d7e43.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 127, + 589, + 466, + 610.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 127, + 610.6666666666666, + 466, + 632.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 127, + 632.3333333333333, + 466, + 653.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 662, + 505, + 685 + ], + "lines": [ + { + "bbox": [ + 103, + 660, + 507, + 678 + ], + "spans": [ + { + "bbox": [ + 103, + 660, + 151, + 678 + ], + "score": 1.0, + "content": "Substitute", + "type": "text" + }, + { + "bbox": [ + 151, + 664, + 181, + 675 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 660, + 421, + 678 + ], + "score": 1.0, + "content": "and follow the idea in Shamir & Zhang (2013) by choosing", + "type": "text" + }, + { + "bbox": [ + 421, + 668, + 461, + 674 + ], + "score": 0.9, + "content": "{ \\pmb x } = { \\pmb x } _ { T - k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 660, + 507, + 678 + ], + "score": 1.0, + "content": ", we arrive", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 672, + 119, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 119, + 685 + ], + "score": 1.0, + "content": "at", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 103, + 660, + 507, + 685 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 124, + 704, + 460, + 735 + ], + "lines": [ + { + "bbox": [ + 124, + 704, + 460, + 735 + ], + "spans": [ + { + "bbox": [ + 124, + 704, + 460, + 735 + ], + "score": 0.92, + "content": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { \\nu } { 2 } \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ] + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .", + "type": "interline_equation", + "image_path": "a46c30ac6682a066434527727e111021442d3fa500df199324c2b929a6da6e01.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 124, + 704, + 460, + 714.3333333333334 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 124, + 714.3333333333334, + 460, + 724.6666666666667 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 124, + 724.6666666666667, + 460, + 735.0000000000001 + ], + "spans": [], + "index": 33 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 297, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 298, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 169, + 96 + ], + "score": 1.0, + "content": "Now we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 83, + 237, + 94 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 80, + 254, + 96 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 254, + 86, + 293, + 93 + ], + "score": 0.91, + "content": "t \\geq T ^ { \\prime } - k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 80, + 298, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 106, + 459, + 176 + ], + "lines": [ + { + "bbox": [ + 150, + 106, + 459, + 176 + ], + "spans": [ + { + "bbox": [ + 150, + 106, + 459, + 176 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { T - k } \\| ^ { 2 } ] \\le 2 \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + 2 \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { t } + \\frac { 1 } { T - k } \\right) \\le \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { T - k } \\right) } \\\\ & { \\le \\frac { 1 6 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "e81ce198a7982f5e0291ed37d1057160e75c4443642ac99bdff8c61e9b1f3e6a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 150, + 106, + 459, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 129.33333333333334, + 459, + 152.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 150, + 152.66666666666669, + 459, + 176.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 224, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 224, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 224, + 195 + ], + "score": 1.0, + "content": "Substitute Eq 26 into Eq 25,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 200, + 444, + 231 + ], + "lines": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "spans": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "score": 0.91, + "content": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { 8 k L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .", + "type": "interline_equation", + "image_path": "c81613b561c134e4a99c0cd1d3488659e55166fed5fc049a9ec9413aac2f85b7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 103, + 243, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 103, + 243, + 124, + 262 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 246, + 236, + 258 + ], + "score": 0.93, + "content": "\\begin{array} { r } { S _ { k } = \\frac { 1 } { k + 1 } \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 243, + 419, + 262 + ], + "score": 1.0, + "content": "be the averaged expected values of the last", + "type": "text" + }, + { + "bbox": [ + 420, + 248, + 441, + 255 + ], + "score": 0.92, + "content": "k + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 243, + 507, + 262 + ], + "score": 1.0, + "content": "iterations. We", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 176, + 269 + ], + "score": 1.0, + "content": "are interested in", + "type": "text" + }, + { + "bbox": [ + 177, + 259, + 313, + 269 + ], + "score": 0.91, + "content": "S _ { 0 } - F \\left( { \\pmb x } _ { * } \\right) = \\mathbb { E } [ F \\left( { \\pmb x } _ { T } \\right) ] - F \\left( { \\pmb x } _ { * } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 257, + 474, + 269 + ], + "score": 1.0, + "content": ". Now we derive an inequality between", + "type": "text" + }, + { + "bbox": [ + 475, + 260, + 485, + 267 + ], + "score": 0.92, + "content": "S _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 268, + 191, + 280 + ], + "spans": [ + { + "bbox": [ + 107, + 270, + 127, + 279 + ], + "score": 0.92, + "content": "S _ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 268, + 191, + 280 + ], + "score": 1.0, + "content": ". By definition,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 295, + 368, + 306 + ], + "lines": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "spans": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "score": 0.9, + "content": "k S _ { k - 1 } = \\left( k + 1 \\right) S _ { k } - \\mathbb { E } [ \\mathbf { x } _ { T - k } ] .", + "type": "interline_equation", + "image_path": "cb32f5238a573011caa469863dddb3d0e508b607a48f5d8b8eba1292432c5430.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 288, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 289, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 244, + 330 + ], + "score": 1.0, + "content": "Rearrange Eq 27 to upper bound", + "type": "text" + }, + { + "bbox": [ + 244, + 318, + 284, + 327 + ], + "score": 0.93, + "content": "- \\mathbb { E } [ { \\pmb x } _ { T - k } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 314, + 289, + 330 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 334, + 434, + 423 + ], + "lines": [ + { + "bbox": [ + 176, + 334, + 434, + 423 + ], + "spans": [ + { + "bbox": [ + 176, + 334, + 434, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { l } { S _ { k - 1 } = \\displaystyle \\frac { k + 1 } { k } S _ { k } - \\frac { \\mathbb { E } \\left[ { \\pmb x } _ { T - k } \\right] } { k } } \\\\ { \\leq \\frac { k + 1 } { k } S _ { k } - \\frac { S _ { k } } { k } + \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\left( k + 1 \\right) T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 k \\left( k + 1 \\right) \\nu } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } } \\\\ { \\leq S _ { k } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\frac { 1 6 } { k T } + \\frac { 1 } { k \\left( k + 1 \\right) } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "6087d0c1aba497d2c4e3ad6374fb1032bbaeee9bc1ab83bb4b6ce914460c1961.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 176, + 334, + 434, + 363.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 363.6666666666667, + 434, + 393.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 176, + 393.33333333333337, + 434, + 423.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 255, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 256, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 168, + 446 + ], + "score": 1.0, + "content": "Summing over", + "type": "text" + }, + { + "bbox": [ + 168, + 435, + 251, + 444 + ], + "score": 0.92, + "content": "k = 1 , \\dots , k = \\lfloor T / 2 \\rfloor", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 431, + 256, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 451, + 441, + 486 + ], + "lines": [ + { + "bbox": [ + 171, + 451, + 441, + 486 + ], + "spans": [ + { + "bbox": [ + 171, + 451, + 441, + 486 + ], + "score": 0.93, + "content": "S _ { 0 } \\leq S _ { \\lfloor T / 2 \\rfloor } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } + \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k \\left( k + 1 \\right) t } \\right) .", + "type": "interline_equation", + "image_path": "2697c05a36ae554465d85434aa15dfdc4375996ae63685c141264dc15865d0c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 171, + 451, + 441, + 462.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 171, + 462.6666666666667, + 441, + 474.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 171, + 474.33333333333337, + 441, + 486.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 394, + 506 + ], + "lines": [ + { + "bbox": [ + 104, + 490, + 397, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 490, + 169, + 510 + ], + "score": 1.0, + "content": "Now we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 495, + 232, + 505 + ], + "score": 0.93, + "content": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 490, + 270, + 510 + ], + "score": 1.0, + "content": ". Choose", + "type": "text" + }, + { + "bbox": [ + 271, + 498, + 299, + 504 + ], + "score": 0.89, + "content": "{ \\boldsymbol { \\mathbf { \\mathit { x } } } } = { \\boldsymbol { \\mathbf { \\mathit { x } } } } _ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 490, + 320, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 495, + 350, + 506 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 490, + 397, + 510 + ], + "score": 1.0, + "content": "in Eq 24 ,", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 513, + 466, + 670 + ], + "lines": [ + { + "bbox": [ + 128, + 513, + 466, + 670 + ], + "spans": [ + { + "bbox": [ + 128, + 513, + 466, + 670 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\mathbb { E } [ F ( { \\mathbf x } _ { t } ) - F ( { \\mathbf x } _ { * } ) ] = \\frac { \\nu \\left[ T / 2 \\right] \\mathbb { E } [ \\left. { \\mathbf x } _ { \\lfloor T / 2 \\rfloor } - \\alpha _ { * } \\right. ^ { 2 } ] } { 2 } + \\frac { \\nu } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\mathbb { E } [ \\left. { \\mathbf x } _ { t } - { \\mathbf x } _ { * } \\right. ^ { 2 } ] } \\\\ & { \\qquad + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\frac { \\nu } { 2 } } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } + \\sum _ { t = \\lceil T / 2 \\rfloor } ^ { T } \\frac { 1 } { 2 t } ) } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\frac { 3 } { 2 } \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } ) } \\\\ & { \\qquad \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } . } \\end{array}", + "type": "interline_equation", + "image_path": "1988fd257ef61726df0a46162afa5786c92b8a3321f6429258c03824a6285cc7.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 128, + 513, + 466, + 565.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 128, + 565.3333333333334, + 466, + 617.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 128, + 617.6666666666667, + 466, + 670.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 682, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 104, + 677, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 447, + 700 + ], + "score": 1.0, + "content": "The second inequality uses Lemma 2. The last inequality holds because the fact that", + "type": "text" + }, + { + "bbox": [ + 447, + 684, + 506, + 696 + ], + "score": 0.92, + "content": "\\scriptstyle \\sum _ { t = \\lceil T / 2 \\rceil } ^ { T ^ { \\prime } } { \\frac { 1 } { t } } \\leq", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 695, + 242, + 707 + ], + "spans": [ + { + "bbox": [ + 107, + 697, + 131, + 707 + ], + "score": 0.37, + "content": "\\log ( 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 695, + 214, + 707 + ], + "score": 1.0, + "content": ". Dividing Eq 31 by", + "type": "text" + }, + { + "bbox": [ + 215, + 697, + 238, + 707 + ], + "score": 0.86, + "content": "\\lceil T / 2 \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 695, + 242, + 707 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 713, + 372, + 735 + ], + "lines": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "spans": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "score": 0.94, + "content": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { 8 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { T \\nu } .", + "type": "interline_equation", + "image_path": "4a883614a8732b4d08234f9a70aea343018b05953b8fa6edaa79fd5120844f56.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 327, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 297, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 298, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 169, + 96 + ], + "score": 1.0, + "content": "Now we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 83, + 237, + 94 + ], + "score": 0.93, + "content": "\\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 80, + 254, + 96 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 254, + 86, + 293, + 93 + ], + "score": 0.91, + "content": "t \\geq T ^ { \\prime } - k", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 80, + 298, + 96 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 298, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 106, + 459, + 176 + ], + "lines": [ + { + "bbox": [ + 150, + 106, + 459, + 176 + ], + "spans": [ + { + "bbox": [ + 150, + 106, + 459, + 176 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { T - k } \\| ^ { 2 } ] \\le 2 \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + 2 \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { t } + \\frac { 1 } { T - k } \\right) \\le \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { T - k } \\right) } \\\\ & { \\le \\frac { 1 6 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu ^ { 2 } } . } \\end{array}", + "type": "interline_equation", + "image_path": "e81ce198a7982f5e0291ed37d1057160e75c4443642ac99bdff8c61e9b1f3e6a.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 150, + 106, + 459, + 129.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 129.33333333333334, + 459, + 152.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 150, + 152.66666666666669, + 459, + 176.00000000000003 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 224, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 224, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 224, + 195 + ], + "score": 1.0, + "content": "Substitute Eq 26 into Eq 25,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 181, + 224, + 195 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 156, + 200, + 444, + 231 + ], + "lines": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "spans": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "score": 0.91, + "content": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { 8 k L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } .", + "type": "interline_equation", + "image_path": "c81613b561c134e4a99c0cd1d3488659e55166fed5fc049a9ec9413aac2f85b7.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 156, + 200, + 444, + 231 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 245, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 103, + 243, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 103, + 243, + 124, + 262 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 246, + 236, + 258 + ], + "score": 0.93, + "content": "\\begin{array} { r } { S _ { k } = \\frac { 1 } { k + 1 } \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 243, + 419, + 262 + ], + "score": 1.0, + "content": "be the averaged expected values of the last", + "type": "text" + }, + { + "bbox": [ + 420, + 248, + 441, + 255 + ], + "score": 0.92, + "content": "k + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 243, + 507, + 262 + ], + "score": 1.0, + "content": "iterations. We", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 176, + 269 + ], + "score": 1.0, + "content": "are interested in", + "type": "text" + }, + { + "bbox": [ + 177, + 259, + 313, + 269 + ], + "score": 0.91, + "content": "S _ { 0 } - F \\left( { \\pmb x } _ { * } \\right) = \\mathbb { E } [ F \\left( { \\pmb x } _ { T } \\right) ] - F \\left( { \\pmb x } _ { * } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 257, + 474, + 269 + ], + "score": 1.0, + "content": ". Now we derive an inequality between", + "type": "text" + }, + { + "bbox": [ + 475, + 260, + 485, + 267 + ], + "score": 0.92, + "content": "S _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 268, + 191, + 280 + ], + "spans": [ + { + "bbox": [ + 107, + 270, + 127, + 279 + ], + "score": 0.92, + "content": "S _ { k - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 268, + 191, + 280 + ], + "score": 1.0, + "content": ". By definition,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 103, + 243, + 507, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 295, + 368, + 306 + ], + "lines": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "spans": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "score": 0.9, + "content": "k S _ { k - 1 } = \\left( k + 1 \\right) S _ { k } - \\mathbb { E } [ \\mathbf { x } _ { T - k } ] .", + "type": "interline_equation", + "image_path": "cb32f5238a573011caa469863dddb3d0e508b607a48f5d8b8eba1292432c5430.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 243, + 295, + 368, + 306 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 288, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 289, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 244, + 330 + ], + "score": 1.0, + "content": "Rearrange Eq 27 to upper bound", + "type": "text" + }, + { + "bbox": [ + 244, + 318, + 284, + 327 + ], + "score": 0.93, + "content": "- \\mathbb { E } [ { \\pmb x } _ { T - k } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 314, + 289, + 330 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 314, + 289, + 330 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 334, + 434, + 423 + ], + "lines": [ + { + "bbox": [ + 176, + 334, + 434, + 423 + ], + "spans": [ + { + "bbox": [ + 176, + 334, + 434, + 423 + ], + "score": 0.94, + "content": "\\begin{array} { l } { S _ { k - 1 } = \\displaystyle \\frac { k + 1 } { k } S _ { k } - \\frac { \\mathbb { E } \\left[ { \\pmb x } _ { T - k } \\right] } { k } } \\\\ { \\leq \\frac { k + 1 } { k } S _ { k } - \\frac { S _ { k } } { k } + \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\left( k + 1 \\right) T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 k \\left( k + 1 \\right) \\nu } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } } \\\\ { \\leq S _ { k } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\frac { 1 6 } { k T } + \\frac { 1 } { k \\left( k + 1 \\right) } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "6087d0c1aba497d2c4e3ad6374fb1032bbaeee9bc1ab83bb4b6ce914460c1961.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 176, + 334, + 434, + 363.6666666666667 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 363.6666666666667, + 434, + 393.33333333333337 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 176, + 393.33333333333337, + 434, + 423.00000000000006 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 255, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 256, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 168, + 446 + ], + "score": 1.0, + "content": "Summing over", + "type": "text" + }, + { + "bbox": [ + 168, + 435, + 251, + 444 + ], + "score": 0.92, + "content": "k = 1 , \\dots , k = \\lfloor T / 2 \\rfloor", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 431, + 256, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 431, + 256, + 446 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 451, + 441, + 486 + ], + "lines": [ + { + "bbox": [ + 171, + 451, + 441, + 486 + ], + "spans": [ + { + "bbox": [ + 171, + 451, + 441, + 486 + ], + "score": 0.93, + "content": "S _ { 0 } \\leq S _ { \\lfloor T / 2 \\rfloor } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } + \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k \\left( k + 1 \\right) t } \\right) .", + "type": "interline_equation", + "image_path": "2697c05a36ae554465d85434aa15dfdc4375996ae63685c141264dc15865d0c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 171, + 451, + 441, + 462.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 171, + 462.6666666666667, + 441, + 474.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 171, + 474.33333333333337, + 441, + 486.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 394, + 506 + ], + "lines": [ + { + "bbox": [ + 104, + 490, + 397, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 490, + 169, + 510 + ], + "score": 1.0, + "content": "Now we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 495, + 232, + 505 + ], + "score": 0.93, + "content": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 490, + 270, + 510 + ], + "score": 1.0, + "content": ". Choose", + "type": "text" + }, + { + "bbox": [ + 271, + 498, + 299, + 504 + ], + "score": 0.89, + "content": "{ \\boldsymbol { \\mathbf { \\mathit { x } } } } = { \\boldsymbol { \\mathbf { \\mathit { x } } } } _ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 490, + 320, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 495, + 350, + 506 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 490, + 397, + 510 + ], + "score": 1.0, + "content": "in Eq 24 ,", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 490, + 397, + 510 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 128, + 513, + 466, + 670 + ], + "lines": [ + { + "bbox": [ + 128, + 513, + 466, + 670 + ], + "spans": [ + { + "bbox": [ + 128, + 513, + 466, + 670 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\mathbb { E } [ F ( { \\mathbf x } _ { t } ) - F ( { \\mathbf x } _ { * } ) ] = \\frac { \\nu \\left[ T / 2 \\right] \\mathbb { E } [ \\left. { \\mathbf x } _ { \\lfloor T / 2 \\rfloor } - \\alpha _ { * } \\right. ^ { 2 } ] } { 2 } + \\frac { \\nu } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\mathbb { E } [ \\left. { \\mathbf x } _ { t } - { \\mathbf x } _ { * } \\right. ^ { 2 } ] } \\\\ & { \\qquad + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\frac { \\nu } { 2 } } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } + \\sum _ { t = \\lceil T / 2 \\rfloor } ^ { T } \\frac { 1 } { 2 t } ) } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\frac { 3 } { 2 } \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } ) } \\\\ & { \\qquad \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } . } \\end{array}", + "type": "interline_equation", + "image_path": "1988fd257ef61726df0a46162afa5786c92b8a3321f6429258c03824a6285cc7.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 128, + 513, + 466, + 565.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 128, + 565.3333333333334, + 466, + 617.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 128, + 617.6666666666667, + 466, + 670.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 682, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 104, + 677, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 447, + 700 + ], + "score": 1.0, + "content": "The second inequality uses Lemma 2. The last inequality holds because the fact that", + "type": "text" + }, + { + "bbox": [ + 447, + 684, + 506, + 696 + ], + "score": 0.92, + "content": "\\scriptstyle \\sum _ { t = \\lceil T / 2 \\rceil } ^ { T ^ { \\prime } } { \\frac { 1 } { t } } \\leq", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 695, + 242, + 707 + ], + "spans": [ + { + "bbox": [ + 107, + 697, + 131, + 707 + ], + "score": 0.37, + "content": "\\log ( 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 695, + 214, + 707 + ], + "score": 1.0, + "content": ". Dividing Eq 31 by", + "type": "text" + }, + { + "bbox": [ + 215, + 697, + 238, + 707 + ], + "score": 0.86, + "content": "\\lceil T / 2 \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 695, + 242, + 707 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 677, + 506, + 707 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 713, + 372, + 735 + ], + "lines": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "spans": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "score": 0.94, + "content": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { 8 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { T \\nu } .", + "type": "interline_equation", + "image_path": "4a883614a8732b4d08234f9a70aea343018b05953b8fa6edaa79fd5120844f56.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 239, + 713, + 372, + 735 + ], + "spans": [], + "index": 24 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 411, + 96 + ], + "lines": [ + { + "bbox": [ + 102, + 74, + 412, + 101 + ], + "spans": [ + { + "bbox": [ + 102, + 74, + 144, + 101 + ], + "score": 1.0, + "content": "We have", + "type": "text" + }, + { + "bbox": [ + 144, + 83, + 245, + 95 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } \\leq \\frac { 1 6 ( 1 + l o g ( T ) ) } { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 79, + 412, + 96 + ], + "score": 1.0, + "content": "16(1+log(T )) because it is harmonic sequence. Lastly,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 102, + 403, + 168 + ], + "lines": [ + { + "bbox": [ + 210, + 102, + 403, + 168 + ], + "spans": [ + { + "bbox": [ + 210, + 102, + 403, + 168 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k ( k + 1 ) t } \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ( k + 1 ) } } } \\\\ & { } & { \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ^ { 2 } } \\le 2 \\log ( 2 ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4890fea1143b7e089b5fda447be7ecee8cc62a3fcc9c52c3f79d381110a82138.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 102, + 403, + 115.2 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 210, + 115.2, + 403, + 128.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 210, + 128.4, + 403, + 141.6 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 210, + 141.6, + 403, + 154.79999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 210, + 154.79999999999998, + 403, + 167.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 282, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 282, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 282, + 189 + ], + "score": 1.0, + "content": "Plugging these bounds into Eq 30, we have", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 193, + 388, + 218 + ], + "lines": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "spans": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "score": 0.94, + "content": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { ( 1 + p \\sigma ^ { 2 } ) L ^ { 2 } \\log ( T ) } { T \\nu } \\right) .", + "type": "interline_equation", + "image_path": "1093be6f296728f7f92dab268b90d2490a48cb4561a9b651eb6a6b78db213432.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 404, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 406, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 139, + 248 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 139, + 231, + 216, + 248 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sigma ^ { 2 } = \\Theta \\left( \\frac { T l o g ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 227, + 272, + 248 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 272, + 235, + 291, + 244 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 227, + 328, + 248 + ], + "score": 1.0, + "content": "-DP. Set", + "type": "text" + }, + { + "bbox": [ + 328, + 234, + 365, + 242 + ], + "score": 0.92, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 227, + 406, + 248 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 253, + 388, + 278 + ], + "lines": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "spans": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "score": 0.95, + "content": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log ( n ) l o g \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .", + "type": "interline_equation", + "image_path": "dfd3f727274a4741e8f46547740851e7ccd73bd526aabe9f93c1681287de3331.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 273, + 303 + ], + "lines": [ + { + "bbox": [ + 104, + 286, + 273, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 123, + 308 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 293, + 154, + 304 + ], + "score": 0.94, + "content": "\\begin{array} { r } { T = \\frac { \\pi \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 286, + 207, + 308 + ], + "score": 1.0, + "content": "and assume", + "type": "text" + }, + { + "bbox": [ + 207, + 291, + 234, + 301 + ], + "score": 0.93, + "content": "p < n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 286, + 273, + 308 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 309, + 375, + 340 + ], + "lines": [ + { + "bbox": [ + 236, + 309, + 375, + 340 + ], + "spans": [ + { + "bbox": [ + 236, + 309, + 375, + 340 + ], + "score": 0.95, + "content": "S _ { 0 } - F ( \\pmb { x } _ { * } ) = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } \\right) .", + "type": "interline_equation", + "image_path": "9bf0c6751264664d012a02c9b4365fec62334adb3766188950a131d1a22986c7.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 309, + 375, + 324.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 236, + 324.5, + 375, + 340.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 105, + 376, + 466, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 468, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 468, + 391 + ], + "score": 1.0, + "content": "Appendix B Detailed description on benchmark datasets", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 150, + 423, + 461, + 468 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 177, + 402, + 432, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 177, + 402, + 433, + 415 + ], + "spans": [ + { + "bbox": [ + 177, + 402, + 433, + 415 + ], + "score": 1.0, + "content": "Table 3: Detailed description of seven real world datasets.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 150, + 423, + 461, + 468 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 423, + 461, + 468 + ], + "spans": [ + { + "bbox": [ + 150, + 423, + 461, + 468 + ], + "score": 0.98, + "html": "
datasetAdultKDDCup99MNISTCovertypeGisetteReal-simRCV1
#records45220700006500058101260007230950000
#features1041147845450002095847236
#classes22107222
", + "type": "table", + "image_path": "99af7eec82048277c6362daad24c1d40d2a3e31bcb3a4c553a8302479ce4a282.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 423, + 461, + 438.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 150, + 438.0, + 461, + 453.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 150, + 453.0, + 461, + 468.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.0 + }, + { + "type": "title", + "bbox": [ + 106, + 491, + 455, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 456, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 456, + 505 + ], + "score": 1.0, + "content": "Appendix C Comparison between Average and Minimum", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 187, + 504, + 396, + 519 + ], + "spans": [ + { + "bbox": [ + 187, + 504, + 396, + 519 + ], + "score": 1.0, + "content": "Curvatures on Different dataset", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 503, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "In this section we plot the average and minimum curvatures in Figure 4 for another dataset", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 538, + 405, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 405, + 551 + ], + "score": 1.0, + "content": "KDDCup99. The objective function is still regularized logistic regression.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "As shown in Figure 4, the average curvature is still larger than the minimum curvature (especially", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "when the regularization term is small). Despite this, the average curvature of KDDCup99 is smaller", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "than Adult, this may be the reason why the improvement in Section 4 is larger for the Adult dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 327, + 38 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 326, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 350, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 495, + 351, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 495, + 351, + 505, + 362 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 411, + 96 + ], + "lines": [ + { + "bbox": [ + 102, + 74, + 412, + 101 + ], + "spans": [ + { + "bbox": [ + 102, + 74, + 144, + 101 + ], + "score": 1.0, + "content": "We have", + "type": "text" + }, + { + "bbox": [ + 144, + 83, + 245, + 95 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } \\leq \\frac { 1 6 ( 1 + l o g ( T ) ) } { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 79, + 412, + 96 + ], + "score": 1.0, + "content": "16(1+log(T )) because it is harmonic sequence. Lastly,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 102, + 74, + 412, + 101 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 102, + 403, + 168 + ], + "lines": [ + { + "bbox": [ + 210, + 102, + 403, + 168 + ], + "spans": [ + { + "bbox": [ + 210, + 102, + 403, + 168 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k ( k + 1 ) t } \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ( k + 1 ) } } } \\\\ & { } & { \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ^ { 2 } } \\le 2 \\log ( 2 ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4890fea1143b7e089b5fda447be7ecee8cc62a3fcc9c52c3f79d381110a82138.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 102, + 403, + 115.2 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 210, + 115.2, + 403, + 128.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 210, + 128.4, + 403, + 141.6 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 210, + 141.6, + 403, + 154.79999999999998 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 210, + 154.79999999999998, + 403, + 167.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 282, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 282, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 282, + 189 + ], + "score": 1.0, + "content": "Plugging these bounds into Eq 30, we have", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 176, + 282, + 189 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 193, + 388, + 218 + ], + "lines": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "spans": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "score": 0.94, + "content": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { ( 1 + p \\sigma ^ { 2 } ) L ^ { 2 } \\log ( T ) } { T \\nu } \\right) .", + "type": "interline_equation", + "image_path": "1093be6f296728f7f92dab268b90d2490a48cb4561a9b651eb6a6b78db213432.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 223, + 193, + 388, + 218 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 404, + 247 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 406, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 139, + 248 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 139, + 231, + 216, + 248 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sigma ^ { 2 } = \\Theta \\left( \\frac { T l o g ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 227, + 272, + 248 + ], + "score": 1.0, + "content": "to guarantee", + "type": "text" + }, + { + "bbox": [ + 272, + 235, + 291, + 244 + ], + "score": 0.92, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 227, + 328, + 248 + ], + "score": 1.0, + "content": "-DP. Set", + "type": "text" + }, + { + "bbox": [ + 328, + 234, + 365, + 242 + ], + "score": 0.92, + "content": "T = n ^ { 2 } \\epsilon ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 227, + 406, + 248 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 227, + 406, + 248 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 253, + 388, + 278 + ], + "lines": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "spans": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "score": 0.95, + "content": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log ( n ) l o g \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) .", + "type": "interline_equation", + "image_path": "dfd3f727274a4741e8f46547740851e7ccd73bd526aabe9f93c1681287de3331.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 223, + 253, + 388, + 278 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 273, + 303 + ], + "lines": [ + { + "bbox": [ + 104, + 286, + 273, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 123, + 308 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 123, + 293, + 154, + 304 + ], + "score": 0.94, + "content": "\\begin{array} { r } { T = \\frac { \\pi \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 286, + 207, + 308 + ], + "score": 1.0, + "content": "and assume", + "type": "text" + }, + { + "bbox": [ + 207, + 291, + 234, + 301 + ], + "score": 0.93, + "content": "p < n ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 286, + 273, + 308 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 286, + 273, + 308 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 309, + 375, + 340 + ], + "lines": [ + { + "bbox": [ + 236, + 309, + 375, + 340 + ], + "spans": [ + { + "bbox": [ + 236, + 309, + 375, + 340 + ], + "score": 0.95, + "content": "S _ { 0 } - F ( \\pmb { x } _ { * } ) = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } \\right) .", + "type": "interline_equation", + "image_path": "9bf0c6751264664d012a02c9b4365fec62334adb3766188950a131d1a22986c7.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 309, + 375, + 324.5 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 236, + 324.5, + 375, + 340.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 105, + 376, + 466, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 375, + 468, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 468, + 391 + ], + "score": 1.0, + "content": "Appendix B Detailed description on benchmark datasets", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "table", + "bbox": [ + 150, + 423, + 461, + 468 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 177, + 402, + 432, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 177, + 402, + 433, + 415 + ], + "spans": [ + { + "bbox": [ + 177, + 402, + 433, + 415 + ], + "score": 1.0, + "content": "Table 3: Detailed description of seven real world datasets.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 150, + 423, + 461, + 468 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 423, + 461, + 468 + ], + "spans": [ + { + "bbox": [ + 150, + 423, + 461, + 468 + ], + "score": 0.98, + "html": "
datasetAdultKDDCup99MNISTCovertypeGisetteReal-simRCV1
#records45220700006500058101260007230950000
#features1041147845450002095847236
#classes22107222
", + "type": "table", + "image_path": "99af7eec82048277c6362daad24c1d40d2a3e31bcb3a4c553a8302479ce4a282.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 150, + 423, + 461, + 438.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 150, + 438.0, + 461, + 453.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 150, + 453.0, + 461, + 468.0 + ], + "spans": [], + "index": 17 + } + ] + } + ], + "index": 15.0 + }, + { + "type": "title", + "bbox": [ + 106, + 491, + 455, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 456, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 456, + 505 + ], + "score": 1.0, + "content": "Appendix C Comparison between Average and Minimum", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 187, + 504, + 396, + 519 + ], + "spans": [ + { + "bbox": [ + 187, + 504, + 396, + 519 + ], + "score": 1.0, + "content": "Curvatures on Different dataset", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 503, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 505, + 540 + ], + "score": 1.0, + "content": "In this section we plot the average and minimum curvatures in Figure 4 for another dataset", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 538, + 405, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 405, + 551 + ], + "score": 1.0, + "content": "KDDCup99. The objective function is still regularized logistic regression.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 529, + 505, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 555, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "As shown in Figure 4, the average curvature is still larger than the minimum curvature (especially", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "when the regularization term is small). Despite this, the average curvature of KDDCup99 is smaller", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "than Adult, this may be the reason why the improvement in Section 4 is larger for the Adult dataset.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 554, + 506, + 586 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 208, + 317, + 402, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 208, + 317, + 402, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 317, + 402, + 460 + ], + "spans": [ + { + "bbox": [ + 208, + 317, + 402, + 460 + ], + "score": 0.963, + "type": "image", + "image_path": "0f4f1dea782d3768ecb6ec38776f4982c99b6bd47380ccd10785b971e2967067.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 208, + 317, + 402, + 332.8888888888889 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 208, + 332.8888888888889, + 402, + 348.7777777777778 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 208, + 348.7777777777778, + 402, + 364.66666666666674 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 364.66666666666674, + 402, + 380.55555555555566 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 380.55555555555566, + 402, + 396.44444444444457 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 396.44444444444457, + 402, + 412.3333333333335 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 208, + 412.3333333333335, + 402, + 428.2222222222224 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 208, + 428.2222222222224, + 402, + 444.1111111111113 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 208, + 444.1111111111113, + 402, + 460.0000000000002 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 471, + 505, + 495 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "score": 1.0, + "content": "Figure 4: Curvatures of regularized logistic regression on KDDCup99 dataset over training.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 483, + 503, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 503, + 496 + ], + "score": 1.0, + "content": "Dot symbol represents average curvature and cross symbol represents minimum curvature.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 6.75 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 327, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 327, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 208, + 317, + 402, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 208, + 317, + 402, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 208, + 317, + 402, + 460 + ], + "spans": [ + { + "bbox": [ + 208, + 317, + 402, + 460 + ], + "score": 0.963, + "type": "image", + "image_path": "0f4f1dea782d3768ecb6ec38776f4982c99b6bd47380ccd10785b971e2967067.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 208, + 317, + 402, + 332.8888888888889 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 208, + 332.8888888888889, + 402, + 348.7777777777778 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 208, + 348.7777777777778, + 402, + 364.66666666666674 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 208, + 364.66666666666674, + 402, + 380.55555555555566 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 208, + 380.55555555555566, + 402, + 396.44444444444457 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 208, + 396.44444444444457, + 402, + 412.3333333333335 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 208, + 412.3333333333335, + 402, + 428.2222222222224 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 208, + 428.2222222222224, + 402, + 444.1111111111113 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 208, + 444.1111111111113, + 402, + 460.0000000000002 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 471, + 505, + 495 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 486 + ], + "score": 1.0, + "content": "Figure 4: Curvatures of regularized logistic regression on KDDCup99 dataset over training.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 483, + 503, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 503, + 496 + ], + "score": 1.0, + "content": "Dot symbol represents average curvature and cross symbol represents minimum curvature.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 6.75 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rJgVwTVtvS/rJgVwTVtvS_model.json b/parse/train/rJgVwTVtvS/rJgVwTVtvS_model.json new file mode 100644 index 0000000000000000000000000000000000000000..1c10ea4afd2acf52653a8902df815611e5e8ac57 --- /dev/null +++ b/parse/train/rJgVwTVtvS/rJgVwTVtvS_model.json @@ -0,0 +1,24876 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 597, + 1303, + 597, + 1303, + 1054, + 398, + 1054 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1207, + 1404, + 1207, + 1404, + 1485, + 298, + 1485 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1499, + 1404, + 1499, + 1404, + 1834, + 298, + 1834 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1404, + 1850, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1399, + 219, + 1399, + 325, + 301, + 325 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 713, + 376, + 713, + 438, + 314, + 438 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 302, + 1132, + 579, + 1132, + 579, + 1167, + 302, + 1167 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 104, + 299, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 770, + 517, + 928, + 517, + 928, + 553, + 770, + 553 + ], + "score": 0.815 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.74 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 219.0, + 1405.0, + 219.0, + 1405.0, + 271.0, + 297.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1398.0, + 275.0, + 1398.0, + 329.0, + 295.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1126.0, + 586.0, + 1126.0, + 586.0, + 1176.0, + 292.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 910.0, + 70.0, + 910.0, + 107.0, + 296.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 517.0, + 934.0, + 517.0, + 934.0, + 555.0, + 767.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2121.0, + 840.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 593.0, + 1308.0, + 593.0, + 1308.0, + 635.0, + 394.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 625.0, + 1308.0, + 625.0, + 1308.0, + 666.0, + 392.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 653.0, + 1306.0, + 653.0, + 1306.0, + 697.0, + 391.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 688.0, + 1305.0, + 688.0, + 1305.0, + 723.0, + 392.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 718.0, + 1306.0, + 718.0, + 1306.0, + 753.0, + 393.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 750.0, + 1308.0, + 750.0, + 1308.0, + 782.0, + 394.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 779.0, + 1306.0, + 779.0, + 1306.0, + 811.0, + 394.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 810.0, + 1308.0, + 810.0, + 1308.0, + 845.0, + 394.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 841.0, + 1305.0, + 841.0, + 1305.0, + 875.0, + 392.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 872.0, + 1305.0, + 872.0, + 1305.0, + 903.0, + 394.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1306.0, + 900.0, + 1306.0, + 935.0, + 394.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 933.0, + 1305.0, + 933.0, + 1305.0, + 965.0, + 395.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 964.0, + 1307.0, + 964.0, + 1307.0, + 995.0, + 395.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 990.0, + 1306.0, + 990.0, + 1306.0, + 1026.0, + 393.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1019.0, + 508.0, + 1019.0, + 508.0, + 1063.0, + 393.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1248.0, + 292.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1275.0, + 294.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1267.0, + 1403.0, + 1267.0, + 1403.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1295.0, + 1408.0, + 1295.0, + 1408.0, + 1336.0, + 293.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1328.0, + 1406.0, + 1328.0, + 1406.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1360.0, + 1404.0, + 1360.0, + 1404.0, + 1397.0, + 296.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1391.0, + 1404.0, + 1391.0, + 1404.0, + 1427.0, + 296.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 1408.0, + 1421.0, + 1408.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 974.0, + 1451.0, + 974.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1534.0, + 295.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1528.0, + 1406.0, + 1528.0, + 1406.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1558.0, + 1406.0, + 1558.0, + 1406.0, + 1595.0, + 293.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1404.0, + 1618.0, + 1404.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 1401.0, + 1650.0, + 1401.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 1402.0, + 1681.0, + 1402.0, + 1716.0, + 293.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1749.0, + 292.0, + 1749.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": [ + 293.0, + 1773.0, + 1408.0, + 1773.0, + 1408.0, + 1810.0, + 293.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1801.0, + 885.0, + 1801.0, + 885.0, + 1841.0, + 292.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1849.0, + 1401.0, + 1849.0, + 1401.0, + 1881.0, + 297.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 377.0, + 599.0, + 377.0, + 599.0, + 409.0, + 316.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 406.0, + 716.0, + 406.0, + 716.0, + 439.0, + 311.0, + 439.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 308, + 1404, + 308, + 1404, + 582, + 298, + 582 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1455, + 1403, + 1455, + 1403, + 1639, + 298, + 1639 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 784, + 1403, + 784, + 1403, + 998, + 298, + 998 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1880, + 1401, + 1880, + 1401, + 2033, + 300, + 2033 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1654, + 1403, + 1654, + 1403, + 1776, + 299, + 1776 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 598, + 1403, + 598, + 1403, + 690, + 299, + 690 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 302, + 1013, + 1403, + 1013, + 1403, + 1106, + 302, + 1106 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 368, + 1140, + 1404, + 1140, + 1404, + 1420, + 368, + 1420 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1401, + 229, + 1401, + 293, + 294, + 293 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 705, + 1398, + 705, + 1398, + 769, + 300, + 769 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 908, + 76, + 908, + 104, + 299, + 104 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 1821, + 651, + 1821, + 651, + 1852, + 300, + 1852 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.768 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1816.0, + 655.0, + 1816.0, + 655.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 306.0, + 1409.0, + 306.0, + 1409.0, + 344.0, + 295.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 336.0, + 1404.0, + 336.0, + 1404.0, + 372.0, + 294.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 367.0, + 1408.0, + 367.0, + 1408.0, + 405.0, + 293.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 1404.0, + 398.0, + 1404.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 427.0, + 1407.0, + 427.0, + 1407.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1404.0, + 459.0, + 1404.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 489.0, + 1406.0, + 489.0, + 1406.0, + 526.0, + 292.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 553.0, + 638.0, + 553.0, + 638.0, + 581.0, + 293.0, + 581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1491.0, + 293.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1484.0, + 1408.0, + 1484.0, + 1408.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 1407.0, + 1515.0, + 1407.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1581.0, + 294.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1575.0, + 1405.0, + 1575.0, + 1405.0, + 1613.0, + 292.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1607.0, + 433.0, + 1607.0, + 433.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 781.0, + 1407.0, + 781.0, + 1407.0, + 820.0, + 293.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 815.0, + 1404.0, + 815.0, + 1404.0, + 849.0, + 294.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 880.0, + 292.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 876.0, + 1403.0, + 876.0, + 1403.0, + 911.0, + 296.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 906.0, + 1403.0, + 906.0, + 1403.0, + 940.0, + 296.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 935.0, + 1402.0, + 935.0, + 1402.0, + 970.0, + 296.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 1093.0, + 966.0, + 1093.0, + 1003.0, + 295.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1881.0, + 1403.0, + 1881.0, + 1403.0, + 1914.0, + 298.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 869.0, + 2001.0, + 869.0, + 2034.0, + 295.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1408.0, + 1651.0, + 1408.0, + 1690.0, + 293.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1684.0, + 1405.0, + 1684.0, + 1405.0, + 1720.0, + 294.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1404.0, + 1715.0, + 1404.0, + 1750.0, + 293.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 756.0, + 1746.0, + 756.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 598.0, + 1404.0, + 598.0, + 1404.0, + 632.0, + 295.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 631.0, + 1403.0, + 631.0, + 1403.0, + 661.0, + 297.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 659.0, + 415.0, + 659.0, + 415.0, + 691.0, + 293.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1011.0, + 1404.0, + 1011.0, + 1404.0, + 1049.0, + 295.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1043.0, + 1403.0, + 1043.0, + 1403.0, + 1079.0, + 296.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1074.0, + 827.0, + 1074.0, + 827.0, + 1108.0, + 297.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1137.0, + 1402.0, + 1137.0, + 1402.0, + 1177.0, + 367.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1171.0, + 1234.0, + 1171.0, + 1234.0, + 1208.0, + 394.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1216.0, + 1406.0, + 1216.0, + 1406.0, + 1256.0, + 367.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1250.0, + 1408.0, + 1250.0, + 1408.0, + 1284.0, + 395.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1297.0, + 1402.0, + 1297.0, + 1402.0, + 1333.0, + 367.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1325.0, + 1407.0, + 1325.0, + 1407.0, + 1366.0, + 391.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1357.0, + 1407.0, + 1357.0, + 1407.0, + 1394.0, + 394.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1389.0, + 539.0, + 1389.0, + 539.0, + 1424.0, + 395.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 262.0, + 894.0, + 262.0, + 894.0, + 294.0, + 297.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 700.0, + 1403.0, + 700.0, + 1403.0, + 743.0, + 294.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 910.0, + 735.0, + 910.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 440, + 1465, + 440, + 1465, + 795, + 296, + 795 + ], + "score": 0.983, + "html": "
AuthorsPerturbationAlgorithmUtility (μ = 0)Utility(u>0)
Chaudhuri et al. (2011)ObjectiveN/A00 pun22
Zhang et al. (2017)OutputGD0 ()2/3)ne0 βpHn2c²
Bassily et al. (2014)GradientSGD0Vplog3/2(n)ne0plog²(n)μn2c²
Jayaraman et al. (2018)GradientGDN/A0βplog²(n)μ²n2e2
OursGradientGD0 V>Bplog(n)v²n2e²nE0βplog(n)v²n2c2
OursGradientSGD0Vplog(n)>plog(n)nevn2e20plog(n)vn2e2
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1771, + 1403, + 1771, + 1403, + 1897, + 298, + 1897 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 929, + 1406, + 929, + 1406, + 1028, + 298, + 1028 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1041, + 1407, + 1041, + 1407, + 1143, + 298, + 1143 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1403, + 1910, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1405, + 1638, + 1405, + 1748, + 298, + 1748 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 297, + 1533, + 1404, + 1533, + 1404, + 1628, + 297, + 1628 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 300, + 1452, + 1402, + 1452, + 1402, + 1517, + 300, + 1517 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 299, + 856, + 559, + 856, + 559, + 893, + 299, + 893 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 909, + 74, + 909, + 105, + 299, + 105 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 366, + 1212, + 1283, + 1212, + 1283, + 1430, + 366, + 1430 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 293, + 1154, + 1285, + 1154, + 1285, + 1191, + 293, + 1191 + ], + "score": 0.9 + }, + { + "category_id": 6, + "poly": [ + 324, + 259, + 1440, + 259, + 1440, + 417, + 324, + 417 + ], + "score": 0.846 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 324, + 259, + 1440, + 259, + 1440, + 417, + 324, + 417 + ], + "score": 0.189 + }, + { + "category_id": 13, + "poly": [ + 1340, + 1078, + 1397, + 1078, + 1397, + 1107, + 1340, + 1107 + ], + "score": 0.95, + "latex": "f ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 518, + 970, + 616, + 970, + 616, + 999, + 518, + 999 + ], + "score": 0.94, + "latex": "F ( { \\pmb x } ; D )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 535, + 1181, + 535, + 1181, + 585, + 1014, + 585 + ], + "score": 0.94, + "latex": "\\mathcal { O } \\left( ( \\textstyle \\frac { \\sqrt { \\beta p } } { n \\epsilon } ) ^ { 2 / 3 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 784, + 1048, + 882, + 1048, + 882, + 1077, + 784, + 1077 + ], + "score": 0.94, + "latex": "F ( { \\pmb x } ; D )" + }, + { + "category_id": 13, + "poly": [ + 1138, + 935, + 1345, + 935, + 1345, + 964, + 1138, + 964 + ], + "score": 0.94, + "latex": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 601, + 1221, + 920, + 1221, + 920, + 1250, + 601, + 1250 + ], + "score": 0.94, + "latex": "| f ( \\pmb { x } ) - f ( \\pmb { y } ) | \\leq L \\| \\pmb { x } - \\pmb { y } \\|" + }, + { + "category_id": 13, + "poly": [ + 672, + 1918, + 792, + 1918, + 792, + 1942, + 672, + 1942 + ], + "score": 0.93, + "latex": "\\pmb { x } _ { o u t } \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 775, + 966, + 1097, + 966, + 1097, + 1002, + 775, + 1002 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { F ( \\pmb { x } ; D ) \\triangleq \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } f ( \\pmb { x } ; d _ { i } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1278, + 588, + 1432, + 588, + 1432, + 638, + 1278, + 638 + ], + "score": 0.93, + "latex": "O \\left( \\frac { p \\log ^ { 2 } ( n ) } { \\mu n ^ { 2 } \\epsilon ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 489, + 1805, + 566, + 1805, + 566, + 1840, + 489, + 1840 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\delta \\ll \\frac { 1 } { n } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 581, + 1048, + 644, + 1048, + 644, + 1077, + 581, + 1077 + ], + "score": 0.93, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 495, + 1948, + 600, + 1948, + 600, + 1976, + 495, + 1976 + ], + "score": 0.93, + "latex": "{ \\pmb x } _ { * } \\in \\mathcal { X } _ { F } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 432, + 1681, + 491, + 1681, + 491, + 1710, + 432, + 1710 + ], + "score": 0.93, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 962, + 741, + 1234, + 741, + 1234, + 791, + 962, + 791 + ], + "score": 0.93, + "latex": "\\mathcal { O } \\left( \\frac { \\sqrt { p } \\log ( n ) } { n \\epsilon } \\wedge \\frac { p \\log ( n ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1049, + 484, + 1145, + 484, + 1145, + 534, + 1049, + 534 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { p } } { n \\epsilon } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1199, + 299, + 1247, + 299, + 1247, + 325, + 1199, + 325 + ], + "score": 0.93, + "latex": "\\beta , \\mu" + }, + { + "category_id": 13, + "poly": [ + 1129, + 388, + 1232, + 388, + 1232, + 417, + 1129, + 417 + ], + "score": 0.93, + "latex": "\\log \\left( 1 / \\delta \\right)" + }, + { + "category_id": 13, + "poly": [ + 614, + 1540, + 683, + 1540, + 683, + 1568, + 614, + 1568 + ], + "score": 0.93, + "latex": "D , D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1022, + 266, + 1081, + 266, + 1081, + 295, + 1022, + 295 + ], + "score": 0.93, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1001, + 586, + 1192, + 586, + 1192, + 638, + 1001, + 638 + ], + "score": 0.93, + "latex": "\\mathcal { O } \\left( \\frac { \\sqrt { p } \\log ^ { 3 / 2 } ( n ) } { n \\epsilon } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1287, + 535, + 1423, + 535, + 1423, + 585, + 1287, + 585 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\beta p } { \\mu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 562, + 1719, + 642, + 1719, + 642, + 1743, + 562, + 1743 + ], + "score": 0.92, + "latex": "S \\subseteq { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 840, + 360, + 907, + 360, + 907, + 385, + 840, + 385 + ], + "score": 0.92, + "latex": "\\mu = 0" + }, + { + "category_id": 13, + "poly": [ + 806, + 1713, + 1277, + 1713, + 1277, + 1746, + 806, + 1746 + ], + "score": 0.92, + "latex": "P r [ \\mathcal { M } ( D ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( D ^ { ' } ) \\in S ] + \\delta" + }, + { + "category_id": 13, + "poly": [ + 545, + 1338, + 892, + 1338, + 892, + 1367, + 545, + 1367 + ], + "score": 0.92, + "latex": "\\langle \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\rangle \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1188, + 970, + 1399, + 970, + 1399, + 999, + 1188, + 999 + ], + "score": 0.92, + "latex": "f ( \\pmb { x } ; d _ { i } ) : \\mathbb { R } ^ { p } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 740, + 1426, + 740, + 1426, + 792, + 1284, + 792 + ], + "score": 0.92, + "latex": "\\frac { \\overline { { \\mathcal { O } \\left( \\frac { p \\log ( n ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) } } } { \\nu n ^ { 2 } \\epsilon ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1601, + 355, + 1601, + 355, + 1630, + 296, + 1630 + ], + "score": 0.92, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 541, + 1003, + 625, + 1003, + 625, + 1024, + 541, + 1024 + ], + "score": 0.92, + "latex": "\\pmb { x } \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1947, + 1099, + 1947, + 1099, + 1975, + 1036, + 1975 + ], + "score": 0.92, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 763, + 1871, + 800, + 1871, + 800, + 1897, + 763, + 1897 + ], + "score": 0.92, + "latex": "\\epsilon , \\delta" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1676, + 1299, + 1676, + 1299, + 1709, + 1233, + 1709 + ], + "score": 0.92, + "latex": "D , D ^ { ' }" + }, + { + "category_id": 13, + "poly": [ + 494, + 1645, + 553, + 1645, + 553, + 1674, + 494, + 1674 + ], + "score": 0.92, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1048, + 1054, + 1048, + 1054, + 1077, + 1009, + 1077 + ], + "score": 0.92, + "latex": "\\lVert \\boldsymbol { v } \\rVert" + }, + { + "category_id": 13, + "poly": [ + 1293, + 484, + 1418, + 484, + 1418, + 532, + 1293, + 532 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { p } { \\mu n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 382, + 361, + 451, + 361, + 451, + 385, + 382, + 385 + ], + "score": 0.92, + "latex": "\\nu \\geq \\mu" + }, + { + "category_id": 13, + "poly": [ + 727, + 1113, + 764, + 1113, + 764, + 1146, + 727, + 1146 + ], + "score": 0.91, + "latex": "\\mathcal { X } _ { f } ^ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 878, + 1840, + 915, + 1840, + 915, + 1866, + 878, + 1866 + ], + "score": 0.91, + "latex": "\\epsilon , \\delta" + }, + { + "category_id": 13, + "poly": [ + 1271, + 639, + 1439, + 639, + 1439, + 689, + 1271, + 689 + ], + "score": 0.91, + "latex": "\\mathcal { O } \\left( \\frac { \\beta p \\log ^ { 2 } ( n ) } { \\mu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1977, + 1258, + 1977, + 1258, + 2006, + 1017, + 2006 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ F ( { \\pmb x } _ { o u t } ) - F ( { \\pmb x } _ { * } ) ]" + }, + { + "category_id": 13, + "poly": [ + 1316, + 275, + 1331, + 275, + 1331, + 294, + 1316, + 294 + ], + "score": 0.91, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1647, + 1400, + 1647, + 1400, + 1667, + 1253, + 1667 + ], + "score": 0.91, + "latex": "\\mathcal { M } : D \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 744, + 390, + 764, + 390, + 764, + 410, + 744, + 410 + ], + "score": 0.9, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 870, + 1572, + 902, + 1572, + 902, + 1593, + 870, + 1593 + ], + "score": 0.9, + "latex": "D ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1949, + 423, + 1949, + 423, + 1969, + 398, + 1969 + ], + "score": 0.9, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1243, + 1050, + 1265, + 1050, + 1265, + 1074, + 1243, + 1074 + ], + "score": 0.9, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1003, + 834, + 1003, + 834, + 1027, + 810, + 1027 + ], + "score": 0.9, + "latex": "d _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 275, + 1249, + 275, + 1249, + 288, + 1231, + 288 + ], + "score": 0.9, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1542, + 1311, + 1542, + 1311, + 1562, + 1286, + 1562 + ], + "score": 0.9, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 526, + 1078, + 814, + 1078, + 814, + 1112, + 526, + 1112 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathcal { X } _ { f } ^ { * } = \\arg \\operatorname* { m i n } _ { { \\pmb x } \\in \\mathbb { R } ^ { p } } f ( { \\pmb x } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1144, + 1162, + 1281, + 1162, + 1281, + 1188, + 1144, + 1188 + ], + "score": 0.89, + "latex": "f : \\mathbb { R } ^ { p } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 691, + 1433, + 691, + 1433, + 739, + 1277, + 739 + ], + "score": 0.89, + "latex": "\\mathcal { O } \\left( \\frac { \\beta p \\log ( n ) } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 299, + 1492, + 316, + 1492, + 316, + 1518, + 299, + 1518 + ], + "score": 0.89, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 428, + 1283, + 446, + 1283, + 446, + 1310, + 428, + 1310 + ], + "score": 0.89, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 804, + 1393, + 1275, + 1393, + 1275, + 1427, + 804, + 1427 + ], + "score": 0.89, + "latex": "\\left. \\nabla f ( { \\pmb x } ) - \\nabla f ( { \\pmb y } ) , { \\pmb x } - { \\pmb y } \\right. \\geq \\mu \\left. { \\pmb x } - { \\pmb y } \\right. ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 986, + 691, + 1207, + 691, + 1207, + 738, + 986, + 738 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { p } } { n \\epsilon } \\wedge \\frac { \\beta p \\log ( n ) } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 468, + 1780, + 482, + 1780, + 482, + 1800, + 468, + 1800 + ], + "score": 0.89, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1535, + 1241, + 1535, + 1241, + 1562, + 1148, + 1562 + ], + "score": 0.88, + "latex": "D \\sim D ^ { ' }" + }, + { + "category_id": 13, + "poly": [ + 575, + 1276, + 1117, + 1276, + 1117, + 1315, + 575, + 1315 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { f ( \\pmb { y } ) \\leq f ( \\pmb { x } ) + \\langle \\nabla f ( \\pmb { x } ) , \\pmb { y } - \\pmb { x } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb { y } - \\pmb { x } \\right. ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1315, + 306, + 1331, + 306, + 1331, + 319, + 1315, + 319 + ], + "score": 0.88, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 385, + 1087, + 402, + 1087, + 402, + 1100, + 385, + 1100 + ], + "score": 0.87, + "latex": "_ { v }" + }, + { + "category_id": 13, + "poly": [ + 688, + 1468, + 706, + 1468, + 706, + 1487, + 688, + 1487 + ], + "score": 0.87, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 869, + 1162, + 984, + 1162, + 984, + 1189, + 869, + 1189 + ], + "score": 0.87, + "latex": "\\ b { x } , \\ b { y } \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 428, + 1407, + 446, + 1407, + 446, + 1426, + 428, + 1426 + ], + "score": 0.85, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 695, + 1407, + 712, + 1407, + 712, + 1426, + 695, + 1426 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1787, + 1070, + 1787, + 1070, + 1800, + 1058, + 1800 + ], + "score": 0.77, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1360, + 452, + 1443, + 452, + 1443, + 480, + 1360, + 480 + ], + "score": 0.73, + "latex": "( \\mu > 0 )" + }, + { + "category_id": 13, + "poly": [ + 428, + 1223, + 448, + 1223, + 448, + 1243, + 428, + 1243 + ], + "score": 0.71, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1068, + 652, + 1126, + 652, + 1126, + 681, + 1068, + 681 + ], + "score": 0.67, + "latex": "\\mathrm { N } / \\mathrm { A }" + }, + { + "category_id": 13, + "poly": [ + 1107, + 453, + 1180, + 453, + 1180, + 479, + 1107, + 479 + ], + "score": 0.67, + "latex": "\\mu = 0 _ { , }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1163, + 1029, + 1163, + 1029, + 1184, + 1012, + 1184 + ], + "score": 0.64, + "latex": "a" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 854.0, + 563.0, + 854.0, + 563.0, + 898.0, + 291.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 71.0, + 909.0, + 71.0, + 909.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 259.0, + 1021.0, + 259.0, + 1021.0, + 296.0, + 326.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 259.0, + 1230.0, + 259.0, + 1230.0, + 296.0, + 1082.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 259.0, + 1315.0, + 259.0, + 1315.0, + 296.0, + 1250.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 259.0, + 1437.0, + 259.0, + 1437.0, + 296.0, + 1332.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 291.0, + 1198.0, + 291.0, + 1198.0, + 329.0, + 326.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 291.0, + 1314.0, + 291.0, + 1314.0, + 329.0, + 1248.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 291.0, + 1437.0, + 291.0, + 1437.0, + 329.0, + 1332.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 319.0, + 1437.0, + 319.0, + 1437.0, + 360.0, + 323.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 349.0, + 381.0, + 349.0, + 381.0, + 389.0, + 323.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 349.0, + 839.0, + 349.0, + 839.0, + 389.0, + 452.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 349.0, + 1437.0, + 349.0, + 1437.0, + 389.0, + 908.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 381.0, + 743.0, + 381.0, + 743.0, + 420.0, + 325.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 381.0, + 1128.0, + 381.0, + 1128.0, + 420.0, + 765.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 381.0, + 1410.0, + 381.0, + 1410.0, + 420.0, + 1233.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 2084.0, + 862.0, + 2084.0, + 862.0, + 2116.0, + 837.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 467.0, + 1772.0, + 467.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1772.0, + 1057.0, + 1772.0, + 1057.0, + 1808.0, + 483.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1808.0, + 1071.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 488.0, + 1802.0, + 488.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1802.0, + 1407.0, + 1802.0, + 1407.0, + 1839.0, + 567.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1835.0, + 877.0, + 1835.0, + 877.0, + 1868.0, + 296.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1835.0, + 1403.0, + 1835.0, + 1403.0, + 1868.0, + 916.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1866.0, + 762.0, + 1866.0, + 762.0, + 1899.0, + 294.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1866.0, + 1295.0, + 1866.0, + 1295.0, + 1899.0, + 801.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 924.0, + 1137.0, + 924.0, + 1137.0, + 966.0, + 293.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 966.0, + 1346.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 952.0, + 517.0, + 952.0, + 517.0, + 1011.0, + 288.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 952.0, + 774.0, + 952.0, + 774.0, + 1011.0, + 617.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 952.0, + 1187.0, + 952.0, + 1187.0, + 1011.0, + 1098.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 952.0, + 1412.0, + 952.0, + 1412.0, + 1011.0, + 1400.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 993.0, + 540.0, + 993.0, + 540.0, + 1031.0, + 292.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 993.0, + 809.0, + 993.0, + 809.0, + 1031.0, + 626.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 993.0, + 846.0, + 993.0, + 846.0, + 1031.0, + 835.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 580.0, + 1040.0, + 580.0, + 1079.0, + 295.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1040.0, + 783.0, + 1040.0, + 783.0, + 1079.0, + 645.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1040.0, + 1008.0, + 1040.0, + 1008.0, + 1079.0, + 883.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1040.0, + 1242.0, + 1040.0, + 1242.0, + 1079.0, + 1055.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1040.0, + 1408.0, + 1040.0, + 1408.0, + 1079.0, + 1266.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1071.0, + 384.0, + 1071.0, + 384.0, + 1113.0, + 292.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1071.0, + 525.0, + 1071.0, + 525.0, + 1113.0, + 403.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1071.0, + 1339.0, + 1071.0, + 1339.0, + 1113.0, + 815.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1071.0, + 1412.0, + 1071.0, + 1412.0, + 1113.0, + 1398.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 726.0, + 1102.0, + 726.0, + 1146.0, + 294.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1102.0, + 913.0, + 1102.0, + 913.0, + 1146.0, + 765.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 671.0, + 1908.0, + 671.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1947.0, + 793.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 397.0, + 1941.0, + 397.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1941.0, + 494.0, + 1941.0, + 494.0, + 1977.0, + 424.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1941.0, + 1035.0, + 1941.0, + 1035.0, + 1977.0, + 601.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1977.0, + 1100.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1016.0, + 1970.0, + 1016.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2010.0, + 1259.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 940.0, + 2002.0, + 940.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1637.0, + 493.0, + 1637.0, + 493.0, + 1677.0, + 295.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1637.0, + 1252.0, + 1637.0, + 1252.0, + 1677.0, + 554.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1637.0, + 1406.0, + 1637.0, + 1406.0, + 1677.0, + 1401.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1673.0, + 431.0, + 1673.0, + 431.0, + 1714.0, + 292.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1673.0, + 1232.0, + 1673.0, + 1232.0, + 1714.0, + 492.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1673.0, + 1406.0, + 1673.0, + 1406.0, + 1714.0, + 1300.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1710.0, + 561.0, + 1710.0, + 561.0, + 1748.0, + 292.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1710.0, + 805.0, + 1710.0, + 805.0, + 1748.0, + 643.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1710.0, + 1290.0, + 1710.0, + 1290.0, + 1748.0, + 1278.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1532.0, + 613.0, + 1532.0, + 613.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1532.0, + 1147.0, + 1532.0, + 1147.0, + 1570.0, + 684.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1532.0, + 1285.0, + 1532.0, + 1285.0, + 1570.0, + 1242.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1532.0, + 1404.0, + 1532.0, + 1404.0, + 1570.0, + 1312.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 869.0, + 1565.0, + 869.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1565.0, + 1404.0, + 1565.0, + 1404.0, + 1602.0, + 903.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1595.0, + 295.0, + 1595.0, + 295.0, + 1632.0, + 291.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1595.0, + 728.0, + 1595.0, + 728.0, + 1632.0, + 356.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 687.0, + 1452.0, + 687.0, + 1488.0, + 295.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1452.0, + 1404.0, + 1452.0, + 1404.0, + 1488.0, + 707.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 298.0, + 1483.0, + 298.0, + 1519.0, + 295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1483.0, + 533.0, + 1483.0, + 533.0, + 1519.0, + 317.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1213.0, + 427.0, + 1213.0, + 427.0, + 1255.0, + 368.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1213.0, + 600.0, + 1213.0, + 600.0, + 1255.0, + 449.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1213.0, + 931.0, + 1213.0, + 931.0, + 1255.0, + 921.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1271.0, + 427.0, + 1271.0, + 427.0, + 1315.0, + 364.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1271.0, + 574.0, + 1271.0, + 574.0, + 1315.0, + 447.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1271.0, + 1122.0, + 1271.0, + 1122.0, + 1315.0, + 1118.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1331.0, + 544.0, + 1331.0, + 544.0, + 1370.0, + 369.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1331.0, + 903.0, + 1331.0, + 903.0, + 1370.0, + 893.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 1390.0, + 427.0, + 1390.0, + 427.0, + 1430.0, + 365.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1390.0, + 694.0, + 1390.0, + 694.0, + 1430.0, + 447.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1390.0, + 803.0, + 1390.0, + 803.0, + 1430.0, + 713.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1390.0, + 1281.0, + 1390.0, + 1281.0, + 1430.0, + 1276.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1153.0, + 868.0, + 1153.0, + 868.0, + 1194.0, + 295.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1153.0, + 1011.0, + 1153.0, + 1011.0, + 1194.0, + 985.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1153.0, + 1143.0, + 1153.0, + 1143.0, + 1194.0, + 1030.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1153.0, + 1287.0, + 1153.0, + 1287.0, + 1194.0, + 1282.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 259.0, + 1021.0, + 259.0, + 1021.0, + 296.0, + 326.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 259.0, + 1230.0, + 259.0, + 1230.0, + 296.0, + 1082.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 259.0, + 1315.0, + 259.0, + 1315.0, + 296.0, + 1250.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 259.0, + 1437.0, + 259.0, + 1437.0, + 296.0, + 1332.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 291.0, + 1198.0, + 291.0, + 1198.0, + 329.0, + 326.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 291.0, + 1314.0, + 291.0, + 1314.0, + 329.0, + 1248.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 291.0, + 1437.0, + 291.0, + 1437.0, + 329.0, + 1332.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 319.0, + 1437.0, + 319.0, + 1437.0, + 360.0, + 323.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 349.0, + 381.0, + 349.0, + 381.0, + 389.0, + 323.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 349.0, + 839.0, + 349.0, + 839.0, + 389.0, + 452.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 349.0, + 1437.0, + 349.0, + 1437.0, + 389.0, + 908.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 381.0, + 743.0, + 381.0, + 743.0, + 420.0, + 325.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 381.0, + 1128.0, + 381.0, + 1128.0, + 420.0, + 765.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 381.0, + 1410.0, + 381.0, + 1410.0, + 420.0, + 1233.0, + 420.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1615, + 1404, + 1615, + 1404, + 1957, + 298, + 1957 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 471, + 1405, + 471, + 1405, + 752, + 297, + 752 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1460, + 1404, + 1460, + 1404, + 1602, + 298, + 1602 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 301, + 1063, + 1403, + 1063, + 1403, + 1157, + 301, + 1157 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 519, + 1171, + 1176, + 1171, + 1176, + 1298, + 519, + 1298 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 300, + 286, + 1401, + 286, + 1401, + 379, + 300, + 379 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 299, + 757, + 1401, + 757, + 1401, + 847, + 299, + 847 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 297, + 1310, + 1403, + 1310, + 1403, + 1374, + 297, + 1374 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2035, + 298, + 2035 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 622, + 848, + 1076, + 848, + 1076, + 887, + 622, + 887 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 489, + 1389, + 1203, + 1389, + 1203, + 1446, + 489, + 1446 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 292, + 996, + 1356, + 996, + 1356, + 1031, + 292, + 1031 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 299, + 890, + 877, + 890, + 877, + 923, + 299, + 923 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 298, + 932, + 933, + 932, + 933, + 966, + 298, + 966 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 299, + 415, + 662, + 415, + 662, + 448, + 299, + 448 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 105, + 299, + 105 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 225, + 580, + 225, + 580, + 262, + 299, + 262 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1364, + 849, + 1399, + 849, + 1399, + 883, + 1364, + 883 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.772 + }, + { + "category_id": 2, + "poly": [ + 1377, + 1000, + 1401, + 1000, + 1401, + 1026, + 1377, + 1026 + ], + "score": 0.641 + }, + { + "category_id": 13, + "poly": [ + 1009, + 1499, + 1147, + 1499, + 1147, + 1542, + 1009, + 1542 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\nu \\approx \\frac { \\mathrm { t r } ( H _ { x } ) } { p } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 806, + 1744, + 918, + 1744, + 918, + 1776, + 806, + 1776 + ], + "score": 0.94, + "latex": "\\Theta ( n ^ { - 1 / 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1210, + 792, + 1395, + 792, + 1395, + 823, + 1210, + 823 + ], + "score": 0.94, + "latex": "z \\sim { \\mathcal { N } } ( 0 , \\sigma ^ { 2 } I _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 300, + 1496, + 521, + 1496, + 521, + 1545, + 300, + 1545 + ], + "score": 0.93, + "latex": "\\frac { \\mathop { \\mathrm { t r } } ( H _ { \\pmb { x } } ) \\sigma ^ { 2 } + \\mu \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } } { p \\sigma ^ { 2 } + \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 709, + 1098, + 885, + 1098, + 885, + 1128, + 709, + 1128 + ], + "score": 0.93, + "latex": "H _ { x } = \\nabla ^ { 2 } F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1316, + 1234, + 1316, + 1234, + 1345, + 1147, + 1345 + ], + "score": 0.93, + "latex": "\\mathrm { t r } ( H _ { \\pmb { x } } )" + }, + { + "category_id": 14, + "poly": [ + 620, + 845, + 1077, + 845, + 1077, + 885, + 620, + 885 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\geq \\nu \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] ," + }, + { + "category_id": 14, + "poly": [ + 519, + 1170, + 1177, + 1170, + 1177, + 1304, + 519, + 1304 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathbb { E } [ \\langle \\nabla F ( \\tilde { \\pmb { x } } ) , \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\rangle ] \\approx \\mathbb { E } [ \\langle \\nabla F ( \\pmb { x } ) - \\pmb { H } _ { \\pmb { x } } \\pmb { z } , \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\rangle ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\mathbb { E } [ \\pmb { z } ^ { \\prime } H _ { \\pmb { x } } \\pmb { z } ] } \\\\ { = \\langle \\nabla F ( \\pmb { x } ) , \\pmb { x } - \\pmb { x } _ { * } \\rangle + \\sigma ^ { 2 } \\operatorname { t r } ( H _ { \\pmb { x } } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 581, + 791, + 714, + 791, + 714, + 823, + 581, + 823 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 848, + 795, + 934, + 795, + 934, + 816, + 848, + 816 + ], + "score": 0.92, + "latex": "\\pmb { x } \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 473, + 721, + 804, + 721, + 804, + 752, + 473, + 752 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\pmb { x } _ { * } = \\arg \\operatorname* { m i n } _ { \\pmb { x } \\in \\mathcal { X } _ { * } } \\| \\pmb { x } - \\pmb { x } _ { 1 } \\| } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 521, + 1348, + 560, + 1348, + 560, + 1372, + 521, + 1372 + ], + "score": 0.91, + "latex": "H _ { x }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 2010, + 1139, + 2010, + 1139, + 2029, + 1069, + 2029 + ], + "score": 0.91, + "latex": "\\sigma = 0" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1685, + 1121, + 1685, + 1121, + 1709, + 1100, + 1709 + ], + "score": 0.91, + "latex": "l _ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 495, + 1393, + 1203, + 1393, + 1203, + 1447, + 495, + 1447 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathbb { E } [ \\| \\tilde { \\pmb { x } } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } [ \\| \\pmb { x } - \\pmb { z } - \\pmb { x } _ { * } \\| ^ { 2 } ] = \\nu \\left( \\| \\pmb { x } - \\pmb { x } _ { * } \\| ^ { 2 } + p \\sigma ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 952, + 1777, + 998, + 1777, + 998, + 1800, + 952, + 1800 + ], + "score": 0.91, + "latex": "n ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 997, + 795, + 1122, + 795, + 1122, + 817, + 997, + 817 + ], + "score": 0.91, + "latex": "{ \\tilde { \\pmb { x } } } = { \\pmb { x } } - { \\boldsymbol { z } }" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1654, + 1027, + 1654, + 1027, + 1678, + 1006, + 1678 + ], + "score": 0.91, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 967, + 765, + 1108, + 765, + 1108, + 785, + 967, + 785 + ], + "score": 0.91, + "latex": "F : \\mathbb { R } ^ { p } \\to \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 408, + 1780, + 425, + 1780, + 425, + 1800, + 408, + 1800 + ], + "score": 0.91, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 853, + 941, + 924, + 941, + 924, + 965, + 853, + 965 + ], + "score": 0.91, + "latex": "\\nu \\geq \\mu" + }, + { + "category_id": 13, + "poly": [ + 428, + 517, + 445, + 517, + 445, + 536, + 428, + 536 + ], + "score": 0.9, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1986, + 1183, + 1986, + 1183, + 2005, + 1115, + 2005 + ], + "score": 0.9, + "latex": "\\nu = \\mu" + }, + { + "category_id": 13, + "poly": [ + 753, + 1749, + 770, + 1749, + 770, + 1769, + 753, + 1769 + ], + "score": 0.9, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 802, + 1505, + 832, + 1505, + 832, + 1528, + 802, + 1528 + ], + "score": 0.9, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1715, + 1284, + 1715, + 1284, + 1735, + 1267, + 1735 + ], + "score": 0.9, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 864, + 1983, + 933, + 1983, + 933, + 2005, + 864, + 2005 + ], + "score": 0.9, + "latex": "\\nu > \\mu" + }, + { + "category_id": 13, + "poly": [ + 453, + 1552, + 471, + 1552, + 471, + 1566, + 453, + 1566 + ], + "score": 0.89, + "latex": "_ { x }" + }, + { + "category_id": 13, + "poly": [ + 706, + 1631, + 723, + 1631, + 723, + 1644, + 706, + 1644 + ], + "score": 0.89, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1631, + 1297, + 1631, + 1297, + 1650, + 1280, + 1650 + ], + "score": 0.89, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1323, + 1109, + 1342, + 1109, + 1342, + 1122, + 1323, + 1122 + ], + "score": 0.88, + "latex": "_ { x }" + }, + { + "category_id": 13, + "poly": [ + 1373, + 1069, + 1399, + 1069, + 1399, + 1091, + 1373, + 1091 + ], + "score": 0.88, + "latex": "\\mathbf { x } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 801, + 700, + 817, + 700, + 817, + 713, + 801, + 713 + ], + "score": 0.88, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 1159, + 1841, + 1176, + 1841, + 1176, + 1861, + 1159, + 1861 + ], + "score": 0.88, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 654, + 1871, + 671, + 1871, + 671, + 1891, + 654, + 1891 + ], + "score": 0.88, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1078, + 1259, + 1078, + 1259, + 1097, + 1242, + 1097 + ], + "score": 0.87, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1475, + 1137, + 1475, + 1137, + 1488, + 1121, + 1488 + ], + "score": 0.87, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 621, + 1109, + 640, + 1109, + 640, + 1122, + 621, + 1122 + ], + "score": 0.86, + "latex": "_ { x }" + }, + { + "category_id": 13, + "poly": [ + 643, + 1004, + 712, + 1004, + 712, + 1030, + 643, + 1030 + ], + "score": 0.85, + "latex": "\\nu = \\mu" + }, + { + "category_id": 13, + "poly": [ + 851, + 904, + 869, + 904, + 869, + 917, + 851, + 917 + ], + "score": 0.83, + "latex": "_ { z }" + }, + { + "category_id": 13, + "poly": [ + 459, + 939, + 483, + 939, + 483, + 960, + 459, + 960 + ], + "score": 0.82, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1466, + 1404, + 1466, + 1404, + 1496, + 1352, + 1496 + ], + "score": 0.82, + "latex": "\\nu \\lesssim" + }, + { + "category_id": 13, + "poly": [ + 521, + 945, + 539, + 945, + 539, + 965, + 521, + 965 + ], + "score": 0.76, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 410, + 1077, + 426, + 1077, + 426, + 1092, + 410, + 1092 + ], + "score": 0.71, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 943, + 301, + 958, + 301, + 958, + 314, + 943, + 314 + ], + "score": 0.68, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 299, + 801, + 316, + 801, + 316, + 815, + 299, + 815 + ], + "score": 0.56, + "latex": "\\nu" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 665.0, + 414.0, + 665.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 585.0, + 221.0, + 585.0, + 268.0, + 291.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1004.0, + 1402.0, + 1004.0, + 1402.0, + 1026.0, + 1380.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 705.0, + 1616.0, + 705.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1616.0, + 1279.0, + 1616.0, + 1279.0, + 1652.0, + 724.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1652.0, + 1298.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1648.0, + 1005.0, + 1648.0, + 1005.0, + 1683.0, + 294.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1648.0, + 1404.0, + 1648.0, + 1404.0, + 1683.0, + 1028.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1677.0, + 1099.0, + 1677.0, + 1099.0, + 1716.0, + 292.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1677.0, + 1406.0, + 1677.0, + 1406.0, + 1716.0, + 1122.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1708.0, + 1266.0, + 1708.0, + 1266.0, + 1743.0, + 293.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1708.0, + 1404.0, + 1708.0, + 1404.0, + 1743.0, + 1285.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1736.0, + 752.0, + 1736.0, + 752.0, + 1781.0, + 291.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1736.0, + 805.0, + 1736.0, + 805.0, + 1781.0, + 771.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1736.0, + 1406.0, + 1736.0, + 1406.0, + 1781.0, + 919.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1768.0, + 407.0, + 1768.0, + 407.0, + 1811.0, + 292.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1768.0, + 951.0, + 1768.0, + 951.0, + 1811.0, + 426.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1768.0, + 1408.0, + 1768.0, + 1408.0, + 1811.0, + 999.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1835.0, + 1158.0, + 1835.0, + 1158.0, + 1870.0, + 293.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1835.0, + 1404.0, + 1835.0, + 1404.0, + 1870.0, + 1177.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 653.0, + 1863.0, + 653.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1863.0, + 1405.0, + 1863.0, + 1405.0, + 1900.0, + 672.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1895.0, + 1404.0, + 1895.0, + 1404.0, + 1930.0, + 293.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1924.0, + 1381.0, + 1924.0, + 1381.0, + 1961.0, + 293.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 471.0, + 1405.0, + 471.0, + 1405.0, + 510.0, + 294.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 502.0, + 427.0, + 502.0, + 427.0, + 539.0, + 294.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 502.0, + 1405.0, + 502.0, + 1405.0, + 539.0, + 446.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 1403.0, + 532.0, + 1403.0, + 571.0, + 294.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 561.0, + 1408.0, + 561.0, + 1408.0, + 601.0, + 292.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 592.0, + 1406.0, + 592.0, + 1406.0, + 635.0, + 292.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 626.0, + 1403.0, + 626.0, + 1403.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 655.0, + 1406.0, + 655.0, + 1406.0, + 691.0, + 292.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 684.0, + 800.0, + 684.0, + 800.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 684.0, + 1405.0, + 684.0, + 1405.0, + 723.0, + 818.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 716.0, + 472.0, + 716.0, + 472.0, + 754.0, + 291.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 716.0, + 1410.0, + 716.0, + 1410.0, + 754.0, + 805.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1454.0, + 1120.0, + 1454.0, + 1120.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1454.0, + 1351.0, + 1454.0, + 1351.0, + 1498.0, + 1138.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1487.0, + 299.0, + 1487.0, + 299.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1487.0, + 527.0, + 1487.0, + 527.0, + 1546.0, + 522.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1493.0, + 801.0, + 1493.0, + 801.0, + 1536.0, + 537.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1493.0, + 1008.0, + 1493.0, + 1008.0, + 1536.0, + 833.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1536.0, + 452.0, + 1536.0, + 452.0, + 1576.0, + 292.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1536.0, + 1404.0, + 1536.0, + 1404.0, + 1576.0, + 472.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1571.0, + 871.0, + 1571.0, + 871.0, + 1604.0, + 293.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1494.5, + 1404.0, + 1494.5, + 1404.0, + 1535.0, + 1065.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1063.0, + 409.0, + 1063.0, + 409.0, + 1100.0, + 294.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1063.0, + 1241.0, + 1063.0, + 1241.0, + 1100.0, + 427.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1063.0, + 1372.0, + 1063.0, + 1372.0, + 1100.0, + 1260.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1063.0, + 1403.0, + 1063.0, + 1403.0, + 1100.0, + 1400.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 620.0, + 1093.0, + 620.0, + 1129.0, + 292.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1093.0, + 708.0, + 1093.0, + 708.0, + 1129.0, + 641.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1093.0, + 1322.0, + 1093.0, + 1322.0, + 1129.0, + 886.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1093.0, + 1404.0, + 1093.0, + 1404.0, + 1129.0, + 1343.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1218.0, + 1125.0, + 1218.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 285.0, + 942.0, + 285.0, + 942.0, + 322.0, + 294.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 285.0, + 1403.0, + 285.0, + 1403.0, + 322.0, + 959.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 318.0, + 1403.0, + 318.0, + 1403.0, + 352.0, + 296.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 347.0, + 574.0, + 347.0, + 574.0, + 381.0, + 296.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 756.0, + 966.0, + 756.0, + 966.0, + 792.0, + 294.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 756.0, + 1406.0, + 756.0, + 1406.0, + 792.0, + 1109.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 782.0, + 298.0, + 782.0, + 298.0, + 827.0, + 290.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 782.0, + 580.0, + 782.0, + 580.0, + 827.0, + 317.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 782.0, + 847.0, + 782.0, + 847.0, + 827.0, + 715.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 782.0, + 996.0, + 782.0, + 996.0, + 827.0, + 935.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 782.0, + 1209.0, + 782.0, + 1209.0, + 827.0, + 1123.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 782.0, + 1407.0, + 782.0, + 1407.0, + 827.0, + 1396.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 451.0, + 820.0, + 451.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1310.0, + 1146.0, + 1310.0, + 1146.0, + 1346.0, + 296.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1310.0, + 1407.0, + 1310.0, + 1407.0, + 1346.0, + 1235.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1342.0, + 520.0, + 1342.0, + 520.0, + 1374.0, + 297.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1342.0, + 1395.0, + 1342.0, + 1395.0, + 1374.0, + 561.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 863.0, + 1969.0, + 863.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1969.0, + 1114.0, + 1969.0, + 1114.0, + 2009.0, + 934.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2009.0, + 1184.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1068.0, + 2002.0, + 1068.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 1140.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 995.0, + 642.0, + 995.0, + 642.0, + 1035.0, + 298.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 995.0, + 1351.0, + 995.0, + 1351.0, + 1035.0, + 713.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 887.0, + 850.0, + 887.0, + 850.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 887.0, + 884.0, + 887.0, + 884.0, + 927.0, + 870.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 926.0, + 458.0, + 926.0, + 458.0, + 972.0, + 296.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 926.0, + 520.0, + 926.0, + 520.0, + 972.0, + 484.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 926.0, + 852.0, + 926.0, + 852.0, + 972.0, + 540.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 926.0, + 936.0, + 926.0, + 936.0, + 972.0, + 925.0, + 972.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 813, + 1404, + 813, + 1404, + 1121, + 297, + 1121 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1598, + 1405, + 1598, + 1405, + 1731, + 297, + 1731 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 706, + 1404, + 706, + 1404, + 799, + 298, + 799 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 520, + 801, + 520, + 801, + 645, + 296, + 645 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 981, + 238, + 1327, + 238, + 1327, + 511, + 981, + 511 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 901, + 537, + 1403, + 537, + 1403, + 631, + 901, + 631 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 375, + 226, + 719, + 226, + 719, + 494, + 375, + 494 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 523, + 1840, + 1170, + 1840, + 1170, + 1918, + 523, + 1918 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 295, + 1737, + 1405, + 1737, + 1405, + 1822, + 295, + 1822 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 1214, + 1405, + 1214, + 1405, + 1277, + 298, + 1277 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 1948, + 1034, + 1948, + 1034, + 1985, + 296, + 1985 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 291, + 2000, + 1373, + 2000, + 1373, + 2037, + 291, + 2037 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 104, + 299, + 104 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 840, + 2087, + 859, + 2087, + 859, + 2113, + 840, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 0, + "poly": [ + 298, + 1155, + 1233, + 1155, + 1233, + 1189, + 298, + 1189 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1950, + 1403, + 1950, + 1403, + 1979, + 1374, + 1979 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 298, + 1155, + 1233, + 1155, + 1233, + 1189, + 298, + 1189 + ], + "score": 0.115 + }, + { + "category_id": 13, + "poly": [ + 730, + 1603, + 1012, + 1603, + 1012, + 1670, + 730, + 1670 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\sigma _ { t } = \\Theta \\left( \\frac { L \\sqrt { T \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 473, + 1460, + 635, + 1460, + 635, + 1489, + 473, + 1489 + ], + "score": 0.94, + "latex": "{ \\pmb g } _ { t } = \\nabla F \\left( { \\pmb x } _ { t } \\right)" + }, + { + "category_id": 14, + "poly": [ + 527, + 1845, + 1170, + 1845, + 1170, + 1917, + 527, + 1917 + ], + "score": 0.93, + "latex": "\\mathbb { E } \\left[ F \\left( \\pmb { x } _ { T + 1 } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) \\right] = \\mathcal { O } \\left( \\frac { \\beta p \\log { \\left( n \\right) L ^ { 2 } } \\log { \\left( 1 / \\delta \\right) } } { \\nu ^ { 2 } n ^ { 2 } \\epsilon ^ { 2 } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1300, + 1369, + 1363, + 1369, + 1363, + 1397, + 1300, + 1397 + ], + "score": 0.93, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 675, + 1778, + 814, + 1778, + 814, + 1821, + 675, + 1821 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 970, + 1490, + 1170, + 1490, + 1170, + 1524, + 970, + 1524 + ], + "score": 0.93, + "latex": "\\boldsymbol { z } _ { t } \\sim \\mathcal { N } \\left( 0 , \\sigma _ { t } ^ { 2 } I _ { p } \\right)" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1004, + 1397, + 1004, + 1397, + 1029, + 1269, + 1029 + ], + "score": 0.93, + "latex": "\\nu > \\mu = 0" + }, + { + "category_id": 13, + "poly": [ + 585, + 1783, + 658, + 1783, + 658, + 1821, + 585, + 1821 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 876, + 1775, + 1210, + 1775, + 1210, + 1826, + 876, + 1826 + ], + "score": 0.92, + "latex": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)" + }, + { + "category_id": 13, + "poly": [ + 492, + 1622, + 551, + 1622, + 551, + 1651, + 492, + 1651 + ], + "score": 0.92, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 585, + 1493, + 874, + 1493, + 874, + 1522, + 585, + 1522 + ], + "score": 0.92, + "latex": "{ \\pmb x } _ { t + 1 } = { \\pmb x } _ { t } - \\eta _ { t } \\left( { \\pmb g } _ { t } + { \\pmb z } _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 669, + 1370, + 706, + 1370, + 706, + 1396, + 669, + 1396 + ], + "score": 0.91, + "latex": "\\epsilon , \\delta" + }, + { + "category_id": 13, + "poly": [ + 725, + 1672, + 970, + 1672, + 970, + 1701, + 725, + 1701 + ], + "score": 0.91, + "latex": "\\nu = \\operatorname* { m i n } \\{ \\nu _ { 1 } , \\dots , \\nu _ { T } \\}" + }, + { + "category_id": 13, + "poly": [ + 705, + 1747, + 777, + 1747, + 777, + 1767, + 705, + 1767 + ], + "score": 0.91, + "latex": "\\nu > 0" + }, + { + "category_id": 13, + "poly": [ + 374, + 1432, + 436, + 1432, + 436, + 1451, + 374, + 1451 + ], + "score": 0.9, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1705, + 1319, + 1705, + 1319, + 1726, + 1251, + 1726 + ], + "score": 0.89, + "latex": "\\nu > 0" + }, + { + "category_id": 13, + "poly": [ + 895, + 1370, + 916, + 1370, + 916, + 1390, + 895, + 1390 + ], + "score": 0.89, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 482, + 1431, + 503, + 1431, + 503, + 1451, + 482, + 1451 + ], + "score": 0.89, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 618, + 1401, + 638, + 1401, + 638, + 1422, + 618, + 1422 + ], + "score": 0.88, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 492, + 819, + 562, + 819, + 562, + 846, + 492, + 846 + ], + "score": 0.87, + "latex": "\\mu = 0" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1746, + 1215, + 1746, + 1215, + 1772, + 1197, + 1772 + ], + "score": 0.87, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 965, + 821, + 1034, + 821, + 1034, + 841, + 965, + 841 + ], + "score": 0.87, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1377, + 1111, + 1377, + 1111, + 1396, + 1095, + 1396 + ], + "score": 0.87, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 926, + 1746, + 949, + 1746, + 949, + 1766, + 926, + 1766 + ], + "score": 0.87, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 497, + 1102, + 513, + 1102, + 513, + 1115, + 497, + 1115 + ], + "score": 0.85, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 1348, + 2016, + 1364, + 2016, + 1364, + 2029, + 1348, + 2029 + ], + "score": 0.84, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 299, + 1679, + 427, + 1679, + 427, + 1699, + 299, + 1699 + ], + "score": 0.83, + "latex": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 991, + 1746, + 1011, + 1746, + 1011, + 1766, + 991, + 1766 + ], + "score": 0.83, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 911, + 608, + 964, + 608, + 964, + 628, + 911, + 628 + ], + "score": 0.81, + "latex": "p { > } n" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1753, + 1400, + 1753, + 1400, + 1766, + 1383, + 1766 + ], + "score": 0.81, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 565, + 876, + 645, + 876, + 645, + 908, + 565, + 908 + ], + "score": 0.79, + "latex": "( p > n )" + }, + { + "category_id": 5, + "poly": [ + 296, + 1315, + 1389, + 1315, + 1389, + 1557, + 296, + 1557 + ], + "score": 0.547, + "html": "
Algorithm 1: Differentially Private Gradient Descent (DP-GD)
Input: Privacy parameters e,δ; running steps T; learning rate n. Loss function F(x) with Lipschitz constant L.
for t=1 to T do
Compute gt = VF(xt).
Update parameter Xt+1 = xt - Nt (gt + zt), where zt ~ N(0,σ²Ip). end for
" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 520.0, + 800.0, + 520.0, + 800.0, + 554.0, + 296.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 552.0, + 800.0, + 552.0, + 800.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 582.0, + 803.0, + 582.0, + 803.0, + 617.0, + 296.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 614.0, + 774.0, + 614.0, + 774.0, + 649.0, + 296.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 287.0, + 1008.0, + 287.0, + 1008.0, + 295.0, + 999.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 307.0, + 1014.0, + 307.0, + 1014.0, + 330.0, + 984.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 336.0, + 1014.0, + 336.0, + 1014.0, + 358.0, + 984.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 363.0, + 1014.0, + 363.0, + 1014.0, + 386.0, + 984.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 390.0, + 1013.0, + 390.0, + 1013.0, + 413.0, + 984.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 422.0, + 1011.0, + 422.0, + 1011.0, + 441.0, + 995.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 445.0, + 1043.0, + 445.0, + 1043.0, + 468.0, + 1017.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 464.0, + 1074.0, + 464.0, + 1074.0, + 481.0, + 1059.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 458.0, + 1297.0, + 458.0, + 1297.0, + 479.0, + 1268.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 477.0, + 1109.0, + 477.0, + 1109.0, + 500.0, + 1076.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 483.0, + 1218.0, + 483.0, + 1218.0, + 504.0, + 1184.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 474.0, + 1244.0, + 474.0, + 1244.0, + 489.0, + 1227.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 492.0, + 1165.0, + 492.0, + 1165.0, + 518.0, + 1117.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 534.0, + 1405.0, + 534.0, + 1405.0, + 571.0, + 900.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 564.0, + 1406.0, + 564.0, + 1406.0, + 602.0, + 899.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 595.0, + 910.0, + 595.0, + 910.0, + 635.0, + 898.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 595.0, + 1403.0, + 595.0, + 1403.0, + 635.0, + 965.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 236.0, + 449.0, + 236.0, + 449.0, + 248.0, + 436.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 251.0, + 430.0, + 251.0, + 430.0, + 274.0, + 384.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 296.0, + 431.0, + 296.0, + 431.0, + 321.0, + 385.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 292.0, + 690.0, + 292.0, + 690.0, + 313.0, + 627.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 305.0, + 446.0, + 305.0, + 446.0, + 312.0, + 437.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 320.0, + 396.0, + 320.0, + 396.0, + 369.0, + 373.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 319.0, + 640.0, + 319.0, + 640.0, + 329.0, + 627.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 311.0, + 711.0, + 311.0, + 711.0, + 354.0, + 649.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 344.0, + 429.0, + 344.0, + 429.0, + 365.0, + 386.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 349.0, + 450.0, + 349.0, + 450.0, + 360.0, + 436.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 349.0, + 479.0, + 349.0, + 479.0, + 360.0, + 465.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 349.0, + 508.0, + 349.0, + 508.0, + 360.0, + 492.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 349.0, + 536.0, + 349.0, + 536.0, + 360.0, + 520.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 349.0, + 567.0, + 349.0, + 567.0, + 360.0, + 551.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 349.0, + 595.0, + 349.0, + 595.0, + 361.0, + 578.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 349.0, + 711.0, + 349.0, + 711.0, + 375.0, + 649.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 372.0, + 710.0, + 372.0, + 710.0, + 394.0, + 649.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 377.0, + 641.0, + 377.0, + 641.0, + 390.0, + 627.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 390.0, + 431.0, + 390.0, + 431.0, + 413.0, + 384.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 394.0, + 452.0, + 394.0, + 452.0, + 408.0, + 434.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 397.0, + 478.0, + 397.0, + 478.0, + 405.0, + 466.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 397.0, + 505.0, + 397.0, + 505.0, + 405.0, + 493.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 395.0, + 536.0, + 395.0, + 536.0, + 406.0, + 522.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 396.0, + 563.0, + 396.0, + 563.0, + 405.0, + 553.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 435.0, + 430.0, + 435.0, + 430.0, + 457.0, + 387.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 439.0, + 452.0, + 439.0, + 452.0, + 455.0, + 433.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 440.0, + 480.0, + 440.0, + 480.0, + 455.0, + 463.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 440.0, + 509.0, + 440.0, + 509.0, + 455.0, + 491.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 441.0, + 536.0, + 441.0, + 536.0, + 453.0, + 522.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 441.0, + 565.0, + 441.0, + 565.0, + 453.0, + 552.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 441.0, + 594.0, + 441.0, + 594.0, + 453.0, + 581.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 441.0, + 622.0, + 441.0, + 622.0, + 453.0, + 609.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 441.0, + 653.0, + 441.0, + 653.0, + 453.0, + 639.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 439.0, + 686.0, + 439.0, + 686.0, + 457.0, + 664.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 441.0, + 709.0, + 441.0, + 709.0, + 454.0, + 695.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 458.0, + 452.0, + 458.0, + 452.0, + 479.0, + 432.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 457.0, + 515.0, + 457.0, + 515.0, + 480.0, + 487.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 457.0, + 573.0, + 457.0, + 573.0, + 479.0, + 544.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 457.0, + 630.0, + 457.0, + 630.0, + 480.0, + 602.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 457.0, + 689.0, + 457.0, + 689.0, + 480.0, + 660.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 472.0, + 625.0, + 472.0, + 625.0, + 497.0, + 521.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 910.0, + 70.0, + 910.0, + 107.0, + 296.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1154.0, + 1239.0, + 1154.0, + 1239.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1954.0, + 1403.0, + 1954.0, + 1403.0, + 1981.0, + 1377.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 491.0, + 811.0, + 491.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 811.0, + 964.0, + 811.0, + 964.0, + 850.0, + 563.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 850.0, + 1035.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 843.0, + 1405.0, + 843.0, + 1405.0, + 879.0, + 295.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 564.0, + 871.0, + 564.0, + 912.0, + 292.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 871.0, + 1407.0, + 871.0, + 1407.0, + 912.0, + 646.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1404.0, + 905.0, + 1404.0, + 940.0, + 295.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 935.0, + 1406.0, + 935.0, + 1406.0, + 971.0, + 295.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 1406.0, + 966.0, + 1406.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 994.0, + 1268.0, + 994.0, + 1268.0, + 1032.0, + 292.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 994.0, + 1409.0, + 994.0, + 1409.0, + 1032.0, + 1398.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1023.0, + 1407.0, + 1023.0, + 1407.0, + 1065.0, + 291.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1054.0, + 1406.0, + 1054.0, + 1406.0, + 1095.0, + 292.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 496.0, + 1088.0, + 496.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1088.0, + 1357.0, + 1088.0, + 1357.0, + 1124.0, + 514.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1605.0, + 491.0, + 1605.0, + 491.0, + 1655.0, + 290.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1605.0, + 729.0, + 1605.0, + 729.0, + 1655.0, + 552.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1652.0, + 1020.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 298.0, + 1665.0, + 298.0, + 1702.0, + 292.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1665.0, + 724.0, + 1665.0, + 724.0, + 1702.0, + 428.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1702.0, + 971.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 1250.0, + 1695.0, + 1250.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1695.0, + 1343.0, + 1695.0, + 1343.0, + 1731.0, + 1320.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 704.0, + 1404.0, + 704.0, + 1404.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 736.0, + 1404.0, + 736.0, + 1404.0, + 772.0, + 292.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 768.0, + 1320.0, + 768.0, + 1320.0, + 802.0, + 296.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1734.0, + 704.0, + 1734.0, + 704.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1734.0, + 925.0, + 1734.0, + 925.0, + 1776.0, + 778.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1734.0, + 990.0, + 1734.0, + 990.0, + 1776.0, + 950.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 1734.0, + 1196.0, + 1734.0, + 1196.0, + 1776.0, + 1012.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1734.0, + 1382.0, + 1734.0, + 1382.0, + 1776.0, + 1216.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1734.0, + 1405.0, + 1734.0, + 1405.0, + 1776.0, + 1401.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1760.0, + 584.0, + 1760.0, + 584.0, + 1828.0, + 284.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1760.0, + 674.0, + 1760.0, + 674.0, + 1828.0, + 659.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1760.0, + 875.0, + 1760.0, + 875.0, + 1828.0, + 815.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1760.0, + 1340.0, + 1760.0, + 1340.0, + 1828.0, + 1211.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 1403.0, + 1214.0, + 1403.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 613.0, + 1240.0, + 613.0, + 1280.0, + 293.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1946.0, + 1035.0, + 1946.0, + 1035.0, + 1987.0, + 297.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1999.0, + 1347.0, + 1999.0, + 1347.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1999.0, + 1376.0, + 1999.0, + 1376.0, + 2038.0, + 1365.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1154.0, + 1239.0, + 1154.0, + 1239.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 795, + 1404, + 795, + 1404, + 982, + 298, + 982 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1742, + 1406, + 1742, + 1406, + 1870, + 297, + 1870 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 227, + 1406, + 227, + 1406, + 415, + 297, + 415 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 296, + 989, + 1405, + 989, + 1405, + 1109, + 296, + 1109 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 293, + 639, + 1401, + 639, + 1401, + 704, + 293, + 704 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 297, + 421, + 1406, + 421, + 1406, + 515, + 297, + 515 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 593, + 1967, + 1100, + 1967, + 1100, + 2045, + 593, + 2045 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 550, + 1595, + 1146, + 1595, + 1146, + 1672, + 550, + 1672 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 291, + 1877, + 1403, + 1877, + 1403, + 1948, + 291, + 1948 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 587, + 532, + 1106, + 532, + 1106, + 610, + 587, + 610 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 295, + 1513, + 1402, + 1513, + 1402, + 1580, + 295, + 1580 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 296, + 1685, + 1037, + 1685, + 1037, + 1719, + 296, + 1719 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 1471, + 1223, + 1471, + 1223, + 1505, + 297, + 1505 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 909, + 74, + 909, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 291, + 1200, + 1320, + 1200, + 1320, + 1264, + 291, + 1264 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 298, + 737, + 1248, + 737, + 1248, + 773, + 298, + 773 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 839, + 2088, + 859, + 2088, + 859, + 2113, + 839, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 286, + 1295, + 1199, + 1295, + 1199, + 1397, + 286, + 1397 + ], + "score": 0.648 + }, + { + "category_id": 1, + "poly": [ + 273, + 1265, + 513, + 1265, + 513, + 1292, + 273, + 1292 + ], + "score": 0.594 + }, + { + "category_id": 1, + "poly": [ + 272, + 1396, + 353, + 1396, + 353, + 1422, + 272, + 1422 + ], + "score": 0.313 + }, + { + "category_id": 0, + "poly": [ + 296, + 1158, + 1232, + 1158, + 1232, + 1193, + 296, + 1193 + ], + "score": 0.305 + }, + { + "category_id": 13, + "poly": [ + 864, + 471, + 1074, + 471, + 1074, + 509, + 864, + 509 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\bar { \\pmb x } = \\frac { 1 } { T } \\sum _ { i = 1 } ^ { T } \\pmb x _ { i + 1 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 598, + 1972, + 1101, + 1972, + 1101, + 2044, + 598, + 2044 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ F \\left( \\mathbf { x } _ { T } \\right) - F \\left( \\mathbf { x } _ { * } \\right) ] = { \\mathcal { O } } \\left( { \\frac { { \\sqrt { p } } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1004, + 1779, + 1137, + 1779, + 1137, + 1809, + 1004, + 1809 + ], + "score": 0.94, + "latex": "T = \\Theta ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1779, + 432, + 1779, + 432, + 1809, + 299, + 1809 + ], + "score": 0.94, + "latex": "T = \\Theta ( n ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 1193, + 863, + 1272, + 863, + 1272, + 892, + 1193, + 892 + ], + "score": 0.94, + "latex": "\\nabla f ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 461, + 464, + 796, + 464, + 796, + 517, + 461, + 517 + ], + "score": 0.94, + "latex": "\\sigma _ { t } = \\Theta \\left( L \\sqrt { T \\log ( 1 / \\delta ) } / n \\epsilon \\right)" + }, + { + "category_id": 14, + "poly": [ + 590, + 536, + 1107, + 536, + 1107, + 610, + 590, + 610 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ F \\left( \\bar { \\pmb { x } } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log \\left( 1 / \\delta \\right) } { n \\epsilon } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 299, + 1058, + 504, + 1058, + 504, + 1105, + 299, + 1105 + ], + "score": 0.94, + "latex": "\\sigma \\ge c _ { 2 } \\frac { \\sqrt { T l o g ( 1 / \\delta ) } } { n \\epsilon }" + }, + { + "category_id": 13, + "poly": [ + 299, + 472, + 400, + 472, + 400, + 516, + 299, + 516 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1324, + 427, + 1395, + 427, + 1395, + 465, + 1324, + 465 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta = \\frac { 1 } { \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 902, + 1915, + 997, + 1915, + 997, + 1952, + 902, + 1952 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 751, + 1911, + 839, + 1911, + 839, + 1945, + 751, + 1945 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1206, + 1252, + 1206, + 1252, + 1235, + 1052, + 1235 + ], + "score": 0.93, + "latex": "f _ { i } \\left( \\pmb { x } \\right) = f \\left( \\pmb { x } ; d _ { i } \\right)" + }, + { + "category_id": 13, + "poly": [ + 433, + 1025, + 568, + 1025, + 568, + 1056, + 433, + 1056 + ], + "score": 0.93, + "latex": "\\epsilon < c _ { 1 } T / n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1206, + 728, + 1206, + 728, + 1235, + 521, + 1235 + ], + "score": 0.93, + "latex": "D = \\{ d _ { 1 } , \\ldots , d _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 767, + 1027, + 826, + 1027, + 826, + 1056, + 767, + 1056 + ], + "score": 0.93, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 982, + 1547, + 1071, + 1547, + 1071, + 1581, + 982, + 1581 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 613, + 1810, + 670, + 1810, + 670, + 1840, + 613, + 1840 + ], + "score": 0.92, + "latex": "1 / n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1913, + 1203, + 1913, + 1203, + 1942, + 1122, + 1942 + ], + "score": 0.92, + "latex": "p < n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 956, + 1361, + 1188, + 1361, + 1188, + 1395, + 956, + 1395 + ], + "score": 0.92, + "latex": "z _ { t } \\sim \\mathcal { N } \\left( 0 , L ^ { 2 } \\sigma ^ { 2 } I _ { p } \\right)" + }, + { + "category_id": 14, + "poly": [ + 553, + 1601, + 1146, + 1601, + 1146, + 1672, + 553, + 1672 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log \\left( n \\right) \\log \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 1134, + 1547, + 1244, + 1547, + 1244, + 1572, + 1134, + 1572 + ], + "score": 0.91, + "latex": "T = n ^ { 2 } \\epsilon ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 572, + 1363, + 861, + 1363, + 861, + 1393, + 572, + 1393 + ], + "score": 0.91, + "latex": "{ \\pmb x } _ { t + 1 } = { \\pmb x } _ { t } - \\eta _ { t } \\left( { \\pmb g } _ { t } + { \\pmb z } _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 578, + 1914, + 637, + 1914, + 637, + 1943, + 578, + 1943 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1029, + 1247, + 1029, + 1247, + 1050, + 1182, + 1050 + ], + "score": 0.91, + "latex": "\\delta > 0" + }, + { + "category_id": 13, + "poly": [ + 943, + 679, + 1009, + 679, + 1009, + 698, + 943, + 698 + ], + "score": 0.91, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 686, + 1522, + 754, + 1522, + 754, + 1542, + 686, + 1542 + ], + "score": 0.9, + "latex": "\\nu > 0" + }, + { + "category_id": 13, + "poly": [ + 487, + 1480, + 553, + 1480, + 553, + 1501, + 487, + 1501 + ], + "score": 0.9, + "latex": "\\nu > 0" + }, + { + "category_id": 13, + "poly": [ + 326, + 299, + 392, + 299, + 392, + 318, + 326, + 318 + ], + "score": 0.9, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 589, + 1885, + 611, + 1885, + 611, + 1905, + 589, + 1905 + ], + "score": 0.89, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1759, + 1300, + 1759, + 1300, + 1778, + 1283, + 1778 + ], + "score": 0.89, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 893, + 431, + 916, + 431, + 916, + 451, + 893, + 451 + ], + "score": 0.89, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 1147, + 431, + 1165, + 431, + 1165, + 457, + 1147, + 457 + ], + "score": 0.89, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 446, + 1269, + 467, + 1269, + 467, + 1289, + 446, + 1289 + ], + "score": 0.89, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 894, + 1521, + 917, + 1521, + 917, + 1541, + 894, + 1541 + ], + "score": 0.89, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 438, + 1301, + 457, + 1301, + 457, + 1324, + 438, + 1324 + ], + "score": 0.88, + "latex": "i _ { t }" + }, + { + "category_id": 13, + "poly": [ + 809, + 1550, + 868, + 1550, + 868, + 1579, + 809, + 1579 + ], + "score": 0.88, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 648, + 1239, + 668, + 1239, + 668, + 1259, + 648, + 1259 + ], + "score": 0.88, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1183, + 1246, + 1207, + 1246, + 1207, + 1265, + 1183, + 1265 + ], + "score": 0.88, + "latex": "\\eta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 886, + 902, + 904, + 902, + 904, + 915, + 886, + 915 + ], + "score": 0.88, + "latex": "_ { x }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1239, + 980, + 1239, + 980, + 1260, + 959, + 1260 + ], + "score": 0.88, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 347, + 1270, + 409, + 1270, + 409, + 1289, + 347, + 1289 + ], + "score": 0.87, + "latex": "t = 1" + }, + { + "category_id": 13, + "poly": [ + 299, + 1029, + 320, + 1029, + 320, + 1049, + 299, + 1049 + ], + "score": 0.87, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 533, + 1298, + 564, + 1298, + 564, + 1327, + 533, + 1327 + ], + "score": 0.86, + "latex": "[ n ]" + }, + { + "category_id": 13, + "poly": [ + 685, + 432, + 752, + 432, + 752, + 451, + 685, + 451 + ], + "score": 0.86, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 1113, + 1759, + 1128, + 1759, + 1128, + 1772, + 1113, + 1772 + ], + "score": 0.86, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 954, + 1521, + 974, + 1521, + 974, + 1541, + 954, + 1541 + ], + "score": 0.84, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1006, + 1071, + 1006, + 1071, + 1022, + 1047, + 1022 + ], + "score": 0.84, + "latex": "c _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 461, + 1329, + 634, + 1329, + 634, + 1357, + 461, + 1357 + ], + "score": 0.83, + "latex": "{ \\pmb g } _ { t } = \\nabla f _ { i _ { t } } \\left( { \\pmb x } _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 605, + 387, + 673, + 387, + 673, + 410, + 605, + 410 + ], + "score": 0.83, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 962, + 1005, + 986, + 1005, + 986, + 1022, + 962, + 1022 + ], + "score": 0.83, + "latex": "c _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 873, + 1892, + 890, + 1892, + 890, + 1905, + 873, + 1905 + ], + "score": 0.82, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1892, + 1280, + 1892, + 1280, + 1905, + 1262, + 1905 + ], + "score": 0.8, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 952, + 431, + 972, + 431, + 972, + 451, + 952, + 451 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 657, + 1885, + 677, + 1885, + 677, + 1905, + 657, + 1905 + ], + "score": 0.76, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 714, + 1029, + 731, + 1029, + 731, + 1049, + 714, + 1049 + ], + "score": 0.74, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 13, + "poly": [ + 390, + 1559, + 408, + 1559, + 408, + 1572, + 390, + 1572 + ], + "score": 0.73, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1528, + 1172, + 1528, + 1172, + 1541, + 1155, + 1541 + ], + "score": 0.56, + "latex": "\\nu" + }, + { + "category_id": 13, + "poly": [ + 629, + 1553, + 642, + 1553, + 642, + 1572, + 629, + 1572 + ], + "score": 0.55, + "latex": "\\mathit { 1 }" + }, + { + "category_id": 13, + "poly": [ + 646, + 1916, + 687, + 1916, + 687, + 1936, + 646, + 1936 + ], + "score": 0.39, + "latex": "D P" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 70.0, + 910.0, + 70.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 737.0, + 1253.0, + 737.0, + 1253.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1152.0, + 1233.0, + 1152.0, + 1233.0, + 1201.0, + 292.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 796.0, + 1402.0, + 796.0, + 1402.0, + 832.0, + 294.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 863.0, + 293.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 856.0, + 1192.0, + 856.0, + 1192.0, + 894.0, + 293.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 856.0, + 1406.0, + 856.0, + 1406.0, + 894.0, + 1273.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 890.0, + 885.0, + 890.0, + 885.0, + 922.0, + 296.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 890.0, + 1401.0, + 890.0, + 1401.0, + 922.0, + 905.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 919.0, + 1405.0, + 919.0, + 1405.0, + 954.0, + 292.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 951.0, + 783.0, + 951.0, + 783.0, + 983.0, + 296.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1742.0, + 1112.0, + 1742.0, + 1112.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1742.0, + 1282.0, + 1742.0, + 1282.0, + 1780.0, + 1129.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1742.0, + 1404.0, + 1742.0, + 1404.0, + 1780.0, + 1301.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 298.0, + 1772.0, + 298.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1772.0, + 1003.0, + 1772.0, + 1003.0, + 1811.0, + 433.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1811.0, + 1138.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 612.0, + 1804.0, + 612.0, + 1843.0, + 294.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1804.0, + 1406.0, + 1804.0, + 1406.0, + 1843.0, + 671.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1836.0, + 812.0, + 1836.0, + 812.0, + 1873.0, + 294.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1404.0, + 231.0, + 1404.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1407.0, + 262.0, + 1407.0, + 294.0, + 294.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 286.0, + 325.0, + 286.0, + 325.0, + 329.0, + 291.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 286.0, + 1408.0, + 286.0, + 1408.0, + 329.0, + 393.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1403.0, + 322.0, + 1403.0, + 354.0, + 295.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1404.0, + 352.0, + 1404.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 384.0, + 604.0, + 384.0, + 604.0, + 413.0, + 295.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 384.0, + 856.0, + 384.0, + 856.0, + 413.0, + 674.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 961.0, + 987.0, + 961.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 987.0, + 1046.0, + 987.0, + 1046.0, + 1027.0, + 987.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1027.0, + 1072.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1017.0, + 298.0, + 1017.0, + 298.0, + 1059.0, + 293.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1017.0, + 432.0, + 1017.0, + 432.0, + 1059.0, + 321.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 1017.0, + 713.0, + 1017.0, + 713.0, + 1059.0, + 569.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1017.0, + 766.0, + 1017.0, + 766.0, + 1059.0, + 732.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1017.0, + 1181.0, + 1017.0, + 1181.0, + 1059.0, + 827.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1017.0, + 1407.0, + 1017.0, + 1407.0, + 1059.0, + 1248.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1052.0, + 509.0, + 1052.0, + 509.0, + 1089.0, + 505.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1062.0, + 298.0, + 1062.0, + 298.0, + 1109.0, + 291.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1086.0, + 458.0, + 1086.0, + 458.0, + 1111.0, + 424.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 639.0, + 1403.0, + 639.0, + 1403.0, + 675.0, + 295.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 942.0, + 672.0, + 942.0, + 705.0, + 295.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 672.0, + 1022.0, + 672.0, + 1022.0, + 705.0, + 1010.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 412.0, + 684.0, + 412.0, + 684.0, + 467.0, + 290.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 412.0, + 892.0, + 412.0, + 892.0, + 467.0, + 753.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 412.0, + 951.0, + 412.0, + 951.0, + 467.0, + 917.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 412.0, + 1146.0, + 412.0, + 1146.0, + 467.0, + 973.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 412.0, + 1323.0, + 412.0, + 1323.0, + 467.0, + 1166.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 412.0, + 1409.0, + 412.0, + 1409.0, + 467.0, + 1396.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 450.0, + 460.0, + 450.0, + 460.0, + 523.0, + 401.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 450.0, + 863.0, + 450.0, + 863.0, + 523.0, + 797.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 450.0, + 1205.0, + 450.0, + 1205.0, + 523.0, + 1075.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 461.5, + 410.0, + 461.5, + 410.0, + 505.0, + 288.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1875.0, + 577.0, + 1875.0, + 577.0, + 1965.0, + 284.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1875.0, + 645.0, + 1875.0, + 645.0, + 1965.0, + 638.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1875.0, + 750.0, + 1875.0, + 750.0, + 1965.0, + 688.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1875.0, + 872.0, + 1875.0, + 872.0, + 1965.0, + 840.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1875.0, + 901.0, + 1875.0, + 901.0, + 1965.0, + 891.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1875.0, + 1121.0, + 1875.0, + 1121.0, + 1965.0, + 998.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1875.0, + 1261.0, + 1875.0, + 1261.0, + 1965.0, + 1204.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1875.0, + 1406.0, + 1875.0, + 1406.0, + 1965.0, + 1281.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1918.0, + 995.0, + 1918.0, + 995.0, + 1937.0, + 957.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1513.0, + 685.0, + 1513.0, + 685.0, + 1549.0, + 295.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1513.0, + 893.0, + 1513.0, + 893.0, + 1549.0, + 755.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1513.0, + 953.0, + 1513.0, + 953.0, + 1549.0, + 918.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1513.0, + 1154.0, + 1513.0, + 1154.0, + 1549.0, + 975.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1513.0, + 1407.0, + 1513.0, + 1407.0, + 1549.0, + 1173.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1536.0, + 389.0, + 1536.0, + 389.0, + 1589.0, + 286.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1536.0, + 628.0, + 1536.0, + 628.0, + 1589.0, + 409.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1536.0, + 808.0, + 1536.0, + 808.0, + 1589.0, + 643.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1536.0, + 981.0, + 1536.0, + 981.0, + 1589.0, + 869.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1536.0, + 1133.0, + 1536.0, + 1133.0, + 1589.0, + 1072.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1536.0, + 1373.0, + 1536.0, + 1373.0, + 1589.0, + 1245.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1040.0, + 1682.0, + 1040.0, + 1723.0, + 295.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1469.0, + 486.0, + 1469.0, + 486.0, + 1509.0, + 294.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1469.0, + 1225.0, + 1469.0, + 1225.0, + 1509.0, + 554.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1197.0, + 520.0, + 1197.0, + 520.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1197.0, + 1051.0, + 1197.0, + 1051.0, + 1237.0, + 729.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1197.0, + 1321.0, + 1197.0, + 1321.0, + 1237.0, + 1253.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1227.0, + 647.0, + 1227.0, + 647.0, + 1272.0, + 413.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1227.0, + 958.0, + 1227.0, + 958.0, + 1272.0, + 669.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1227.0, + 1182.0, + 1227.0, + 1182.0, + 1272.0, + 981.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1227.0, + 1221.0, + 1227.0, + 1221.0, + 1272.0, + 1208.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1287.0, + 437.0, + 1287.0, + 437.0, + 1330.0, + 336.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1287.0, + 532.0, + 1287.0, + 532.0, + 1330.0, + 458.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1287.0, + 700.0, + 1287.0, + 700.0, + 1330.0, + 565.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1322.0, + 460.0, + 1322.0, + 460.0, + 1359.0, + 338.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1322.0, + 646.0, + 1322.0, + 646.0, + 1359.0, + 635.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1353.0, + 571.0, + 1353.0, + 571.0, + 1396.0, + 335.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1353.0, + 955.0, + 1353.0, + 955.0, + 1396.0, + 862.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1353.0, + 1200.0, + 1353.0, + 1200.0, + 1396.0, + 1189.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 267.0, + 1260.0, + 346.0, + 1260.0, + 346.0, + 1295.0, + 267.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1260.0, + 445.0, + 1260.0, + 445.0, + 1295.0, + 410.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1260.0, + 514.0, + 1260.0, + 514.0, + 1295.0, + 468.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 266.0, + 1392.0, + 355.0, + 1392.0, + 355.0, + 1425.0, + 266.0, + 1425.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 775, + 1404, + 775, + 1404, + 1113, + 298, + 1113 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1126, + 1403, + 1126, + 1403, + 1374, + 298, + 1374 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1557, + 1402, + 1557, + 1402, + 1741, + 299, + 1741 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1387, + 1403, + 1387, + 1403, + 1542, + 298, + 1542 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1832, + 1404, + 1832, + 1404, + 1957, + 299, + 1957 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 347, + 1405, + 347, + 1405, + 456, + 298, + 456 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 224, + 1404, + 224, + 1404, + 343, + 297, + 343 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 698, + 1400, + 698, + 1400, + 762, + 297, + 762 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 539, + 466, + 1155, + 466, + 1155, + 557, + 539, + 557 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1399, + 1971, + 1399, + 2034, + 299, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 293, + 574, + 1295, + 574, + 1295, + 610, + 293, + 610 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1775, + 551, + 1775, + 551, + 1811, + 300, + 1811 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.765 + }, + { + "category_id": 0, + "poly": [ + 295, + 642, + 1027, + 642, + 1027, + 675, + 295, + 675 + ], + "score": 0.514 + }, + { + "category_id": 1, + "poly": [ + 295, + 642, + 1027, + 642, + 1027, + 675, + 295, + 675 + ], + "score": 0.417 + }, + { + "category_id": 13, + "poly": [ + 299, + 422, + 410, + 422, + 410, + 463, + 299, + 463 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { D } { G \\sqrt { t } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1149, + 385, + 1346, + 385, + 1346, + 421, + 1149, + 421 + ], + "score": 0.94, + "latex": "G = L \\sqrt { 1 + p \\sigma ^ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 544, + 470, + 1153, + 470, + 1153, + 557, + 544, + 557 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p \\log \\left( 1 / \\delta \\right) } L \\log \\left( n \\right) } { n \\epsilon } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 418, + 281, + 515, + 281, + 515, + 317, + 418, + 317 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { T = \\frac { n \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 943, + 228, + 1398, + 228, + 1398, + 281, + 943, + 281 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { E } [ F \\left( \\pmb { x } _ { T } \\right) - F \\left( \\pmb { x } _ { \\ast } \\right) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ^ { 2 } \\left( n \\right) } { n \\epsilon \\mu } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 972, + 390, + 1031, + 390, + 1031, + 419, + 972, + 419 + ], + "score": 0.92, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 473, + 423, + 584, + 423, + 584, + 448, + 473, + 448 + ], + "score": 0.92, + "latex": "T = n ^ { 2 } \\epsilon ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1196, + 1021, + 1196, + 1021, + 1220, + 989, + 1220 + ], + "score": 0.91, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1275, + 355, + 1400, + 355, + 1400, + 383, + 1275, + 383 + ], + "score": 0.91, + "latex": "\\| \\pmb { x } _ { t } \\| \\le D" + }, + { + "category_id": 13, + "poly": [ + 344, + 390, + 426, + 390, + 426, + 419, + 344, + 419 + ], + "score": 0.91, + "latex": "t \\in [ T ]" + }, + { + "category_id": 13, + "poly": [ + 562, + 320, + 629, + 320, + 629, + 339, + 562, + 339 + ], + "score": 0.9, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 935, + 356, + 958, + 356, + 958, + 376, + 935, + 376 + ], + "score": 0.89, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 708, + 357, + 785, + 357, + 785, + 377, + 708, + 377 + ], + "score": 0.88, + "latex": "\\nu = 0" + }, + { + "category_id": 13, + "poly": [ + 1001, + 356, + 1021, + 356, + 1021, + 376, + 1001, + 376 + ], + "score": 0.85, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 544, + 399, + 562, + 399, + 562, + 412, + 544, + 412 + ], + "score": 0.79, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 788, + 393, + 801, + 393, + 801, + 412, + 788, + 412 + ], + "score": 0.55, + "latex": "\\mathit { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1100, + 582, + 1121, + 582, + 1121, + 603, + 1100, + 603 + ], + "score": 0.27, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 555.0, + 1771.0, + 555.0, + 1816.0, + 292.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 642.0, + 1028.0, + 642.0, + 1028.0, + 677.0, + 296.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 775.0, + 1404.0, + 775.0, + 1404.0, + 813.0, + 294.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 838.0, + 1404.0, + 838.0, + 1404.0, + 873.0, + 293.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 1402.0, + 868.0, + 1402.0, + 903.0, + 293.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 895.0, + 1404.0, + 895.0, + 1404.0, + 934.0, + 293.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 929.0, + 1407.0, + 929.0, + 1407.0, + 964.0, + 293.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 990.0, + 1404.0, + 990.0, + 1404.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1020.0, + 1402.0, + 1020.0, + 1402.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1047.0, + 1405.0, + 1047.0, + 1405.0, + 1090.0, + 292.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1083.0, + 1222.0, + 1083.0, + 1222.0, + 1114.0, + 297.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1128.0, + 1402.0, + 1128.0, + 1402.0, + 1162.0, + 296.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1405.0, + 1158.0, + 1405.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1187.0, + 988.0, + 1187.0, + 988.0, + 1227.0, + 292.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1187.0, + 1407.0, + 1187.0, + 1407.0, + 1227.0, + 1022.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1220.0, + 1404.0, + 1220.0, + 1404.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1250.0, + 1407.0, + 1250.0, + 1407.0, + 1284.0, + 292.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1403.0, + 1280.0, + 1403.0, + 1314.0, + 294.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1338.0, + 1060.0, + 1338.0, + 1060.0, + 1379.0, + 292.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1403.0, + 1556.0, + 1403.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1589.0, + 1403.0, + 1589.0, + 1403.0, + 1621.0, + 297.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1616.0, + 1403.0, + 1616.0, + 1403.0, + 1652.0, + 295.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1649.0, + 1403.0, + 1649.0, + 1403.0, + 1682.0, + 295.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1679.0, + 1404.0, + 1679.0, + 1404.0, + 1715.0, + 295.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1016.0, + 1710.0, + 1016.0, + 1744.0, + 293.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1389.0, + 1405.0, + 1389.0, + 1405.0, + 1422.0, + 297.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1419.0, + 1402.0, + 1419.0, + 1402.0, + 1453.0, + 296.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1404.0, + 1449.0, + 1404.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1404.0, + 1479.0, + 1404.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 937.0, + 1512.0, + 937.0, + 1546.0, + 296.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1832.0, + 1404.0, + 1832.0, + 1404.0, + 1868.0, + 294.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1863.0, + 1404.0, + 1863.0, + 1404.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1892.0, + 1409.0, + 1892.0, + 1409.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1926.0, + 452.0, + 1926.0, + 452.0, + 1961.0, + 291.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 345.0, + 707.0, + 345.0, + 707.0, + 386.0, + 295.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 345.0, + 934.0, + 345.0, + 934.0, + 386.0, + 786.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 345.0, + 1000.0, + 345.0, + 1000.0, + 386.0, + 959.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 345.0, + 1274.0, + 345.0, + 1274.0, + 386.0, + 1022.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 345.0, + 1405.0, + 345.0, + 1405.0, + 386.0, + 1401.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 343.0, + 382.0, + 343.0, + 422.0, + 293.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 382.0, + 543.0, + 382.0, + 543.0, + 422.0, + 427.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 382.0, + 787.0, + 382.0, + 787.0, + 422.0, + 563.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 382.0, + 971.0, + 382.0, + 971.0, + 422.0, + 802.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 382.0, + 1148.0, + 382.0, + 1148.0, + 422.0, + 1032.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 422.0, + 1347.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 417.0, + 401.0, + 417.0, + 401.0, + 437.0, + 375.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 417.0, + 472.0, + 417.0, + 472.0, + 455.0, + 411.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 417.0, + 704.0, + 417.0, + 704.0, + 455.0, + 585.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.75, + 421.0, + 424.75, + 421.0, + 424.75, + 463.0, + 292.75, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 251.0, + 417.0, + 251.0, + 417.0, + 346.0, + 283.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 251.0, + 561.0, + 251.0, + 561.0, + 346.0, + 516.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 251.0, + 1418.0, + 251.0, + 1418.0, + 346.0, + 630.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.25, + 216.5, + 1401.25, + 216.5, + 1401.25, + 285.0, + 284.25, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 694.0, + 1405.0, + 694.0, + 1405.0, + 736.0, + 292.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 730.0, + 736.0, + 730.0, + 736.0, + 762.0, + 297.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1967.0, + 1403.0, + 1967.0, + 1403.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1401.0, + 2001.0, + 1401.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 1099.0, + 570.0, + 1099.0, + 615.0, + 292.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 570.0, + 1301.0, + 570.0, + 1301.0, + 615.0, + 1122.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 642.0, + 1028.0, + 642.0, + 1028.0, + 677.0, + 296.0, + 677.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1389, + 1404, + 1389, + 1404, + 1635, + 297, + 1635 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1007, + 1405, + 1007, + 1405, + 1375, + 298, + 1375 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1650, + 1403, + 1650, + 1403, + 1803, + 298, + 1803 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 338, + 547, + 1368, + 547, + 1368, + 784, + 338, + 784 + ], + "score": 0.96 + }, + { + "category_id": 5, + "poly": [ + 298, + 310, + 1438, + 310, + 1438, + 508, + 298, + 508 + ], + "score": 0.952, + "html": "
KDDCup99AdultMNISTCovertypeGisetteReal-simRCV1
Non private99.184.891.971.296.693.393.5
AMP197.579.371.964.362.873.164.5
Out-SGD98.177.469.462.462.373.266.7
DP-SGD98.780.487.567.763.073.870.4
DP-GD98.780.988.666.267.376.174.9
" + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1404, + 1977, + 1404, + 2034, + 296, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 301, + 1888, + 1397, + 1888, + 1397, + 1951, + 301, + 1951 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 302, + 929, + 1399, + 929, + 1399, + 993, + 302, + 993 + ], + "score": 0.934 + }, + { + "category_id": 6, + "poly": [ + 297, + 223, + 1405, + 223, + 1405, + 286, + 297, + 286 + ], + "score": 0.922 + }, + { + "category_id": 4, + "poly": [ + 301, + 805, + 1402, + 805, + 1402, + 868, + 301, + 868 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 104, + 299, + 104 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 299, + 1833, + 547, + 1833, + 547, + 1869, + 299, + 1869 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.806 + }, + { + "category_id": 13, + "poly": [ + 1233, + 1315, + 1341, + 1315, + 1341, + 1341, + 1233, + 1341 + ], + "score": 0.93, + "latex": "1 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 514, + 1043, + 573, + 1043, + 573, + 1072, + 514, + 1072 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 670, + 1315, + 701, + 1315, + 701, + 1349, + 670, + 1349 + ], + "score": 0.91, + "latex": "\\textstyle { \\frac { 1 } { n ^ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1319, + 802, + 1319, + 802, + 1343, + 782, + 1343 + ], + "score": 0.91, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 810, + 1045, + 831, + 1045, + 831, + 1065, + 810, + 1065 + ], + "score": 0.89, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1041, + 1188, + 1041, + 1188, + 1072, + 1023, + 1072 + ], + "score": 0.87, + "latex": "\\{ 5 0 , 2 0 0 , 8 0 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 299, + 1688, + 386, + 1688, + 386, + 1707, + 299, + 1707 + ], + "score": 0.85, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 532, + 268, + 544, + 268, + 544, + 281, + 532, + 281 + ], + "score": 0.8, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 551, + 1726, + 563, + 1726, + 563, + 1738, + 551, + 1738 + ], + "score": 0.8, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 537, + 1315, + 552, + 1315, + 552, + 1340, + 537, + 1340 + ], + "score": 0.77, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1113, + 1204, + 1113, + 1204, + 1126, + 1186, + 1126 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 856, + 229, + 881, + 229, + 881, + 252, + 856, + 252 + ], + "score": 0.72, + "latex": "\\%" + }, + { + "category_id": 13, + "poly": [ + 841, + 808, + 867, + 808, + 867, + 835, + 841, + 835 + ], + "score": 0.72, + "latex": "\\%" + }, + { + "category_id": 13, + "poly": [ + 485, + 1255, + 645, + 1255, + 645, + 1285, + 485, + 1285 + ], + "score": 0.71, + "latex": "\\{ 0 . 1 , 1 . 0 , 5 . 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 659, + 1256, + 839, + 1256, + 839, + 1285, + 659, + 1285 + ], + "score": 0.58, + "latex": "( \\{ 0 . 2 , 2 . 0 , 1 0 . 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 755, + 932, + 806, + 932, + 806, + 959, + 755, + 959 + ], + "score": 0.44, + "latex": "8 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1013, + 1189, + 1013, + 1189, + 1040, + 1106, + 1040 + ], + "score": 0.37, + "latex": "( R D P )" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 548.0, + 507.0, + 548.0, + 507.0, + 572.0, + 459.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 550.0, + 780.0, + 550.0, + 780.0, + 572.0, + 696.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 550.0, + 1019.0, + 550.0, + 1019.0, + 570.0, + 966.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 551.0, + 1280.0, + 551.0, + 1280.0, + 571.0, + 1219.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 573.0, + 390.0, + 573.0, + 390.0, + 585.0, + 380.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 573.0, + 455.0, + 573.0, + 455.0, + 584.0, + 445.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 574.0, + 519.0, + 574.0, + 519.0, + 584.0, + 510.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 571.0, + 588.0, + 571.0, + 588.0, + 585.0, + 573.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 574.0, + 631.0, + 574.0, + 631.0, + 591.0, + 603.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 571.0, + 647.0, + 571.0, + 647.0, + 585.0, + 633.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 574.0, + 840.0, + 574.0, + 840.0, + 585.0, + 831.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 560.0, + 888.0, + 560.0, + 888.0, + 580.0, + 855.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 574.0, + 1205.0, + 574.0, + 1205.0, + 595.0, + 1177.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 574.0, + 1286.0, + 574.0, + 1286.0, + 584.0, + 1277.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 573.0, + 1352.0, + 573.0, + 1352.0, + 584.0, + 1341.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 579.0, + 376.0, + 579.0, + 376.0, + 598.0, + 352.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 580.0, + 902.0, + 580.0, + 902.0, + 589.0, + 891.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 580.0, + 1032.0, + 580.0, + 1032.0, + 591.0, + 1022.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 602.0, + 583.0, + 602.0, + 583.0, + 612.0, + 575.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 598.0, + 888.0, + 598.0, + 888.0, + 616.0, + 864.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 588.0, + 1033.0, + 588.0, + 1033.0, + 603.0, + 1020.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 587.0, + 1145.0, + 587.0, + 1145.0, + 608.0, + 1117.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 594.0, + 1172.0, + 594.0, + 1172.0, + 607.0, + 1157.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 591.0, + 1237.0, + 591.0, + 1237.0, + 611.0, + 1179.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 605.0, + 1350.0, + 605.0, + 1350.0, + 614.0, + 1341.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 622.0, + 375.0, + 622.0, + 375.0, + 694.0, + 340.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 623.0, + 585.0, + 623.0, + 585.0, + 634.0, + 574.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 619.0, + 631.0, + 619.0, + 631.0, + 694.0, + 595.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 621.0, + 708.0, + 621.0, + 708.0, + 627.0, + 702.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 633.0, + 861.0, + 633.0, + 861.0, + 692.0, + 846.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 633.0, + 888.0, + 633.0, + 888.0, + 655.0, + 862.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 615.0, + 1149.0, + 615.0, + 1149.0, + 699.0, + 1083.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 609.0, + 1233.0, + 609.0, + 1233.0, + 660.0, + 1152.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 620.0, + 1351.0, + 620.0, + 1351.0, + 629.0, + 1340.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 656.0, + 520.0, + 656.0, + 520.0, + 664.0, + 508.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 654.0, + 712.0, + 654.0, + 712.0, + 663.0, + 702.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 653.0, + 901.0, + 653.0, + 901.0, + 661.0, + 892.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 663.0, + 375.0, + 663.0, + 375.0, + 682.0, + 352.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 665.0, + 523.0, + 665.0, + 523.0, + 678.0, + 503.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 663.0, + 549.0, + 663.0, + 549.0, + 682.0, + 525.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 661.0, + 631.0, + 661.0, + 631.0, + 684.0, + 606.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 668.0, + 775.0, + 668.0, + 775.0, + 677.0, + 761.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 662.0, + 807.0, + 662.0, + 807.0, + 683.0, + 779.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 669.0, + 889.0, + 669.0, + 889.0, + 691.0, + 862.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 673.0, + 901.0, + 673.0, + 901.0, + 682.0, + 893.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 664.0, + 1032.0, + 664.0, + 1032.0, + 675.0, + 1020.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 683.0, + 455.0, + 683.0, + 455.0, + 691.0, + 446.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 682.0, + 518.0, + 682.0, + 518.0, + 695.0, + 502.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 680.0, + 583.0, + 680.0, + 583.0, + 698.0, + 525.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 683.0, + 771.0, + 683.0, + 771.0, + 692.0, + 761.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 680.0, + 839.0, + 680.0, + 839.0, + 698.0, + 781.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 682.0, + 1031.0, + 682.0, + 1031.0, + 696.0, + 1014.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 678.0, + 1063.0, + 678.0, + 1063.0, + 699.0, + 1034.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 705.0, + 375.0, + 705.0, + 375.0, + 724.0, + 352.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 715.0, + 455.0, + 715.0, + 455.0, + 724.0, + 446.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 696.0, + 578.0, + 696.0, + 578.0, + 732.0, + 500.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 708.0, + 632.0, + 708.0, + 632.0, + 726.0, + 607.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 704.0, + 649.0, + 704.0, + 649.0, + 719.0, + 634.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 696.0, + 834.0, + 696.0, + 834.0, + 732.0, + 781.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 706.0, + 889.0, + 706.0, + 889.0, + 729.0, + 861.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 722.0, + 902.0, + 722.0, + 902.0, + 732.0, + 891.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 710.0, + 966.0, + 710.0, + 966.0, + 719.0, + 957.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 696.0, + 1095.0, + 696.0, + 1095.0, + 732.0, + 1014.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 702.0, + 1144.0, + 702.0, + 1144.0, + 720.0, + 1119.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 738.0, + 393.0, + 738.0, + 393.0, + 753.0, + 379.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 728.0, + 560.0, + 728.0, + 560.0, + 749.0, + 500.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 738.0, + 649.0, + 738.0, + 649.0, + 753.0, + 635.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 732.0, + 778.0, + 732.0, + 778.0, + 745.0, + 760.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 728.0, + 817.0, + 728.0, + 817.0, + 749.0, + 779.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 737.0, + 931.0, + 737.0, + 931.0, + 782.0, + 864.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 726.0, + 1091.0, + 726.0, + 1091.0, + 750.0, + 1035.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 731.0, + 1143.0, + 731.0, + 1143.0, + 750.0, + 1119.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 737.0, + 1161.0, + 737.0, + 1161.0, + 753.0, + 1146.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 754.0, + 413.0, + 754.0, + 413.0, + 774.0, + 359.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 753.0, + 474.0, + 753.0, + 474.0, + 777.0, + 427.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 753.0, + 543.0, + 753.0, + 543.0, + 777.0, + 487.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 754.0, + 600.0, + 754.0, + 600.0, + 774.0, + 559.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 753.0, + 669.0, + 753.0, + 669.0, + 777.0, + 613.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 753.0, + 729.0, + 753.0, + 729.0, + 777.0, + 682.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 753.0, + 799.0, + 753.0, + 799.0, + 777.0, + 742.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 752.0, + 858.0, + 752.0, + 858.0, + 775.0, + 813.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 753.0, + 985.0, + 753.0, + 985.0, + 777.0, + 938.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 753.0, + 1055.0, + 753.0, + 1055.0, + 777.0, + 998.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 754.0, + 1112.0, + 754.0, + 1112.0, + 775.0, + 1071.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 754.0, + 1180.0, + 754.0, + 1180.0, + 774.0, + 1125.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 753.0, + 1240.0, + 753.0, + 1240.0, + 777.0, + 1194.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 753.0, + 1311.0, + 753.0, + 1311.0, + 777.0, + 1253.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 754.0, + 1367.0, + 754.0, + 1367.0, + 775.0, + 1326.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 771.0, + 489.0, + 771.0, + 489.0, + 785.0, + 475.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 773.0, + 742.0, + 773.0, + 742.0, + 784.0, + 733.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 773.0, + 999.0, + 773.0, + 999.0, + 784.0, + 988.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 772.0, + 1254.0, + 772.0, + 1254.0, + 784.0, + 1244.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 572.5, + 1176.0, + 572.5, + 1176.0, + 594.0, + 1146.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.75, + 642.0, + 1137.75, + 642.0, + 1137.75, + 667.0, + 1121.75, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2010.0, + 332.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1326.0, + 2003.0, + 1326.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 855.0, + 223.0, + 855.0, + 258.0, + 295.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 223.0, + 1407.0, + 223.0, + 1407.0, + 258.0, + 882.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 253.0, + 531.0, + 253.0, + 531.0, + 289.0, + 295.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 253.0, + 1241.0, + 253.0, + 1241.0, + 289.0, + 545.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 806.0, + 840.0, + 806.0, + 840.0, + 842.0, + 296.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 806.0, + 1406.0, + 806.0, + 1406.0, + 842.0, + 868.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 837.0, + 1276.0, + 837.0, + 1276.0, + 868.0, + 297.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 910.0, + 70.0, + 910.0, + 107.0, + 296.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1827.0, + 551.0, + 1827.0, + 551.0, + 1879.0, + 290.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1404.0, + 1387.0, + 1404.0, + 1426.0, + 295.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1407.0, + 1420.0, + 1407.0, + 1454.0, + 292.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1450.0, + 1409.0, + 1450.0, + 1409.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 1404.0, + 1480.0, + 1404.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1511.0, + 1409.0, + 1511.0, + 1409.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1538.0, + 1404.0, + 1538.0, + 1404.0, + 1581.0, + 292.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1570.0, + 1404.0, + 1570.0, + 1404.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1601.0, + 1011.0, + 1601.0, + 1011.0, + 1641.0, + 292.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1006.0, + 1105.0, + 1006.0, + 1105.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1006.0, + 1406.0, + 1006.0, + 1406.0, + 1044.0, + 1190.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1036.0, + 513.0, + 1036.0, + 513.0, + 1073.0, + 292.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1036.0, + 809.0, + 1036.0, + 809.0, + 1073.0, + 574.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1036.0, + 1022.0, + 1036.0, + 1022.0, + 1073.0, + 832.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1036.0, + 1405.0, + 1036.0, + 1405.0, + 1073.0, + 1189.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1067.0, + 1405.0, + 1067.0, + 1405.0, + 1103.0, + 295.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1098.0, + 1185.0, + 1098.0, + 1185.0, + 1131.0, + 293.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1098.0, + 1405.0, + 1098.0, + 1405.0, + 1131.0, + 1205.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1130.0, + 1405.0, + 1130.0, + 1405.0, + 1164.0, + 295.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1195.0, + 295.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1190.0, + 1406.0, + 1190.0, + 1406.0, + 1228.0, + 293.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1221.0, + 1405.0, + 1221.0, + 1405.0, + 1256.0, + 295.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1247.0, + 484.0, + 1247.0, + 484.0, + 1289.0, + 292.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1247.0, + 658.0, + 1247.0, + 658.0, + 1289.0, + 646.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1247.0, + 1406.0, + 1247.0, + 1406.0, + 1289.0, + 840.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1279.0, + 1408.0, + 1279.0, + 1408.0, + 1319.0, + 292.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1308.0, + 536.0, + 1308.0, + 536.0, + 1352.0, + 289.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1308.0, + 669.0, + 1308.0, + 669.0, + 1352.0, + 553.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1308.0, + 781.0, + 1308.0, + 781.0, + 1352.0, + 702.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1308.0, + 1232.0, + 1308.0, + 1232.0, + 1352.0, + 803.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1308.0, + 1408.0, + 1308.0, + 1408.0, + 1352.0, + 1342.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 846.0, + 1342.0, + 846.0, + 1380.0, + 293.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1650.0, + 1402.0, + 1650.0, + 1402.0, + 1683.0, + 297.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1676.0, + 298.0, + 1676.0, + 298.0, + 1719.0, + 292.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1719.0, + 387.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 550.0, + 1712.0, + 550.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1712.0, + 1402.0, + 1712.0, + 1402.0, + 1745.0, + 564.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1738.0, + 1405.0, + 1738.0, + 1405.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 573.0, + 1771.0, + 573.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 1402.0, + 1886.0, + 1402.0, + 1922.0, + 295.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1918.0, + 1401.0, + 1918.0, + 1401.0, + 1954.0, + 295.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 925.0, + 754.0, + 925.0, + 754.0, + 965.0, + 296.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 925.0, + 1403.0, + 925.0, + 1403.0, + 965.0, + 807.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 958.0, + 929.0, + 958.0, + 929.0, + 994.0, + 298.0, + 994.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 383, + 299, + 383 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.774 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 910.0, + 70.0, + 910.0, + 107.0, + 296.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 1403.0, + 260.0, + 1403.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1403.0, + 291.0, + 1403.0, + 325.0, + 295.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1403.0, + 321.0, + 1403.0, + 358.0, + 294.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 354.0, + 784.0, + 354.0, + 784.0, + 387.0, + 297.0, + 387.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 495, + 227, + 495, + 261, + 300, + 261 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 293, + 1476, + 1403, + 1476, + 1403, + 1535, + 293, + 1535 + ], + "score": 0.674 + }, + { + "category_id": 1, + "poly": [ + 299, + 745, + 1400, + 745, + 1400, + 806, + 299, + 806 + ], + "score": 0.656 + }, + { + "category_id": 1, + "poly": [ + 300, + 1161, + 1399, + 1161, + 1399, + 1248, + 300, + 1248 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 299, + 1266, + 1401, + 1266, + 1401, + 1352, + 299, + 1352 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 300, + 823, + 1401, + 823, + 1401, + 883, + 300, + 883 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 298, + 1083, + 1401, + 1083, + 1401, + 1144, + 298, + 1144 + ], + "score": 0.623 + }, + { + "category_id": 1, + "poly": [ + 301, + 562, + 1400, + 562, + 1400, + 650, + 301, + 650 + ], + "score": 0.611 + }, + { + "category_id": 1, + "poly": [ + 298, + 1660, + 1400, + 1660, + 1400, + 1746, + 298, + 1746 + ], + "score": 0.608 + }, + { + "category_id": 1, + "poly": [ + 304, + 899, + 1401, + 899, + 1401, + 989, + 304, + 989 + ], + "score": 0.599 + }, + { + "category_id": 1, + "poly": [ + 297, + 1371, + 1400, + 1371, + 1400, + 1458, + 297, + 1458 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 298, + 1554, + 1401, + 1554, + 1401, + 1642, + 298, + 1642 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 297, + 1005, + 1399, + 1005, + 1399, + 1066, + 297, + 1066 + ], + "score": 0.574 + }, + { + "category_id": 1, + "poly": [ + 299, + 1764, + 1401, + 1764, + 1401, + 1853, + 299, + 1853 + ], + "score": 0.556 + }, + { + "category_id": 1, + "poly": [ + 296, + 1870, + 1400, + 1870, + 1400, + 1930, + 296, + 1930 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 297, + 380, + 1397, + 380, + 1397, + 439, + 297, + 439 + ], + "score": 0.527 + }, + { + "category_id": 1, + "poly": [ + 300, + 1948, + 1399, + 1948, + 1399, + 2034, + 300, + 2034 + ], + "score": 0.516 + }, + { + "category_id": 1, + "poly": [ + 298, + 457, + 1400, + 457, + 1400, + 545, + 298, + 545 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 297, + 668, + 1401, + 668, + 1401, + 728, + 297, + 728 + ], + "score": 0.473 + }, + { + "category_id": 1, + "poly": [ + 298, + 276, + 1405, + 276, + 1405, + 361, + 298, + 361 + ], + "score": 0.369 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 227.0, + 498.0, + 227.0, + 498.0, + 263.0, + 297.0, + 263.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": [ + 293.0, + 1474.0, + 1406.0, + 1474.0, + 1406.0, + 1512.0, + 293.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1503.0, + 392.0, + 1503.0, + 392.0, + 1538.0, + 319.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 745.0, + 1404.0, + 745.0, + 1404.0, + 781.0, + 295.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 776.0, + 1002.0, + 776.0, + 1002.0, + 807.0, + 322.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1160.0, + 1403.0, + 1160.0, + 1403.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1224.0, + 321.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1217.0, + 727.0, + 1217.0, + 727.0, + 1250.0, + 324.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1265.0, + 1403.0, + 1265.0, + 1403.0, + 1301.0, + 294.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1294.0, + 1408.0, + 1294.0, + 1408.0, + 1330.0, + 320.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1321.0, + 390.0, + 1321.0, + 390.0, + 1353.0, + 320.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 1403.0, + 820.0, + 1403.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 851.0, + 987.0, + 851.0, + 987.0, + 884.0, + 321.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1081.0, + 1405.0, + 1081.0, + 1405.0, + 1120.0, + 296.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1112.0, + 926.0, + 1112.0, + 926.0, + 1144.0, + 322.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 563.0, + 1404.0, + 563.0, + 1404.0, + 595.0, + 296.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 592.0, + 1404.0, + 592.0, + 1404.0, + 624.0, + 322.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 619.0, + 604.0, + 619.0, + 604.0, + 652.0, + 323.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1696.0, + 293.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1687.0, + 1405.0, + 1687.0, + 1405.0, + 1723.0, + 322.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1717.0, + 535.0, + 1717.0, + 535.0, + 1747.0, + 323.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 901.0, + 1404.0, + 901.0, + 1404.0, + 934.0, + 299.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 962.0, + 321.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 956.0, + 1011.0, + 956.0, + 1011.0, + 992.0, + 323.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1374.0, + 1401.0, + 1374.0, + 1401.0, + 1403.0, + 296.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1399.0, + 1405.0, + 1399.0, + 1405.0, + 1433.0, + 322.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1427.0, + 737.0, + 1427.0, + 737.0, + 1460.0, + 323.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1555.0, + 1403.0, + 1555.0, + 1403.0, + 1587.0, + 296.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1616.0, + 323.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1612.0, + 895.0, + 1612.0, + 895.0, + 1641.0, + 323.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1003.0, + 1403.0, + 1003.0, + 1403.0, + 1042.0, + 296.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1034.0, + 1116.0, + 1034.0, + 1116.0, + 1068.0, + 321.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1765.0, + 1403.0, + 1765.0, + 1403.0, + 1798.0, + 295.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1829.0, + 320.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1821.0, + 617.0, + 1821.0, + 617.0, + 1855.0, + 323.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1871.0, + 1401.0, + 1871.0, + 1401.0, + 1902.0, + 297.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1898.0, + 1168.0, + 1898.0, + 1168.0, + 1931.0, + 321.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1402.0, + 381.0, + 1402.0, + 416.0, + 294.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 408.0, + 941.0, + 408.0, + 941.0, + 442.0, + 322.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1948.0, + 1403.0, + 1948.0, + 1403.0, + 1981.0, + 296.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1976.0, + 1406.0, + 1976.0, + 1406.0, + 2011.0, + 320.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2004.0, + 854.0, + 2004.0, + 854.0, + 2036.0, + 321.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 458.0, + 1402.0, + 458.0, + 1402.0, + 490.0, + 296.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 486.0, + 1406.0, + 486.0, + 1406.0, + 520.0, + 322.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 514.0, + 873.0, + 514.0, + 873.0, + 547.0, + 323.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 667.0, + 1407.0, + 667.0, + 1407.0, + 704.0, + 295.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 696.0, + 844.0, + 696.0, + 844.0, + 729.0, + 322.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 275.0, + 1403.0, + 275.0, + 1403.0, + 307.0, + 296.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 303.0, + 1406.0, + 303.0, + 1406.0, + 336.0, + 323.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 332.0, + 738.0, + 332.0, + 738.0, + 365.0, + 323.0, + 365.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 908, + 75, + 908, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 299, + 1454, + 1403, + 1454, + 1403, + 1514, + 299, + 1514 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 298, + 1088, + 1400, + 1088, + 1400, + 1149, + 298, + 1149 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 298, + 1348, + 1400, + 1348, + 1400, + 1436, + 298, + 1436 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 293, + 1165, + 1398, + 1165, + 1398, + 1226, + 293, + 1226 + ], + "score": 0.674 + }, + { + "category_id": 1, + "poly": [ + 300, + 673, + 1400, + 673, + 1400, + 734, + 300, + 734 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 299, + 1010, + 1399, + 1010, + 1399, + 1071, + 299, + 1071 + ], + "score": 0.672 + }, + { + "category_id": 1, + "poly": [ + 297, + 1243, + 1403, + 1243, + 1403, + 1330, + 297, + 1330 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 298, + 750, + 1401, + 750, + 1401, + 811, + 298, + 811 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 297, + 596, + 1399, + 596, + 1399, + 656, + 297, + 656 + ], + "score": 0.644 + }, + { + "category_id": 1, + "poly": [ + 299, + 904, + 1402, + 904, + 1402, + 994, + 299, + 994 + ], + "score": 0.631 + }, + { + "category_id": 1, + "poly": [ + 296, + 231, + 1402, + 231, + 1402, + 291, + 296, + 291 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 298, + 828, + 1400, + 828, + 1400, + 889, + 298, + 889 + ], + "score": 0.623 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 298, + 491, + 1402, + 491, + 1402, + 578, + 298, + 578 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 297, + 308, + 1401, + 308, + 1401, + 368, + 297, + 368 + ], + "score": 0.576 + }, + { + "category_id": 1, + "poly": [ + 297, + 385, + 1401, + 385, + 1401, + 472, + 297, + 472 + ], + "score": 0.529 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.302 + }, + { + "category_id": 13, + "poly": [ + 683, + 428, + 706, + 428, + 706, + 440, + 683, + 440 + ], + "score": 0.88, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2086.0, + 868.0, + 2086.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2086.0, + 868.0, + 2086.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1455.0, + 1405.0, + 1455.0, + 1405.0, + 1486.0, + 297.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1483.0, + 1063.0, + 1483.0, + 1063.0, + 1514.0, + 323.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1088.0, + 1406.0, + 1088.0, + 1406.0, + 1124.0, + 296.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1116.0, + 1311.0, + 1116.0, + 1311.0, + 1150.0, + 322.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1349.0, + 1402.0, + 1349.0, + 1402.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1379.0, + 1404.0, + 1379.0, + 1404.0, + 1408.0, + 326.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1405.0, + 808.0, + 1405.0, + 808.0, + 1438.0, + 324.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1165.0, + 1403.0, + 1165.0, + 1403.0, + 1201.0, + 296.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1194.0, + 1305.0, + 1194.0, + 1305.0, + 1228.0, + 321.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 1404.0, + 672.0, + 1404.0, + 709.0, + 295.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 702.0, + 1404.0, + 702.0, + 1404.0, + 735.0, + 321.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1009.0, + 1404.0, + 1009.0, + 1404.0, + 1046.0, + 294.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1039.0, + 874.0, + 1039.0, + 874.0, + 1073.0, + 320.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1241.0, + 1405.0, + 1241.0, + 1405.0, + 1280.0, + 292.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1269.0, + 1408.0, + 1269.0, + 1408.0, + 1309.0, + 320.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1298.0, + 391.0, + 1298.0, + 391.0, + 1331.0, + 321.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 749.0, + 1403.0, + 749.0, + 1403.0, + 786.0, + 294.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 779.0, + 1358.0, + 779.0, + 1358.0, + 813.0, + 322.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 597.0, + 1401.0, + 597.0, + 1401.0, + 628.0, + 298.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 625.0, + 1157.0, + 625.0, + 1157.0, + 656.0, + 322.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1402.0, + 905.0, + 1402.0, + 938.0, + 295.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 930.0, + 1407.0, + 930.0, + 1407.0, + 972.0, + 321.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 964.0, + 674.0, + 964.0, + 674.0, + 994.0, + 325.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1406.0, + 231.0, + 1406.0, + 262.0, + 296.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 259.0, + 490.0, + 259.0, + 490.0, + 291.0, + 323.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 828.0, + 1402.0, + 828.0, + 1402.0, + 864.0, + 296.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 857.0, + 1256.0, + 857.0, + 1256.0, + 890.0, + 322.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 487.0, + 1407.0, + 487.0, + 1407.0, + 528.0, + 293.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 518.0, + 1407.0, + 518.0, + 1407.0, + 553.0, + 322.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 549.0, + 552.0, + 549.0, + 552.0, + 579.0, + 323.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 307.0, + 1405.0, + 307.0, + 1405.0, + 344.0, + 293.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 336.0, + 475.0, + 336.0, + 475.0, + 370.0, + 320.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 385.0, + 1405.0, + 385.0, + 1405.0, + 418.0, + 296.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 413.0, + 682.0, + 413.0, + 682.0, + 448.0, + 321.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 413.0, + 1408.0, + 413.0, + 1408.0, + 448.0, + 707.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 441.0, + 559.0, + 441.0, + 559.0, + 474.0, + 322.0, + 474.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 365, + 1822, + 1334, + 1822, + 1334, + 1971, + 365, + 1971 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 406, + 599, + 1294, + 599, + 1294, + 731, + 406, + 731 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 704, + 1561, + 991, + 1561, + 991, + 1632, + 704, + 1632 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 296, + 1137, + 1401, + 1137, + 1401, + 1249, + 296, + 1249 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 642, + 470, + 1055, + 470, + 1055, + 530, + 642, + 530 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 290, + 1400, + 290, + 1400, + 351, + 297, + 351 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 586, + 1430, + 1110, + 1430, + 1110, + 1507, + 586, + 1507 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 291, + 758, + 1403, + 758, + 1403, + 820, + 291, + 820 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 576, + 1677, + 1118, + 1677, + 1118, + 1748, + 576, + 1748 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 453, + 852, + 1245, + 852, + 1245, + 936, + 453, + 936 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 1769, + 580, + 1769, + 580, + 1810, + 297, + 1810 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 604, + 1321, + 1094, + 1321, + 1094, + 1365, + 604, + 1365 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 298, + 426, + 635, + 426, + 635, + 457, + 298, + 457 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 294, + 223, + 1204, + 223, + 1204, + 264, + 294, + 264 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 295, + 2000, + 1058, + 2000, + 1058, + 2042, + 295, + 2042 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 299, + 1519, + 825, + 1519, + 825, + 1550, + 299, + 1550 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 435, + 993, + 1263, + 993, + 1263, + 1035, + 435, + 1035 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1657, + 410, + 1657, + 410, + 1687, + 297, + 1687 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 1285, + 542, + 1285, + 542, + 1324, + 297, + 1324 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 294, + 1057, + 1076, + 1057, + 1076, + 1090, + 294, + 1090 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 295, + 1382, + 1304, + 1382, + 1304, + 1415, + 295, + 1415 + ], + "score": 0.922 + }, + { + "category_id": 8, + "poly": [ + 566, + 362, + 1129, + 362, + 1129, + 403, + 566, + 403 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 909, + 73, + 909, + 106, + 297, + 106 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 300, + 954, + 806, + 954, + 806, + 984, + 300, + 984 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1452, + 1400, + 1452, + 1400, + 1484, + 1365, + 1484 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1366, + 878, + 1400, + 878, + 1400, + 909, + 1366, + 909 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1245, + 1400, + 1245, + 1400, + 1276, + 1366, + 1276 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1326, + 1400, + 1326, + 1400, + 1357, + 1365, + 1357 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1697, + 1400, + 1697, + 1400, + 1728, + 1365, + 1728 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1883, + 1400, + 1883, + 1400, + 1913, + 1365, + 1913 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1365, + 650, + 1400, + 650, + 1400, + 680, + 1365, + 680 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1365, + 998, + 1400, + 998, + 1400, + 1030, + 1365, + 1030 + ], + "score": 0.817 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2114, + 834, + 2114 + ], + "score": 0.596 + }, + { + "category_id": 1, + "poly": [ + 299, + 556, + 815, + 556, + 815, + 589, + 299, + 589 + ], + "score": 0.521 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2114, + 835, + 2114 + ], + "score": 0.477 + }, + { + "category_id": 9, + "poly": [ + 1365, + 998, + 1400, + 998, + 1400, + 1029, + 1365, + 1029 + ], + "score": 0.123 + }, + { + "category_id": 13, + "poly": [ + 343, + 1775, + 472, + 1775, + 472, + 1811, + 343, + 1811 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 589, + 1427, + 1112, + 1427, + 1112, + 1509, + 589, + 1509 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ r _ { t + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { t } r _ { 1 } ^ { 2 } + { p \\eta } ^ { 2 } \\sum _ { i = 1 } ^ { t } { ( 1 - \\eta \\nu ) } ^ { t - i } \\sigma _ { i } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 343, + 1292, + 406, + 1292, + 406, + 1323, + 343, + 1323 + ], + "score": 0.94, + "latex": "\\textstyle \\theta = { \\frac { 1 } { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 707, + 1567, + 994, + 1567, + 994, + 1630, + 707, + 1630 + ], + "score": 0.94, + "latex": "\\sigma _ { t } ^ { 2 } = \\Theta \\left( \\frac { T L ^ { 2 } \\log ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 465, + 1292, + 532, + 1292, + 532, + 1327, + 465, + 1327 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\eta \\le { \\frac { 1 } { \\beta } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 918, + 2005, + 1048, + 2005, + 1048, + 2042, + 918, + 2042 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\geq \\frac { \\beta } { \\nu } \\geq 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 638, + 2007, + 871, + 2007, + 871, + 2042, + 638, + 2042 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) > 1 } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 643, + 473, + 1056, + 473, + 1056, + 530, + 643, + 530 + ], + "score": 0.93, + "latex": "\\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\geq \\frac { 1 } { \\beta } \\left\\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\right\\| ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 580, + 1679, + 1119, + 1679, + 1119, + 1748, + 580, + 1748 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] \\le \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } + \\Theta \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 365, + 1824, + 1330, + 1824, + 1330, + 1975, + 365, + 1975 + ], + "score": 0.93, + "latex": "\\begin{array} { c } { \\displaystyle \\left( 1 - \\eta \\nu \\right) ^ { T } r _ { 1 } ^ { 2 } = \\exp \\left( \\frac { \\log \\left( 1 - \\eta \\nu \\right) \\log \\left( n ^ { 2 } \\right) } { \\eta \\nu } \\right) r _ { 1 } ^ { 2 } = \\exp \\left( \\log ( 1 / n ^ { 2 } ) \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) \\right) r _ { 1 } ^ { 2 } , } \\\\ { \\displaystyle \\qquad \\leq \\left( \\frac { 1 } { n ^ { 2 } } \\right) ^ { \\frac { 1 } { \\eta \\nu } \\log ( 1 + \\frac { \\eta \\nu } { 1 - \\eta \\nu } ) } r _ { 1 } ^ { 2 } < \\frac { r _ { 1 } ^ { 2 } } { n ^ { 2 } } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 407, + 600, + 1292, + 600, + 1292, + 736, + 407, + 736 + ], + "score": 0.92, + "latex": "\\begin{array} { r l r } & { } & { \\mathbb { E } _ { z _ { t - 1 } } [ \\langle x _ { t } - x _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle ] \\ge \\theta \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] } \\\\ & { } & \\\\ & { } & { \\ge \\theta \\nu \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { ( 1 - \\theta ) } { \\beta } \\mathbb { E } _ { z _ { t - 1 } } [ \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } ] . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 310, + 1135, + 1403, + 1135, + 1403, + 1256, + 310, + 1256 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathfrak { L } _ { \\mathfrak { z } _ { t } , \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t + 1 } ^ { 2 } \\big ] \\leq \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| x _ { t } - \\mathfrak { x } _ { * } \\big \\| ^ { 2 } \\big ] - 2 \\eta \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\langle \\nabla F \\left( \\mathfrak { x } _ { t } \\right) , \\mathfrak { x } _ { t } - \\mathfrak { x } _ { * } \\rangle \\big ] + \\eta ^ { 2 } \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } , } \\\\ & { \\qquad \\leq \\left( 1 - 2 \\left( 1 - \\theta \\right) \\eta \\nu \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ r _ { t } ^ { 2 } \\big ] + \\left( \\eta ^ { 2 } - \\frac { 2 \\eta \\theta } { \\beta } \\right) \\mathbb { E } _ { \\mathfrak { z } _ { t - 1 } } \\big [ \\big \\| \\nabla F \\left( \\mathfrak { x } _ { t } \\right) \\big \\| ^ { 2 } \\big ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 344, + 762, + 513, + 762, + 513, + 791, + 344, + 791 + ], + "score": 0.91, + "latex": "r _ { t } = \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\|" + }, + { + "category_id": 13, + "poly": [ + 587, + 305, + 698, + 305, + 698, + 322, + 587, + 322 + ], + "score": 0.91, + "latex": "\\pmb { x } _ { 1 } , \\ldots , \\pmb { x } _ { t }" + }, + { + "category_id": 14, + "poly": [ + 455, + 850, + 1245, + 850, + 1245, + 938, + 455, + 938 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { r _ { t + 1 } ^ { 2 } = \\left. x _ { t } - \\eta \\nabla F \\left( { \\pmb x } _ { t } \\right) - \\eta z _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } , } \\\\ & { \\qquad = \\left. { \\pmb x } _ { t } - { \\pmb x } _ { * } \\right. ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\left. \\nabla F \\left( { \\pmb x } _ { t } \\right) + z _ { t } \\right. ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 365, + 434, + 386, + 434, + 386, + 452, + 365, + 452 + ], + "score": 0.91, + "latex": "F ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 420, + 433, + 436, + 433, + 436, + 457, + 420, + 457 + ], + "score": 0.9, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 933, + 1395, + 1105, + 1395, + 1105, + 1413, + 933, + 1413 + ], + "score": 0.9, + "latex": "z _ { t } , z _ { t - 1 } , \\cdots , z _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 723, + 333, + 774, + 333, + 774, + 349, + 723, + 349 + ], + "score": 0.9, + "latex": "{ z t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1071, + 812, + 1071, + 812, + 1088, + 762, + 1088 + ], + "score": 0.9, + "latex": "{ \\boldsymbol { \\mathbf { \\mathit { z } } } } _ { t - 1 }" + }, + { + "category_id": 14, + "poly": [ + 605, + 1323, + 1095, + 1323, + 1095, + 1360, + 605, + 1360 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } } [ r _ { t + 1 } ^ { 2 } ] \\leq ( 1 - \\eta \\nu ) \\mathbb { E } _ { z _ { t - 1 } } [ r _ { t } ^ { 2 } ] + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1373, + 305, + 1399, + 305, + 1399, + 320, + 1373, + 320 + ], + "score": 0.88, + "latex": "\\scriptstyle { \\mathbf { x } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 773, + 1401, + 773, + 1401, + 790, + 1354, + 790 + ], + "score": 0.88, + "latex": "r _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 348, + 801, + 370, + 801, + 370, + 816, + 348, + 816 + ], + "score": 0.87, + "latex": "r _ { t }" + }, + { + "category_id": 14, + "poly": [ + 436, + 995, + 1265, + 995, + 1265, + 1031, + 436, + 1031 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t } } [ r _ { t + 1 } ^ { 2 } ] \\le \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } - 2 \\eta \\langle \\nabla F \\left( { \\pmb x } _ { t } \\right) , { \\pmb x } _ { t } - { \\pmb x } _ { * } \\rangle + \\eta ^ { 2 } \\| \\nabla F \\left( { \\pmb x } _ { t } \\right) \\| ^ { 2 } + p \\eta ^ { 2 } \\sigma _ { t } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 573, + 368, + 1123, + 368, + 1123, + 400, + 573, + 400 + ], + "score": 0.86, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\langle { \\pmb x } _ { t } - { \\pmb x } _ { * } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle \\big ] \\geq \\nu _ { t } \\mathbb { E } _ { z _ { t - 1 } } \\big [ \\big \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\big \\| ^ { 2 } \\big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 842, + 768, + 852, + 768, + 852, + 785, + 842, + 785 + ], + "score": 0.83, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 674, + 967, + 699, + 967, + 699, + 982, + 674, + 982 + ], + "score": 0.83, + "latex": "\\scriptstyle { \\mathcal { Z } } _ { t }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 222.0, + 1207.0, + 222.0, + 1207.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 908.0, + 72.0, + 908.0, + 107.0, + 298.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 287.0, + 586.0, + 287.0, + 586.0, + 329.0, + 295.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 287.0, + 1372.0, + 287.0, + 1372.0, + 329.0, + 699.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 287.0, + 1405.0, + 287.0, + 1405.0, + 329.0, + 1400.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 320.0, + 722.0, + 320.0, + 722.0, + 352.0, + 296.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 320.0, + 1023.0, + 320.0, + 1023.0, + 352.0, + 775.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 751.0, + 343.0, + 751.0, + 343.0, + 800.0, + 289.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 751.0, + 841.0, + 751.0, + 841.0, + 800.0, + 514.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 751.0, + 1353.0, + 751.0, + 1353.0, + 800.0, + 853.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 751.0, + 1408.0, + 751.0, + 1408.0, + 800.0, + 1402.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 782.0, + 347.0, + 782.0, + 347.0, + 824.0, + 291.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 782.0, + 387.0, + 782.0, + 387.0, + 824.0, + 371.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1766.0, + 342.0, + 1766.0, + 342.0, + 1815.0, + 294.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1766.0, + 582.0, + 1766.0, + 582.0, + 1815.0, + 473.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 423.0, + 364.0, + 423.0, + 364.0, + 461.0, + 296.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 423.0, + 419.0, + 423.0, + 419.0, + 461.0, + 387.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 423.0, + 635.0, + 423.0, + 635.0, + 461.0, + 437.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1993.0, + 637.0, + 1993.0, + 637.0, + 2052.0, + 288.0, + 2052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1993.0, + 917.0, + 1993.0, + 917.0, + 2052.0, + 872.0, + 2052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1993.0, + 1065.0, + 1993.0, + 1065.0, + 2052.0, + 1049.0, + 2052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1518.0, + 826.0, + 1518.0, + 826.0, + 1554.0, + 297.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1654.0, + 412.0, + 1654.0, + 412.0, + 1689.0, + 295.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1278.0, + 342.0, + 1278.0, + 342.0, + 1332.0, + 293.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1278.0, + 464.0, + 1278.0, + 464.0, + 1332.0, + 407.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1278.0, + 547.0, + 1278.0, + 547.0, + 1332.0, + 533.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1056.0, + 761.0, + 1056.0, + 761.0, + 1091.0, + 295.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1056.0, + 1076.0, + 1056.0, + 1076.0, + 1091.0, + 813.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 932.0, + 1380.0, + 932.0, + 1418.0, + 294.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1380.0, + 1305.0, + 1380.0, + 1305.0, + 1418.0, + 1106.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 950.0, + 673.0, + 950.0, + 673.0, + 989.0, + 295.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 950.0, + 808.0, + 950.0, + 808.0, + 989.0, + 700.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 551.0, + 817.0, + 551.0, + 817.0, + 594.0, + 294.0, + 594.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 521, + 1717, + 1173, + 1717, + 1173, + 1853, + 521, + 1853 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 460, + 701, + 1248, + 701, + 1248, + 824, + 460, + 824 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 304, + 1196, + 1393, + 1196, + 1393, + 1511, + 304, + 1511 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 677, + 403, + 1022, + 403, + 1022, + 461, + 677, + 461 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 662, + 274, + 1035, + 274, + 1035, + 343, + 662, + 343 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 612, + 1919, + 1082, + 1919, + 1082, + 2001, + 612, + 2001 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 548, + 1590, + 1147, + 1590, + 1147, + 1671, + 548, + 1671 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 586, + 519, + 1109, + 519, + 1109, + 585, + 586, + 585 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 566, + 889, + 1128, + 889, + 1128, + 951, + 566, + 951 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 447, + 1011, + 1253, + 1011, + 1253, + 1137, + 447, + 1137 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 461, + 1692, + 461, + 1722, + 298, + 1722 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 972, + 846, + 972, + 846, + 1004, + 297, + 1004 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 300, + 663, + 892, + 663, + 892, + 695, + 300, + 695 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 295, + 592, + 1047, + 592, + 1047, + 635, + 295, + 635 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 909, + 73, + 909, + 107, + 297, + 107 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 299, + 480, + 1077, + 480, + 1077, + 512, + 299, + 512 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 846, + 955, + 846, + 955, + 880, + 296, + 880 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 1157, + 757, + 1157, + 757, + 1190, + 298, + 1190 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 297, + 364, + 672, + 364, + 672, + 396, + 297, + 396 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 294, + 1549, + 1153, + 1549, + 1153, + 1584, + 294, + 1584 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1768, + 1400, + 1768, + 1400, + 1801, + 1353, + 1801 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 298, + 225, + 1194, + 225, + 1194, + 269, + 298, + 269 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1353, + 905, + 1400, + 905, + 1400, + 936, + 1353, + 936 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1507, + 1400, + 1507, + 1400, + 1538, + 1353, + 1538 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1057, + 1400, + 1057, + 1400, + 1088, + 1352, + 1088 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 415, + 1400, + 415, + 1400, + 446, + 1352, + 446 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1353, + 746, + 1400, + 746, + 1400, + 777, + 1353, + 777 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1943, + 1400, + 1943, + 1400, + 1975, + 1352, + 1975 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 293, + 1400, + 293, + 1400, + 324, + 1352, + 324 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1613, + 1400, + 1613, + 1400, + 1644, + 1352, + 1644 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 1375, + 597, + 1404, + 597, + 1404, + 626, + 1375, + 626 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 865, + 2087, + 865, + 2114, + 835, + 2114 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 1375, + 2004, + 1403, + 2004, + 1403, + 2032, + 1375, + 2032 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 297, + 1870, + 589, + 1870, + 589, + 1911, + 297, + 1911 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 1375, + 2004, + 1403, + 2004, + 1403, + 2032, + 1375, + 2032 + ], + "score": 0.297 + }, + { + "category_id": 14, + "poly": [ + 663, + 274, + 1037, + 274, + 1037, + 343, + 663, + 343 + ], + "score": 0.95, + "latex": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ] = \\mathcal { O } \\left( \\frac { p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 460, + 231, + 589, + 231, + 589, + 269, + 460, + 269 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { T \\geq \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 338, + 597, + 467, + 597, + 467, + 634, + 338, + 634 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { T \\ge \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 615, + 1918, + 1085, + 1918, + 1085, + 2001, + 615, + 2001 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ F ( \\bar { \\pmb x } ) - F ( { \\pmb x } _ { \\ast } ) ] = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( 1 / \\delta ) } { n \\epsilon } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 676, + 401, + 1024, + 401, + 1024, + 460, + 676, + 460 + ], + "score": 0.94, + "latex": "F ( \\pmb { x } ) - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } - \\pmb { x } _ { \\ast } \\right. ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 388, + 1875, + 482, + 1875, + 482, + 1913, + 388, + 1913 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 589, + 518, + 1110, + 518, + 1110, + 586, + 589, + 586 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ F ( { \\pmb x } _ { T + 1 } ) - F ( { \\pmb x } _ { \\ast } ) ] = { \\mathcal O } \\left( \\frac { \\beta p \\eta T L ^ { 2 } \\log ( 1 / \\delta ) } { \\nu n ^ { 2 } \\epsilon ^ { 2 } } \\right)" + }, + { + "category_id": 14, + "poly": [ + 312, + 1195, + 1392, + 1195, + 1392, + 1517, + 312, + 1517 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { \\mathbb { E } _ { \\mathbf { z } _ { t } } [ F ( \\mathbf { x } _ { t + 1 } ) - F ( \\mathbf { x } _ { * } ) ] \\leq \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\mathbb { E } _ { \\mathbf { z } _ { t } } [ \\left. \\beta ( \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } ) - z _ { t } \\right. ^ { 2 } ] + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t + 1 } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } - \\mathbb { E } _ { \\mathbf { z } _ { t } } \\langle \\mathbf { x } _ { t } - \\boldsymbol { \\eta } \\nabla F ( \\mathbf { x } _ { t } ) - \\boldsymbol { \\eta } z _ { t } , z _ { t } \\rangle } & { } \\\\ { = \\beta \\langle \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } , \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\rangle - \\frac { \\beta } { 2 } \\left. \\mathbf { x } _ { t } - \\mathbf { x } _ { t + 1 } \\right. ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { } & { = \\frac { \\beta } { 2 } ( \\Vert \\mathbf { x } _ { t } - \\mathbf { x } _ { * } \\Vert ^ { 2 } - \\Vert \\mathbf { x } _ { t + 1 } - \\mathbf { x } _ { * } \\Vert ^ { 2 } ) + \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1010, + 234, + 1095, + 234, + 1095, + 265, + 1010, + 265 + ], + "score": 0.94, + "latex": "\\mathbb { E } [ r _ { T + 1 } ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 467, + 1559, + 600, + 1559, + 600, + 1582, + 467, + 1582 + ], + "score": 0.93, + "latex": "t = 1 , \\ldots , T ^ { \\prime }" + }, + { + "category_id": 14, + "poly": [ + 523, + 1718, + 1174, + 1718, + 1174, + 1857, + 523, + 1857 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { \\mathbb { E } [ F ( \\bar { \\pmb { x } } ) - F ( { \\pmb x } _ { * } ) ] \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\frac { 1 } { \\beta } p \\sigma ^ { 2 } } } \\\\ & { } & { \\le \\frac { \\beta } { 2 T } \\| { \\pmb x } _ { 1 } - { \\pmb x } _ { * } \\| ^ { 2 } + \\Theta ( \\frac { L ^ { 2 } p T \\log ( 1 / \\delta ) } { \\beta n ^ { 2 } \\epsilon ^ { 2 } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 404, + 978, + 473, + 978, + 473, + 1004, + 404, + 1004 + ], + "score": 0.93, + "latex": "F ( { \\pmb x } _ { * } )" + }, + { + "category_id": 13, + "poly": [ + 366, + 370, + 423, + 370, + 423, + 396, + 366, + 396 + ], + "score": 0.93, + "latex": "F ( { \\pmb x } )" + }, + { + "category_id": 13, + "poly": [ + 909, + 595, + 1038, + 595, + 1038, + 634, + 909, + 634 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { T = \\frac { 2 \\log ( n ) } { \\eta \\nu } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 876, + 850, + 944, + 850, + 944, + 884, + 876, + 884 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta = { \\frac { 1 } { \\beta } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 461, + 699, + 1241, + 699, + 1241, + 828, + 461, + 828 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { \\displaystyle F ( { \\pmb x } _ { t + 1 } ) \\leq F ( { \\pmb x } _ { t } ) + \\langle \\nabla F ( { \\pmb x } _ { t } ) , { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\rangle + \\displaystyle \\frac { \\beta } { 2 } \\left\\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { t } \\right\\| ^ { 2 } } \\\\ { \\displaystyle \\qquad = F ( { \\pmb x } _ { t } ) - \\eta \\langle \\nabla F ( { \\pmb x } _ { t } ) , \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\rangle + \\displaystyle \\frac { \\beta \\eta ^ { 2 } } { 2 } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) + { \\pmb z } _ { t } \\right\\| ^ { 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 549, + 1588, + 1149, + 1588, + 1149, + 1671, + 549, + 1671 + ], + "score": 0.92, + "latex": "\\sum _ { t = 1 } ^ { T } \\mathbb { E } [ F ( \\pmb { x } _ { t + 1 } ) - F ( \\pmb { x } _ { * } ) ] \\leq \\frac { \\beta } { 2 } \\left. \\pmb { x } _ { 1 } - \\pmb { x } _ { * } \\right. ^ { 2 } + \\sum _ { t = 1 } ^ { T } \\frac { 1 } { \\beta } p \\sigma _ { t } ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 450, + 1010, + 1249, + 1010, + 1249, + 1143, + 450, + 1143 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\displaystyle \\mathbb { E } _ { z _ { t } } [ F ( { \\boldsymbol x } _ { t + 1 } ) - F ( { \\boldsymbol x } _ { * } ) ] = F ( { \\boldsymbol x } _ { t } ) - F ( { \\boldsymbol x } _ { * } ) - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } } & { } \\\\ { \\displaystyle \\le \\langle \\nabla F ( { \\boldsymbol x } _ { t } ) , { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\rangle - \\frac { 1 } { 2 \\beta } \\| \\nabla F ( { \\boldsymbol x } _ { t } ) \\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } . } & { } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 571, + 889, + 1129, + 889, + 1129, + 951, + 571, + 951 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { z _ { t } } [ F ( { \\pmb x } _ { t + 1 } ) ] = F ( { \\pmb x } _ { t } ) - \\frac { 1 } { 2 \\beta } \\left\\| \\nabla F ( { \\pmb x } _ { t } ) \\right\\| ^ { 2 } + \\frac { 1 } { 2 \\beta } p \\sigma _ { t } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 423, + 1163, + 746, + 1163, + 746, + 1189, + 423, + 1189 + ], + "score": 0.91, + "latex": "\\nabla F ( { \\pmb x } _ { t } ) = \\beta ( { \\pmb x } _ { t } - { \\pmb x } _ { t + 1 } ) - { \\pmb z } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 457, + 371, + 473, + 371, + 473, + 395, + 457, + 395 + ], + "score": 0.91, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 675, + 860, + 698, + 860, + 698, + 875, + 675, + 875 + ], + "score": 0.87, + "latex": "\\scriptstyle { \\mathcal { Z } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1565, + 1142, + 1565, + 1142, + 1582, + 1028, + 1582 + ], + "score": 0.84, + "latex": "z _ { 1 } , \\dots , z _ { T }" + }, + { + "category_id": 13, + "poly": [ + 504, + 673, + 518, + 673, + 518, + 690, + 504, + 690 + ], + "score": 0.63, + "latex": "\\mathcal { L }" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 71.0, + 909.0, + 71.0, + 909.0, + 108.0, + 299.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 598.0, + 1405.0, + 598.0, + 1405.0, + 631.0, + 1377.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 2007.0, + 1403.0, + 2007.0, + 1403.0, + 2035.0, + 1379.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 2007.0, + 1403.0, + 2007.0, + 1403.0, + 2035.0, + 1379.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1687.0, + 464.0, + 1687.0, + 464.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 403.0, + 966.0, + 403.0, + 1010.0, + 294.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 966.0, + 847.0, + 966.0, + 847.0, + 1010.0, + 474.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 656.0, + 503.0, + 656.0, + 503.0, + 704.0, + 295.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 656.0, + 895.0, + 656.0, + 895.0, + 704.0, + 519.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 581.0, + 337.0, + 581.0, + 337.0, + 640.0, + 287.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 581.0, + 908.0, + 581.0, + 908.0, + 640.0, + 468.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 581.0, + 1054.0, + 581.0, + 1054.0, + 640.0, + 1039.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 478.0, + 1078.0, + 478.0, + 1078.0, + 515.0, + 297.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 837.0, + 674.0, + 837.0, + 674.0, + 888.0, + 292.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 837.0, + 875.0, + 837.0, + 875.0, + 888.0, + 699.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 837.0, + 959.0, + 837.0, + 959.0, + 888.0, + 945.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 422.0, + 1150.0, + 422.0, + 1195.0, + 295.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1150.0, + 759.0, + 1150.0, + 759.0, + 1195.0, + 747.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 362.0, + 365.0, + 362.0, + 365.0, + 399.0, + 296.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 362.0, + 456.0, + 362.0, + 456.0, + 399.0, + 424.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 362.0, + 673.0, + 362.0, + 673.0, + 399.0, + 474.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1544.0, + 466.0, + 1544.0, + 466.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1544.0, + 1027.0, + 1544.0, + 1027.0, + 1591.0, + 601.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1544.0, + 1158.0, + 1544.0, + 1158.0, + 1591.0, + 1143.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 459.0, + 223.0, + 459.0, + 275.0, + 294.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 223.0, + 1009.0, + 223.0, + 1009.0, + 275.0, + 590.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 223.0, + 1195.0, + 223.0, + 1195.0, + 275.0, + 1096.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1874.0, + 590.0, + 1874.0, + 590.0, + 1906.0, + 490.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.25, + 1866.5, + 488.25, + 1866.5, + 488.25, + 1905.5, + 294.25, + 1905.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1886.5, + 497.0, + 1886.5, + 497.0, + 1912.5, + 441.0, + 1912.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 354, + 1637, + 1298, + 1637, + 1298, + 1814, + 354, + 1814 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 502, + 1048, + 1191, + 1048, + 1191, + 1272, + 502, + 1272 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 424, + 807, + 1273, + 807, + 1273, + 894, + 424, + 894 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 295, + 1541, + 1407, + 1541, + 1407, + 1604, + 295, + 1604 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 294, + 1365, + 1402, + 1365, + 1402, + 1426, + 294, + 1426 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 434, + 1441, + 1262, + 1441, + 1262, + 1511, + 434, + 1511 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 294, + 1840, + 1404, + 1840, + 1404, + 1904, + 294, + 1904 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 346, + 1956, + 1280, + 1956, + 1280, + 2044, + 346, + 2044 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 406, + 630, + 1290, + 630, + 1290, + 713, + 406, + 713 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 667, + 328, + 1031, + 328, + 1031, + 396, + 667, + 396 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 916, + 1401, + 916, + 1401, + 978, + 297, + 978 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 341, + 473, + 1314, + 473, + 1314, + 557, + 341, + 557 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 291, + 583, + 1278, + 583, + 1278, + 617, + 291, + 617 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 300, + 425, + 622, + 425, + 622, + 458, + 300, + 458 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 741, + 936, + 741, + 936, + 775, + 297, + 775 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 983, + 945, + 983, + 945, + 1034, + 296, + 1034 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 909, + 73, + 909, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1353, + 656, + 1400, + 656, + 1400, + 687, + 1353, + 687 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1353, + 834, + 1399, + 834, + 1399, + 866, + 1353, + 866 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1142, + 1400, + 1142, + 1400, + 1174, + 1352, + 1174 + ], + "score": 0.889 + }, + { + "category_id": 1, + "poly": [ + 299, + 277, + 1404, + 277, + 1404, + 314, + 299, + 314 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1711, + 1400, + 1711, + 1400, + 1741, + 1353, + 1741 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1353, + 498, + 1400, + 498, + 1400, + 529, + 1353, + 529 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1460, + 1399, + 1460, + 1399, + 1491, + 1353, + 1491 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1984, + 1400, + 1984, + 1400, + 2016, + 1353, + 2016 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 1376, + 1301, + 1403, + 1301, + 1403, + 1329, + 1376, + 1329 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2114, + 834, + 2114 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1007, + 229, + 1007, + 264, + 298, + 264 + ], + "score": 0.522 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 864, + 2088, + 864, + 2114, + 834, + 2114 + ], + "score": 0.366 + }, + { + "category_id": 13, + "poly": [ + 921, + 922, + 1003, + 922, + 1003, + 952, + 921, + 952 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 392, + 990, + 703, + 990, + 703, + 1033, + 392, + 1033 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathbb { E } [ \\left\\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\right\\| ^ { 2 } ] \\leq \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 504, + 1050, + 1196, + 1050, + 1196, + 1276, + 504, + 1276 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { \\mathbb { E } [ \\| { \\pmb x } _ { t + 1 } - { \\pmb x } _ { * } \\| ^ { 2 } ] \\leq ( 1 - \\frac { 2 } { t } ) \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } } \\\\ & { } & { \\leq ( \\frac { 1 } { t } - \\frac { 2 } { t ^ { 2 } } ) \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } + \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } t ^ { 2 } } } \\\\ & { } & { = ( \\frac { 2 } { t } - \\frac { 3 } { t ^ { 2 } } ) \\frac { L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { \\nu ^ { 2 } } \\leq \\frac { 2 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { ( t + 1 ) \\nu ^ { 2 } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 421, + 1846, + 504, + 1846, + 504, + 1877, + 421, + 1877 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 526, + 282, + 609, + 282, + 609, + 313, + 526, + 313 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { \\nu t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1550, + 1186, + 1550, + 1186, + 1572, + 1126, + 1572 + ], + "score": 0.93, + "latex": "k + 1" + }, + { + "category_id": 14, + "poly": [ + 353, + 1637, + 1297, + 1637, + 1297, + 1819, + 353, + 1819 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { \\displaystyle \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F ( { \\pmb x } _ { t } ) - F ( { \\pmb x } ) ] \\leq \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T - k } } + \\frac { 1 } { 2 } \\displaystyle \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } \\| ^ { 2 } ] \\left( \\frac { 1 } { n _ { t } } - \\frac { 1 } { n _ { t - 1 } } \\right) } & { } \\\\ { - \\frac { \\mathbb { E } [ \\| { \\pmb x } _ { T + 1 } - { \\pmb x } \\| ^ { 2 } ] } { 2 \\eta _ { T } } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = T - k } ^ { T } \\eta _ { t } . } & { } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 438, + 1441, + 1263, + 1441, + 1263, + 1511, + 438, + 1511 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ \\langle x _ { t } - x , \\nabla F \\left( x _ { t } \\right) \\rangle ] \\leq \\frac { \\mathbb { E } [ \\Vert x _ { t } - x \\Vert ^ { 2 } ] - \\mathbb { E } [ \\Vert x _ { t + 1 } - x \\Vert ^ { 2 } ] } { 2 \\eta _ { t } } + \\frac { \\eta _ { t } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 831, + 1576, + 994, + 1576, + 994, + 1602, + 831, + 1602 + ], + "score": 0.93, + "latex": "F \\left( { \\pmb x } _ { t } \\right) - F \\left( { \\pmb x } \\right)" + }, + { + "category_id": 14, + "poly": [ + 669, + 333, + 1027, + 333, + 1027, + 394, + 669, + 394 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\| \\pmb { x } _ { t } - \\pmb { x } _ { * } \\| ^ { 2 } ] \\le \\frac { 2 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { t \\nu ^ { 2 } } ," + }, + { + "category_id": 14, + "poly": [ + 345, + 1957, + 1279, + 1957, + 1279, + 2043, + 345, + 2043 + ], + "score": 0.92, + "latex": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { \\nu } { 2 } \\sum _ { t = T - k + 1 } ^ { T } \\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ] + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } ." + }, + { + "category_id": 13, + "poly": [ + 677, + 1549, + 839, + 1549, + 839, + 1575, + 677, + 1575 + ], + "score": 0.91, + "latex": "\\{ 1 , \\ldots , \\lfloor { T / 2 } \\rfloor \\}" + }, + { + "category_id": 14, + "poly": [ + 340, + 471, + 1316, + 471, + 1316, + 558, + 340, + 558 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\| x _ { t + 1 } - x _ { * } \\| ^ { 2 } = \\| x _ { t } - \\eta _ { t } g _ { t } - \\eta _ { t } z _ { t } - x _ { * } \\| ^ { 2 } } \\\\ & { \\qquad = \\| x _ { t } - x _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle x _ { t } - x _ { * } , g _ { t } + z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| g _ { t } \\right\\| ^ { 2 } - 2 \\eta _ { t } ^ { 2 } \\langle g _ { t } , z _ { t } \\rangle + \\eta _ { t } ^ { 2 } \\left\\| z _ { t } \\right\\| ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 338, + 954, + 395, + 954, + 395, + 971, + 338, + 971 + ], + "score": 0.9, + "latex": "t = 2" + }, + { + "category_id": 14, + "poly": [ + 428, + 808, + 1270, + 808, + 1270, + 896, + 428, + 896 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\begin{array} { r } { \\mathbb { E } _ { z _ { t } , z _ { t - 1 } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] \\leq \\left( 1 - 2 \\nu _ { t } \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } \\\\ { \\leq \\left( 1 - 2 \\nu \\eta _ { t } \\right) \\mathbb { E } _ { z _ { t - 1 } } [ \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] + \\eta _ { t } ^ { 2 } L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) . } \\end{array} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 817, + 1007, + 874, + 1007, + 874, + 1025, + 817, + 1025 + ], + "score": 0.9, + "latex": "t > 2" + }, + { + "category_id": 13, + "poly": [ + 616, + 756, + 666, + 756, + 666, + 773, + 616, + 773 + ], + "score": 0.9, + "latex": "{ \\boldsymbol { z } } _ { t - 1 }" + }, + { + "category_id": 14, + "poly": [ + 408, + 629, + 1291, + 629, + 1291, + 718, + 408, + 718 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t + 1 } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] = \\mathbb { E } _ { z _ { t } , i _ { t } } [ \\| { \\boldsymbol x } _ { t } - \\eta _ { t } { \\boldsymbol g } _ { t } - \\eta _ { t } z _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\qquad \\le \\| { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } \\| ^ { 2 } - 2 \\eta _ { t } \\langle { \\boldsymbol x } _ { t } - { \\boldsymbol x } _ { * } , \\nabla F ( { \\boldsymbol x } _ { t } ) \\rangle + \\eta _ { t } ^ { 2 } L ^ { 2 } + p \\eta _ { t } ^ { 2 } L ^ { 2 } \\sigma ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1856, + 1283, + 1856, + 1283, + 1873, + 1171, + 1873 + ], + "score": 0.9, + "latex": "{ \\pmb x } = { \\pmb x } _ { T - k }" + }, + { + "category_id": 13, + "poly": [ + 591, + 1574, + 789, + 1574, + 789, + 1602, + 591, + 1602 + ], + "score": 0.89, + "latex": "\\langle { \\pmb x } _ { t } - { \\pmb x } , \\nabla F \\left( { \\pmb x } _ { t } \\right) \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1381, + 1070, + 1381, + 1070, + 1396, + 1041, + 1396 + ], + "score": 0.89, + "latex": "^ { x \\ast }" + }, + { + "category_id": 13, + "poly": [ + 889, + 598, + 913, + 598, + 913, + 613, + 889, + 613 + ], + "score": 0.88, + "latex": "\\scriptstyle { \\mathcal { Z } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 871, + 1381, + 888, + 1381, + 888, + 1393, + 871, + 1393 + ], + "score": 0.88, + "latex": "\\textbf { \\em x }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 286, + 1306, + 286, + 1306, + 307, + 1248, + 307 + ], + "score": 0.82, + "latex": "t > 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 1548, + 361, + 1548, + 361, + 1569, + 345, + 1569 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 953, + 293, + 980, + 293, + 980, + 307, + 953, + 307 + ], + "score": 0.81, + "latex": "_ { x t }" + }, + { + "category_id": 13, + "poly": [ + 489, + 434, + 503, + 434, + 503, + 452, + 489, + 452 + ], + "score": 0.68, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 283, + 1154, + 283, + 1154, + 306, + 1137, + 306 + ], + "score": 0.32, + "latex": "\\mathcal { Q }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1302.0, + 1404.0, + 1302.0, + 1404.0, + 1334.0, + 1378.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1542.0, + 344.0, + 1542.0, + 344.0, + 1578.0, + 296.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1542.0, + 676.0, + 1542.0, + 676.0, + 1578.0, + 362.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1542.0, + 1125.0, + 1542.0, + 1125.0, + 1578.0, + 840.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1578.0, + 1187.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1567.0, + 590.0, + 1567.0, + 590.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1567.0, + 830.0, + 1567.0, + 830.0, + 1606.0, + 790.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1567.0, + 1008.0, + 1567.0, + 1008.0, + 1606.0, + 995.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1365.0, + 870.0, + 1365.0, + 870.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1365.0, + 1040.0, + 1365.0, + 1040.0, + 1401.0, + 889.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1401.0, + 1071.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 538.0, + 1397.0, + 538.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1834.0, + 420.0, + 1834.0, + 420.0, + 1886.0, + 288.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1834.0, + 1170.0, + 1834.0, + 1170.0, + 1886.0, + 505.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1834.0, + 1411.0, + 1834.0, + 1411.0, + 1886.0, + 1284.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1869.0, + 331.0, + 1869.0, + 331.0, + 1904.0, + 292.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 912.0, + 920.0, + 912.0, + 920.0, + 960.0, + 291.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 912.0, + 1408.0, + 912.0, + 1408.0, + 960.0, + 1004.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 944.0, + 337.0, + 944.0, + 337.0, + 977.0, + 293.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 944.0, + 409.0, + 944.0, + 409.0, + 977.0, + 396.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 582.0, + 888.0, + 582.0, + 888.0, + 620.0, + 293.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 582.0, + 1276.0, + 582.0, + 1276.0, + 620.0, + 914.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 426.0, + 488.0, + 426.0, + 488.0, + 459.0, + 299.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 426.0, + 622.0, + 426.0, + 622.0, + 459.0, + 504.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 615.0, + 741.0, + 615.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 741.0, + 938.0, + 741.0, + 938.0, + 778.0, + 667.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 391.0, + 976.0, + 391.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 976.0, + 816.0, + 976.0, + 816.0, + 1035.0, + 704.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 976.0, + 945.0, + 976.0, + 945.0, + 1035.0, + 875.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 274.0, + 525.0, + 274.0, + 525.0, + 318.0, + 294.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 274.0, + 952.0, + 274.0, + 952.0, + 318.0, + 610.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 274.0, + 1136.0, + 274.0, + 1136.0, + 318.0, + 981.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 274.0, + 1247.0, + 274.0, + 1247.0, + 318.0, + 1155.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 274.0, + 1406.0, + 274.0, + 1406.0, + 318.0, + 1307.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 230.0, + 1005.0, + 230.0, + 1005.0, + 267.0, + 298.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 681, + 1404, + 681, + 1404, + 775, + 299, + 775 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 420, + 298, + 1278, + 298, + 1278, + 485, + 420, + 485 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 490, + 925, + 1209, + 925, + 1209, + 1171, + 490, + 1171 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 357, + 1422, + 1300, + 1422, + 1300, + 1863, + 357, + 1863 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 472, + 1254, + 1225, + 1254, + 1225, + 1351, + 472, + 1351 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 665, + 1981, + 1034, + 1981, + 1034, + 2046, + 665, + 2046 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 295, + 1895, + 1403, + 1895, + 1403, + 1965, + 295, + 1965 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 674, + 817, + 1023, + 817, + 1023, + 855, + 674, + 855 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 433, + 558, + 1236, + 558, + 1236, + 644, + 433, + 644 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 299, + 878, + 801, + 878, + 801, + 912, + 299, + 912 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 298, + 507, + 623, + 507, + 623, + 540, + 298, + 540 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 1369, + 1097, + 1369, + 1097, + 1406, + 299, + 1406 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 826, + 228, + 826, + 265, + 298, + 265 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 1203, + 711, + 1203, + 711, + 1237, + 297, + 1237 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 909, + 73, + 909, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1353, + 819, + 1400, + 819, + 1400, + 851, + 1353, + 851 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1353, + 584, + 1399, + 584, + 1399, + 616, + 1353, + 616 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1288, + 1400, + 1288, + 1400, + 1319, + 1352, + 1319 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1034, + 1400, + 1034, + 1400, + 1065, + 1352, + 1065 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1625, + 1400, + 1625, + 1400, + 1657, + 1352, + 1657 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1996, + 1400, + 1996, + 1400, + 2028, + 1352, + 2028 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1353, + 377, + 1400, + 377, + 1400, + 408, + 1353, + 408 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2114, + 835, + 2114 + ], + "score": 0.859 + }, + { + "category_id": 14, + "poly": [ + 358, + 1427, + 1295, + 1427, + 1295, + 1863, + 358, + 1863 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\mathbb { E } [ F ( { \\mathbf x } _ { t } ) - F ( { \\mathbf x } _ { * } ) ] = \\frac { \\nu \\left[ T / 2 \\right] \\mathbb { E } [ \\left. { \\mathbf x } _ { \\lfloor T / 2 \\rfloor } - \\alpha _ { * } \\right. ^ { 2 } ] } { 2 } + \\frac { \\nu } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\mathbb { E } [ \\left. { \\mathbf x } _ { t } - { \\mathbf x } _ { * } \\right. ^ { 2 } ] } \\\\ & { \\qquad + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 } \\displaystyle \\sum _ { t = \\lfloor T / 2 \\rfloor } ^ { T } \\frac { \\nu } { 2 } } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } + \\sum _ { t = \\lceil T / 2 \\rfloor } ^ { T } \\frac { 1 } { 2 t } ) } \\\\ & { \\qquad \\le \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } \\displaystyle ( 1 + \\frac { 3 } { 2 } \\sum _ { t = \\lfloor T / 2 \\rfloor + 1 } ^ { T } \\frac { 1 } { t } ) } \\\\ & { \\qquad \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 891, + 1375, + 973, + 1375, + 973, + 1406, + 891, + 1406 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\eta _ { t } = \\frac { 1 } { t \\nu } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 666, + 1982, + 1035, + 1982, + 1035, + 2043, + 666, + 2043 + ], + "score": 0.94, + "latex": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { \\ast } ) \\leq \\frac { 8 L ^ { 2 } ( 1 + p \\sigma ^ { 2 } ) } { T \\nu } ." + }, + { + "category_id": 14, + "poly": [ + 490, + 929, + 1208, + 929, + 1208, + 1176, + 490, + 1176 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { S _ { k - 1 } = \\displaystyle \\frac { k + 1 } { k } S _ { k } - \\frac { \\mathbb { E } \\left[ { \\pmb x } _ { T - k } \\right] } { k } } \\\\ { \\leq \\frac { k + 1 } { k } S _ { k } - \\frac { S _ { k } } { k } + \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\left( k + 1 \\right) T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 k \\left( k + 1 \\right) \\nu } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } } \\\\ { \\leq S _ { k } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\frac { 1 6 } { k T } + \\frac { 1 } { k \\left( k + 1 \\right) } \\displaystyle \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 473, + 233, + 661, + 233, + 661, + 263, + 473, + 263 + ], + "score": 0.93, + "latex": "\\mathbb { E } [ \\left. \\pmb { x } _ { t } - \\pmb { x } _ { T - k } \\right. ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 679, + 885, + 791, + 885, + 791, + 911, + 679, + 911 + ], + "score": 0.93, + "latex": "- \\mathbb { E } [ { \\pmb x } _ { T - k } ]" + }, + { + "category_id": 13, + "poly": [ + 473, + 1377, + 646, + 1377, + 646, + 1405, + 473, + 1405 + ], + "score": 0.93, + "latex": "S _ { \\lfloor T / 2 \\rfloor } - F ( \\pmb { x } _ { * } )" + }, + { + "category_id": 14, + "poly": [ + 475, + 1255, + 1227, + 1255, + 1227, + 1352, + 475, + 1352 + ], + "score": 0.93, + "latex": "S _ { 0 } \\leq S _ { \\lfloor T / 2 \\rfloor } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\left( \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } + \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k \\left( k + 1 \\right) t } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 346, + 685, + 658, + 685, + 658, + 719, + 346, + 719 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { S _ { k } = \\frac { 1 } { k + 1 } \\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) ] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 418, + 297, + 1276, + 297, + 1276, + 490, + 418, + 490 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { T - k } \\| ^ { 2 } ] \\le 2 \\mathbb { E } [ \\| { \\pmb x } _ { t } - { \\pmb x } _ { * } \\| ^ { 2 } ] + 2 \\mathbb { E } [ \\| { \\pmb x } _ { T - k } - { \\pmb x } _ { * } \\| ^ { 2 } ] } \\\\ & { \\le \\frac { 4 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { t } + \\frac { 1 } { T - k } \\right) \\le \\frac { 8 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { \\nu ^ { 2 } } \\left( \\frac { 1 } { T - k } \\right) } \\\\ & { \\le \\frac { 1 6 L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu ^ { 2 } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1167, + 690, + 1227, + 690, + 1227, + 711, + 1167, + 711 + ], + "score": 0.92, + "latex": "k + 1" + }, + { + "category_id": 13, + "poly": [ + 1320, + 723, + 1348, + 723, + 1348, + 744, + 1320, + 744 + ], + "score": 0.92, + "latex": "S _ { k }" + }, + { + "category_id": 13, + "poly": [ + 468, + 1210, + 699, + 1210, + 699, + 1236, + 468, + 1236 + ], + "score": 0.92, + "latex": "k = 1 , \\dots , k = \\lfloor T / 2 \\rfloor" + }, + { + "category_id": 13, + "poly": [ + 1244, + 1900, + 1406, + 1900, + 1406, + 1936, + 1244, + 1936 + ], + "score": 0.92, + "latex": "\\scriptstyle \\sum _ { t = \\lceil T / 2 \\rceil } ^ { T ^ { \\prime } } { \\frac { 1 } { t } } \\leq" + }, + { + "category_id": 13, + "poly": [ + 299, + 751, + 353, + 751, + 353, + 775, + 299, + 775 + ], + "score": 0.92, + "latex": "S _ { k - 1 }" + }, + { + "category_id": 14, + "poly": [ + 434, + 557, + 1236, + 557, + 1236, + 644, + 434, + 644 + ], + "score": 0.91, + "latex": "\\sum _ { t = T - k } ^ { T } \\mathbb { E } [ F \\left( \\pmb { x } _ { t } \\right) - F \\left( \\pmb { x } _ { T - k } \\right) ] \\leq \\frac { 8 k L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { T \\nu } + \\frac { L ^ { 2 } \\left( 1 + p \\sigma ^ { 2 } \\right) } { 2 \\nu } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { t } ." + }, + { + "category_id": 13, + "poly": [ + 492, + 721, + 871, + 721, + 871, + 748, + 492, + 748 + ], + "score": 0.91, + "latex": "S _ { 0 } - F \\left( { \\pmb x } _ { * } \\right) = \\mathbb { E } [ F \\left( { \\pmb x } _ { T } \\right) ] - F \\left( { \\pmb x } _ { * } \\right)" + }, + { + "category_id": 13, + "poly": [ + 707, + 239, + 815, + 239, + 815, + 261, + 707, + 261 + ], + "score": 0.91, + "latex": "t \\geq T ^ { \\prime } - k" + }, + { + "category_id": 14, + "poly": [ + 676, + 820, + 1024, + 820, + 1024, + 852, + 676, + 852 + ], + "score": 0.9, + "latex": "k S _ { k - 1 } = \\left( k + 1 \\right) S _ { k } - \\mathbb { E } [ \\mathbf { x } _ { T - k } ] ." + }, + { + "category_id": 13, + "poly": [ + 753, + 1385, + 832, + 1385, + 832, + 1400, + 753, + 1400 + ], + "score": 0.89, + "latex": "{ \\boldsymbol { \\mathbf { \\mathit { x } } } } = { \\boldsymbol { \\mathbf { \\mathit { x } } } } _ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 598, + 1938, + 662, + 1938, + 662, + 1965, + 598, + 1965 + ], + "score": 0.86, + "latex": "\\lceil T / 2 \\rceil" + }, + { + "category_id": 13, + "poly": [ + 298, + 1938, + 365, + 1938, + 365, + 1965, + 298, + 1965 + ], + "score": 0.37, + "latex": "\\log ( 2 )" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 908.0, + 72.0, + 908.0, + 107.0, + 298.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 676.0, + 345.0, + 676.0, + 345.0, + 729.0, + 287.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 676.0, + 1166.0, + 676.0, + 1166.0, + 729.0, + 659.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 676.0, + 1411.0, + 676.0, + 1411.0, + 729.0, + 1228.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 715.0, + 491.0, + 715.0, + 491.0, + 749.0, + 293.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 715.0, + 1319.0, + 715.0, + 1319.0, + 749.0, + 872.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 715.0, + 1404.0, + 715.0, + 1404.0, + 749.0, + 1349.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 745.0, + 531.0, + 745.0, + 531.0, + 778.0, + 354.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1882.0, + 1243.0, + 1882.0, + 1243.0, + 1945.0, + 289.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1931.0, + 597.0, + 1931.0, + 597.0, + 1965.0, + 366.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1931.0, + 674.0, + 1931.0, + 674.0, + 1965.0, + 663.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 873.0, + 678.0, + 873.0, + 678.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 873.0, + 804.0, + 873.0, + 804.0, + 918.0, + 792.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 624.0, + 504.0, + 624.0, + 543.0, + 295.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1362.0, + 472.0, + 1362.0, + 472.0, + 1419.0, + 290.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 1362.0, + 752.0, + 1362.0, + 752.0, + 1419.0, + 647.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1362.0, + 890.0, + 1362.0, + 890.0, + 1419.0, + 833.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1362.0, + 1105.0, + 1362.0, + 1105.0, + 1419.0, + 974.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 223.0, + 472.0, + 223.0, + 472.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 223.0, + 706.0, + 223.0, + 706.0, + 269.0, + 662.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 223.0, + 829.0, + 223.0, + 829.0, + 269.0, + 816.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 467.0, + 1199.0, + 467.0, + 1241.0, + 295.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1199.0, + 713.0, + 1199.0, + 713.0, + 1241.0, + 700.0, + 1241.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 419, + 1177, + 1282, + 1177, + 1282, + 1301, + 419, + 1301 + ], + "score": 0.98, + "html": "
datasetAdultKDDCup99MNISTCovertypeGisetteReal-simRCV1
#records45220700006500058101260007230950000
#features1041147845450002095847236
#classes22107222
" + }, + { + "category_id": 8, + "poly": [ + 582, + 281, + 1119, + 281, + 1119, + 463, + 582, + 463 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1542, + 1404, + 1542, + 1404, + 1628, + 298, + 1628 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 621, + 536, + 1075, + 536, + 1075, + 608, + 621, + 608 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 654, + 861, + 1041, + 861, + 1041, + 945, + 654, + 945 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 619, + 704, + 1076, + 704, + 1076, + 774, + 619, + 774 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 295, + 1469, + 1399, + 1469, + 1399, + 1527, + 295, + 1527 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 297, + 1364, + 1264, + 1364, + 1264, + 1440, + 297, + 1440 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 639, + 1124, + 639, + 1124, + 688, + 298, + 688 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 492, + 785, + 492, + 785, + 524, + 298, + 524 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 805, + 759, + 805, + 759, + 843, + 298, + 843 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 909, + 73, + 909, + 106, + 297, + 106 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 295, + 224, + 1142, + 224, + 1142, + 267, + 295, + 267 + ], + "score": 0.913 + }, + { + "category_id": 6, + "poly": [ + 493, + 1119, + 1201, + 1119, + 1201, + 1153, + 493, + 1153 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1353, + 886, + 1400, + 886, + 1400, + 918, + 1353, + 918 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 556, + 1400, + 556, + 1400, + 588, + 1352, + 588 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1353, + 722, + 1400, + 722, + 1400, + 754, + 1353, + 754 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 356, + 1400, + 356, + 1400, + 387, + 1352, + 387 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 1375, + 974, + 1404, + 974, + 1404, + 1003, + 1375, + 1003 + ], + "score": 0.828 + }, + { + "category_id": 0, + "poly": [ + 293, + 1045, + 1296, + 1045, + 1296, + 1083, + 293, + 1083 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 293, + 1045, + 1296, + 1045, + 1296, + 1083, + 293, + 1083 + ], + "score": 0.112 + }, + { + "category_id": 14, + "poly": [ + 622, + 704, + 1079, + 704, + 1079, + 774, + 622, + 774 + ], + "score": 0.95, + "latex": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { p L ^ { 2 } \\log ( n ) l o g \\left( 1 / \\delta \\right) } { n ^ { 2 } \\epsilon ^ { 2 } \\nu } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 388, + 644, + 601, + 644, + 601, + 690, + 388, + 690 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\sigma ^ { 2 } = \\Theta \\left( \\frac { T l o g ( 1 / \\delta ) } { n ^ { 2 } \\epsilon ^ { 2 } } \\right) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 658, + 861, + 1044, + 861, + 1044, + 945, + 658, + 945 + ], + "score": 0.95, + "latex": "S _ { 0 } - F ( \\pmb { x } _ { * } ) = \\mathcal { O } \\left( \\frac { \\sqrt { p } L ^ { 2 } \\log ( n ) } { n \\epsilon \\nu } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 622, + 537, + 1079, + 537, + 1079, + 607, + 622, + 607 + ], + "score": 0.94, + "latex": "S _ { 0 } - F ( { \\pmb x } _ { * } ) = \\mathcal { O } \\left( \\frac { ( 1 + p \\sigma ^ { 2 } ) L ^ { 2 } \\log ( T ) } { T \\nu } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 401, + 231, + 681, + 231, + 681, + 266, + 401, + 266 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { 1 6 } { k T } \\leq \\frac { 1 6 ( 1 + l o g ( T ) ) } { T } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 584, + 284, + 1120, + 284, + 1120, + 467, + 584, + 467 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\sum _ { t = T - k } ^ { T } \\frac { 1 } { k ( k + 1 ) t } \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ( k + 1 ) } } } \\\\ & { } & { \\le \\sum _ { k = 1 } ^ { \\lfloor T / 2 \\rfloor } \\frac { \\log ( 2 ) } { k ^ { 2 } } \\le 2 \\log ( 2 ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 343, + 814, + 430, + 814, + 430, + 846, + 343, + 846 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { T = \\frac { \\pi \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 577, + 810, + 651, + 810, + 651, + 838, + 577, + 838 + ], + "score": 0.93, + "latex": "p < n ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 757, + 653, + 811, + 653, + 811, + 679, + 757, + 679 + ], + "score": 0.92, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 913, + 651, + 1016, + 651, + 1016, + 673, + 913, + 673 + ], + "score": 0.92, + "latex": "T = n ^ { 2 } \\epsilon ^ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1362.0, + 1267.0, + 1362.0, + 1267.0, + 1403.0, + 297.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1401.0, + 1102.0, + 1401.0, + 1102.0, + 1442.0, + 522.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 908.0, + 72.0, + 908.0, + 107.0, + 298.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1117.0, + 1204.0, + 1117.0, + 1204.0, + 1155.0, + 494.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2086.0, + 867.0, + 2086.0, + 867.0, + 2120.0, + 828.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1008.0, + 1377.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1042.0, + 1300.0, + 1042.0, + 1300.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1540.0, + 1404.0, + 1540.0, + 1404.0, + 1575.0, + 295.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1569.0, + 1404.0, + 1569.0, + 1404.0, + 1600.0, + 293.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1597.0, + 1408.0, + 1597.0, + 1408.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 1403.0, + 1471.0, + 1403.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1496.0, + 1127.0, + 1496.0, + 1127.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 632.0, + 387.0, + 632.0, + 387.0, + 689.0, + 294.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 632.0, + 756.0, + 632.0, + 756.0, + 689.0, + 602.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 632.0, + 912.0, + 632.0, + 912.0, + 689.0, + 812.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 632.0, + 1129.0, + 632.0, + 1129.0, + 689.0, + 1017.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 490.0, + 786.0, + 490.0, + 786.0, + 527.0, + 296.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 795.0, + 342.0, + 795.0, + 342.0, + 856.0, + 289.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 795.0, + 576.0, + 795.0, + 576.0, + 856.0, + 431.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 795.0, + 760.0, + 795.0, + 760.0, + 856.0, + 652.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 208.0, + 400.0, + 208.0, + 400.0, + 283.0, + 284.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.25, + 221.5, + 1145.25, + 221.5, + 1145.25, + 267.5, + 548.25, + 267.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1042.0, + 1300.0, + 1042.0, + 1300.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 579, + 881, + 1117, + 881, + 1117, + 1280, + 579, + 1280 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 294, + 1311, + 1405, + 1311, + 1405, + 1377, + 294, + 1377 + ], + "score": 0.936 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 909, + 75, + 909, + 105, + 298, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.842 + }, + { + "category_id": 15, + "poly": [ + 595.0, + 916.0, + 639.0, + 916.0, + 639.0, + 937.0, + 595.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 990.0, + 639.0, + 990.0, + 639.0, + 1011.0, + 595.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 994.0, + 674.0, + 994.0, + 674.0, + 1008.0, + 657.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 995.0, + 720.0, + 995.0, + 720.0, + 1007.0, + 706.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 995.0, + 767.0, + 995.0, + 767.0, + 1007.0, + 754.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 996.0, + 815.0, + 996.0, + 815.0, + 1007.0, + 802.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 996.0, + 862.0, + 996.0, + 862.0, + 1007.0, + 850.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1010.0, + 1088.0, + 1010.0, + 1088.0, + 1034.0, + 1045.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1026.0, + 600.0, + 1026.0, + 600.0, + 1100.0, + 580.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1030.0, + 1109.0, + 1030.0, + 1109.0, + 1052.0, + 1047.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1049.0, + 1109.0, + 1049.0, + 1109.0, + 1072.0, + 1048.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1066.0, + 638.0, + 1066.0, + 638.0, + 1085.0, + 595.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1069.0, + 1107.0, + 1069.0, + 1107.0, + 1091.0, + 1046.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1088.0, + 1109.0, + 1088.0, + 1109.0, + 1111.0, + 1047.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1138.0, + 639.0, + 1138.0, + 639.0, + 1159.0, + 595.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1142.0, + 672.0, + 1142.0, + 672.0, + 1156.0, + 659.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1142.0, + 814.0, + 1142.0, + 814.0, + 1155.0, + 801.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1140.0, + 863.0, + 1140.0, + 863.0, + 1157.0, + 848.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1142.0, + 910.0, + 1142.0, + 910.0, + 1156.0, + 897.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1148.0, + 956.0, + 1148.0, + 956.0, + 1155.0, + 946.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1212.0, + 639.0, + 1212.0, + 639.0, + 1232.0, + 595.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1216.0, + 672.0, + 1216.0, + 672.0, + 1229.0, + 659.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1215.0, + 768.0, + 1215.0, + 768.0, + 1232.0, + 753.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1214.0, + 816.0, + 1214.0, + 816.0, + 1231.0, + 800.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1243.0, + 673.0, + 1243.0, + 673.0, + 1263.0, + 658.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1241.0, + 774.0, + 1241.0, + 774.0, + 1265.0, + 746.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1240.0, + 870.0, + 1240.0, + 870.0, + 1264.0, + 841.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1241.0, + 965.0, + 1241.0, + 965.0, + 1264.0, + 937.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1241.0, + 1060.0, + 1241.0, + 1060.0, + 1264.0, + 1032.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1260.0, + 931.0, + 1260.0, + 931.0, + 1284.0, + 828.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1352.0, + 293.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1343.0, + 1399.0, + 1343.0, + 1399.0, + 1379.0, + 296.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 910.0, + 72.0, + 910.0, + 107.0, + 297.0, + 107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2086.0, + 869.0, + 2086.0, + 869.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rkGG6s0qKQ/rkGG6s0qKQ.md b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ.md new file mode 100644 index 0000000000000000000000000000000000000000..38a43942cf706e4c14f7fe9d80e3bb3914e98e4a --- /dev/null +++ b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ.md @@ -0,0 +1,343 @@ +# THE GAN LANDSCAPE: LOSSES, ARCHITECTURES, REGULARIZATION, AND NORMALIZATION + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Generative adversarial networks (GANs) are a class of deep generative models which aim to learn a target distribution in an unsupervised fashion. While they were successfully applied to many problems, training a GAN is a notoriously challenging task and requires a significant amount of hyperparameter tuning, neural architecture engineering, and a non-trivial amount of “tricks”. The success in many practical applications coupled with the lack of a measure to quantify the failure modes of GANs resulted in a plethora of proposed losses, regularization and normalization schemes, and neural architectures. In this work we take a sober view of the current state of GANs from a practical perspective. We reproduce the current state of the art and go beyond fairly exploring the GAN landscape. We discuss common pitfalls and reproducibility issues, open-source our code on Github, and provide pre-trained models on TensorFlow Hub. + +# 1 INTRODUCTION + +Deep generative models are a powerful class of unsupervised machine learning models. The power of these models was recently harnessed in a variety of applications, including image generation, learned compression, and domain transfer (Isola et al., 2017; Radford et al., 2016; Agustsson et al., 2018; Tschannen et al., 2018). Generative adversarial networks (Goodfellow et al., 2014) are one of the main approaches to learning such models in a fully unsupervised fashion. The GAN framework can be viewed as a two-player game where the first player, the generator, is learning to transform some simple input distribution (usually a standard multivariate Normal or uniform) to a distribution on the space of images, such that the second player, the discriminator, cannot tell whether the samples belong to the true distribution or were synthesized. Both players aim to minimize their own loss and the solution to the game is the Nash equilibrium where neither player can improve their loss unilaterally. This powerful framework can also be derived by minimizing a divergence between the model distribution and the true distribution (Nowozin et al., 2016; Arjovsky et al., 2017). + +Training GANs involves solving a minimax problem over the parameters of the generator and the discriminator which are usually parameterized as deep convolutional neural networks. Consequently, this minimax problem is notoriously hard to solve in practice. As a result, a plethora of loss functions, regularization and normalization schemes, coupled with neural architecture choices, have been proposed (Goodfellow et al., 2014; Salimans et al., 2016; Miyato et al., 2018; Gulrajani et al., 2017; Arjovsky et al., 2017; Mao et al., 2016). + +Our contributions. In this work we provide a thorough empirical analysis of these competing approaches, and help the researchers and practitioners navigate this space. We first define the GAN landscape – the set of loss functions, normalization and regularization schemes, and the most commonly used architectures. We explore this search space on several modern large-scale data sets by means of hyperparameter optimization, considering both “good” sets of hyperparameters reported in the literature, as well as ones obtained by Gaussian Process regression. By analyzing the impact of the loss function, we conclude that the non-saturating loss is sufficiently stable across data sets, architectures and hyperparameters. We then proceed to decompose the effect of various normalization and regularization schemes, as well as varying architectures. We show that both gradient penalty (Gulrajani et al., 2017) as well as spectral normalization (Miyato et al., 2018) are useful in the context of high-capacity architectures. Finally, we discuss some common pitfalls, reproducibility issues, and practical considerations. We provide reference implementations, including training and evaluation code on Github1 and provide pre-trained models on TensorFlow Hub.2 + +# 2 THE GAN LANDSCAPE + +# 2.1 LOSS FUNCTIONS + +Let $P$ denote the target (true) distribution and $Q$ the model distribution. Goodfellow et al. (2014) suggest two loss functions: the minimax GAN and the non-saturating (NS) GAN. In the former the discriminator minimizes the negative log-likelihood for the binary classification task. In the latter the generator maximizes the probability of generated samples being real. In this work we consider the non-saturating loss as it is known to outperform the minimax variant. The corresponding loss functions are $\mathcal { L } _ { \mathrm { { D } } } = - \mathbb { E } _ { \boldsymbol { x } \sim P } [ \log ( D ( \boldsymbol { x } ) ) ] - \mathbb { E } _ { \hat { \boldsymbol { x } } \sim Q } [ \log ( 1 - D ( \boldsymbol { \hat { x } } ) ) ]$ and $\mathcal { L } _ { \mathrm { G } } = - \mathbb { E } _ { \hat { x } \sim Q } [ \bar { \log ( D ( \hat { x } ) ) } ]$ . + +In Wasserstein GAN (WGAN) (Arjovsky et al., 2017) the authors propose to consider the Wasserstein divergence instead of the original Jensen-Shannon (JS). In particular, under the optimal discriminator, minimizing the proposed value function with respect to the generator minimizes the Wasserstein distance between $P$ and $Q$ . The drawback is that one has to ensure a 1-Lipschitz discriminator due to exploited Kantorovich-Rubenstein duality. The corresponding loss functions are $\mathcal { L } _ { \mathrm { D } } ~ =$ $- \mathbb { E } _ { x \sim P } [ D ( x ) ] + \mathbb { E } _ { \hat { x } \sim Q } [ D ( \hat { x } ) ]$ and $\mathcal { L } _ { \mathrm { G } } = - \mathbb { E } _ { \hat { x } \sim Q } [ D ( \hat { x } ) ]$ . + +Finally, we consider the least-squares loss (LS) which corresponds to minimizing the Pearson $\chi ^ { 2 }$ divergence between $P$ and $Q$ (Mao et al., 2016). The intuition is that this loss function is smooth and saturates slower than the sigmoid cross-entropy loss of the JS formulation. The corresponding loss functions are $\mathcal { L } _ { \mathrm { D } } = - \mathbb { E } _ { x \sim P } \overline { { [ ( D ( x ) - 1 ) ^ { 2 } ] } } + \tilde { \mathbb { E } } _ { \hat { x } \sim Q } [ D ( \hat { x } ) ^ { 2 } ]$ and $\mathcal { L } _ { \mathrm { G } } = - \mathbb { E } _ { \hat { x } \sim Q } [ ( D ( \hat { x } ) { \bar { - } } 1 ) ^ { 2 } ]$ ]. + +# 2.2 REGULARIZATION AND NORMALIZATION OF THE DISCRIMINATOR + +Gradient norm penalty. In the context of Wasserstein GANs this penalty can be interpreted as a soft penalty for the violation of 1-Lipschitzness (WGAN GP) (Gulrajani et al., 2017). Hereby, the gradient is evaluated on a linear interpolation between training points and generated samples as a proxy to the optimal coupling. The gradient penalty can also be evaluated around the data manifold which encourages the discriminator to be piece-wise linear in that region (Dragan) (Kodali et al., 2017). However, the gradient norm penalty can be considered purely as a regularizer for the discriminator and it was shown that it can improve the performance for other losses (Fedus et al., 2018). Furthermore, the penalty can be scaled by the “confidence” of the discriminator in the context of f-divergences (Roth et al., 2017). A drawback of gradient penalty (GP) regularization scheme is that it can depend on the model distribution $Q$ which changes during training. One drawback of Dragan is that it is unclear to which extent the Gaussian assumption for the manifold holds. Finally, computing the gradient norms implies a non-trivial running time penalty – essentially doubling the running time. We also investigate the impact of a regularizer ubiquitous in supervised learning – the $L _ { 2 }$ penalty on all the weights of the network. + +Discriminator normalization. Normalizing the discriminator can be useful from both the optimization perspective (more efficient gradient flow, a more stable optimization), as well as from the representation perspective – the representation richness of the layers in a neural network depends on the spectral structure of the corresponding weight matrices (Miyato et al., 2018). + +From the optimization point of view, several techniques have found their way into the GAN literature, namely batch normalization (BN) (Ioffe and Szegedy, 2015) and layer normalization (LN) (Ba et al., 2016). Batch normalization in the context of GANs was suggested by Denton et al. (2015) and further popularized by Radford et al. (2016). It normalizes the pre-activations of nodes in a layer to mean $\beta$ and standard deviation $\gamma$ , where both $\beta$ and $\gamma$ are parameters learned for each node in the layer. The normalization is done on the batch level and for each node separately. In contrast, with Layer normalization, all the hidden units in a layer share the same normalization terms $\beta$ and $\gamma$ , but different samples are normalized differently (Ba et al., 2016). Layer normalization was first applied in the context of GANs in Gulrajani et al. (2017). + +From the representation point of view, one has to consider the neural network as a composition of (possibly non-linear) mappings and analyze their spectral properties. In particular, for the discriminator to be a bounded linear operator it suffices to control the maximum singular value. This approach is followed in Miyato et al. (2018) where the authors suggest dividing each weight matrix, including the matrices representing convolutional kernels, by their spectral norm. Furthermore, the authors argue that a key advantage of spectral normalization over competing approaches is that it results in discriminators of higher rank. + +# 2.3 GENERATOR AND DISCRIMINATOR ARCHITECTURE + +We explore two classes of architectures in this study: deep convolutional generative adversarial networks (DCGAN) (Radford et al., 2016) and residual networks (ResNet) (He et al., 2016), both of which are ubiquitous in GAN research. Recently, Miyato et al. (2018) defined a variation of DCGAN, so called SNDCGAN. Apart from minor updates (cf. Section 4) the main difference to DCGAN is the use of an eight-layer discriminator network. The details of both networks are summarized in Table 3. The other architecture, ResNet19, is an architecture with five ResNet blocks in the generator and six ResNet blocks in the discriminator, that can operate on $1 2 8 \times 1 2 8$ images. We follow the ResNet setup from Miyato et al. (2018), with the small difference that we simplified the design of the discriminator. The detailed parameters of discriminator and generator are summarized in Table 4a and Table 4b. With this setup we were able to reproduce the current state of the art results. An ablation study on various ResNet modifications is available in the Appendix. + +# 2.4 EVALUATION METRICS + +We focus on several recently proposed metrics well suited to the image domain. For an in-depth overview of quantitative metrics we refer the reader to (Borji, 2018). + +Inception Score (IS). Proposed by Salimans et al. (2016), IS offers a way to quantitatively evaluate the quality of generated samples. Intuitively, the conditional label distribution of samples containing meaningful objects should have low entropy, and the variability of the samples should be high. which can be expressed as $\scriptstyle \mathtt { I S } = \exp ( \mathbb { E } _ { x \sim Q } [ d _ { K L } ^ { \sim } ( p ( y \mid x ) , p ( y ) ) ] )$ . The authors found that this score is well-correlated with scores from human annotators. Drawbacks include insensitivity to the prior distribution over labels and not being a proper distance. + +As an alternative Heusel et al. (2017) proposed the Frechet Inception Distance (FID). Samples from $P$ and $Q$ are first embedded into a feature space (a specific layer of InceptionNet). Then, assuming that the embedded data follows a multivariate Gaussian distribution, the mean and covariance are estimated. Finally, the Frechet distance between these two Gaussians is computed, i.e. ´ + +$$ +\begin{array} { r } { \mathtt { F I D } = | | \mu _ { x } - \mu _ { y } | | _ { 2 } ^ { 2 } + \operatorname { T r } \big ( \Sigma _ { x } + \Sigma _ { y } - 2 \big ( \Sigma _ { x } \Sigma _ { y } \big ) ^ { \frac { 1 } { 2 } } \big ) , } \end{array} +$$ + +where $\left( \mu _ { x } , \Sigma _ { x } \right)$ , and $( \mu _ { y } , \Sigma _ { y } )$ are the mean and covariance of the embedded samples from $P$ and $Q$ , respectively. The authors argue that FID is consistent with human judgment and more robust to noise than IS. Furthermore, the score is sensitive to the visual quality of generated samples – introducing noise or artifacts in the generated samples will reduce the FID. In contrast to IS, FID can detect intra-class mode dropping, i.e. a model that generates only one image per class can score a perfect IS, but will suffer from have a high FID (Lucic et al., 2018). Binkowski et al. ´ (2018) argued that FID has no unbiased estimator and suggest Kernel Inception distance (KID) instead. In Appendix B we empirically compare KID to FID and observe that both metrics are very strongly correlated (Spearman rank-order correlation coefficient of 0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets). As a result we focus on FID as it is likely to result in the same ranking. + +Multi-scale Structural Similarity for Image Quality (MS-SSIM) and Diversity. A critical issue in GANs are mode collapse and mode-dropping – failing to capture a mode, or low-diversity of generated samples from a given mode. The MS-SSIM score (Wang et al., 2003) is used for measuring the similarity of two images where higher MS-SSIM score indicates more similar images. Several recent works suggest using the average pairwise MS-SSIM score within a given class as a proxy for the diversity of generated samples (Odena et al., 2017; Fedus et al., 2018). The drawback of this approach is that we do not know the class corresponding to the generated sample, so it is usually applied on one-class data sets, such as CELEBA-HQ-128. In this work we use the same setup as in Fedus et al. (2018). In particular, given a batch size $b$ , we compute the average pairwise MS-SSIM score on 5 batches, of $5 \times b \times ( b - 1 ) / 2$ image pairs in total. We stress that the diversity should only be taken into account together with the FID and $I S$ metrics. + +Table 1: Hyperparameter ranges used in this study. The Cartesian product of the fixed values suffices to uncover the existing results. Gaussian Process optimization in the bandit setting (Srinivas et al., 2010) is used to select good hyperparameter settings from the specified ranges. +(a) Fixed values + +
PARAMETERDISCRETE VALUE
Learning rate α{0.0002,0.0001,0.001}
Reg. strength 入{1,10}
(β1,β2,ndis){(0.5,0.900,5), (0.5,0.999,1), (0.5,0.999,5), (0.9,0.999,5)}
+ +(b) Gaussian Process regression ranges + +
PARAMETERRANGELOG
Learning rate α[10-5,10-2]Yes
入 for L2[10-4,101]Yes
入 for non-L2[10-1,102]Yes
β1×β[0,1] × [0,1]No
+ +# 2.5 DATA SETS + +We consider three data sets, namely CIFAR10, CELEBA-HQ-128, and LSUN-BEDROOM. The LSUN-BEDROOM data set (Yu et al., 2015) contains slightly more than 3 million images3. We randomly partition the images into a train and test set whereby we use 30588 images as the test set. Secondly, we use the CELEBA-HQ data set of 30k images (Karras et al., 2018). We use the $1 2 8 \times 1 2 8 \times 3$ version obtained by running the code provided by the authors.4 We use 3000 examples as the test set and the remaining examples as the training set. Finally, we also include the CIFAR10 data set which contains 70K images $\left( 3 2 \mathbf { x } 3 2 \mathbf { x } 3 \right)$ , partitioned into 60000 training instances and 10000 testing instances. The baseline FID scores are 12.6 for CELEBA-HQ-128, 3.8 for LSUN-BEDROOM, and 5.19 for CIFAR10. Details on FID computation are presented in Section 4. + +# 2.6 EXPLORING THE GAN LANDSCAPE + +The search space for GANs is prohibitively expensive: exploring all combinations of all losses, normalization and regularization schemes, and architectures is outside of the practical realm. Instead, in this study we analyze several slices of this tensor for each data set. In particular, to ensure that we can reproduce existing results, we perform a study over the subset of this tensor on CIFAR10. We then proceed to analyze the performance of these models across CELEBA-HQ-128 and LSUN-BEDROOM. In Section 3.1 we fix everything but the loss. In Section 3.2 we fix everything but the regularization and normalization scheme. Finally, in Section 3.3 we fix everything but the architecture. This allows us to decouple some of these design choices and provide some insight on what matters most. + +As noted in Lucic et al. (2018), one major issue preventing further progress is the hyperparameter tuning – currently, the community has converged to a small set of parameter values which work on some data sets, and may completely fail on others. In this study we combine the best hyperparameter settings found in the literature (Miyato et al., 2018), and perform Gaussian Process regression in the bandit setting (Srinivas et al., 2010) to possibly uncover better hyperparameter settings. We then consider the top performing models and discuss the impact of the computational budget. + +We summarize the fixed hyperparameter settings in Table 1a which contains the “good” parameters reported in recent publications (Fedus et al., 2018; Miyato et al., 2018; Gulrajani et al., 2017). In particular, we consider the cross product of these parameters to obtain 24 hyperparameter settings to reduce the bias. Finally, to provide a fair comparison, we perform Gaussian Process optimization in the bandit setting (Srinivas et al., 2010) on the parameter ranges provided in Table 1b. We run 12 rounds (i.e. we communicate with the oracle 12 times) of the optimization, each with a batch of 10 hyperparameter sets selected based on the FID scores from the results of the previous iterations. + +![](images/f7632ddba45f2ade2676217c086988ad49718568456061ecaba4e597982b4dfe.jpg) +Figure 1: Impact of the loss function: FID distribution for top $5 \%$ models. The non-saturating (NS) loss is stable over both data sets. Gradient penalty and spectral normalization improve the sample quality. From the computational budget perspective (i.e. how many models one needs to train to reach a certain FID), both spectral normalization and gradient penalty perform better than the baseline, but the former is more efficient. + +As we explore the number of discriminator updates per generator update (1 or 5), this leads to an additional 240 hyperparameter settings which in some cases outperform the previously known hyperparameter settings. Batch size is set to 64 for all the experiments. We use a fixed the number of discriminator update steps of 100K for LSUN-BEDROOM data set and CELEBA-HQ-128 data set, and 200K for CIFAR10 data set. We apply the Adam optimizer (Kingma and Ba, 2015). + +# 3 RESULTS AND DISCUSSION + +Given that there are 4 major components (loss, architecture, regularization, normalization) to analyze for each data set, it is infeasible to explore the whole landscape. Hence, we opt for a more pragmatic solution – we keep some dimensions fixed, and vary the others. For each experiment we highlight three aspects: (1) FID distribution of the top $5 \%$ of the trained models, (2) the corresponding sample diversity score, and (3) the tradeoff between the computational budget (i.e. number of models to train) and model quality in terms of FID. Each model was retrained 5 times with a different random seed and we report the median score. The variance for models obtained by Gaussian Process regression is handled implicitly so we train each model once. + +# 3.1 IMPACT OF THE LOSS FUNCTION + +Here the loss is either the non-saturating loss (NS) (Goodfellow et al., 2014), the least-squares loss (LS) (Mao et al., 2016), or the Wasserstein loss (WGAN) (Arjovsky et al., 2017). We use the ResNet19 with generator and discriminator architectures detailed in Table 4a. We consider the most prominent normalization and regularization approaches: gradient penalty (Gulrajani et al., 2017), and spectral normalization (Miyato et al., 2018). Both studies were performed on CELEBA-HQ-128 and LSUN-BEDROOM with hyperparameter settings shown in Table 1a. + +The results are presented in Figure 1. We observe that the non-saturating loss is stable over both data sets. Spectral normalization improves the quality of the model on both data sets. Similarly, the gradient penalty can help improve the quality of the model, but finding a good regularization tradeoff is non-trivial and requires a high computational budget. Models using the GP penalty benefit from 5:1 ratio of discriminator to generator updates as suggested by (Gulrajani et al., 2017). We also performed a study on hinge loss (Miyato et al., 2018) and present it in the Appendix. + +![](images/82e848101388335cba5420ecc90eab32f9659adccd2f642efa36a986d2c1d407.jpg) +Figure 2: Impact of regularization and normalization: FID distribution for top $5 \%$ models. Both gradient penalty (GP) and spectral normalization (SN) outperform the baseline and should be considered, while former being more computationally expensive. Unfortunately none fully address the stability issues. + +# 3.2 IMPACT OF REGULARIZATION AND NORMALIZATION + +The goal of this study is to compare the relative performance of various regularization and normalization methods presented in the literature. To this end, and based on the loss study, we fix the loss to non-saturating loss (Goodfellow et al., 2014). We use the ResNet19 with generator and discriminator architectures described in Table 4a. Finally, we consider batch normalization (BN) (Ioffe and Szegedy, 2015), layer normalization (LN) (Ba et al., 2016), spectral normalization (SN), gradient penalty (GP) (Gulrajani et al., 2017), dragan penalty (DR) (Kodali et al., 2017), or $L _ { 2 }$ regularization. We consider both CELEBA-HQ-128 and LSUN-BEDROOM with the hyperparameter settings shown in Table 1a and Table 1b. + +The results are presented in Figure 2. We observe that adding batch norm to the discriminator hurts the performance. Secondly, gradient penalty can help, but it doesn’t stabilize the training. In fact, it is non-trivial to strike a balance of the loss and regularization strength. Spectral normalization helps improve the model quality and is more computationally efficient than gradient penalty. This is consistent with recent results in Zhang et al. (2018). Similarly to the loss study, models using GP penalty benefit from 5:1 ratio of discriminator to generator updates. Furthermore, in a separate ablation study we observed that running the optimization procedure for an additional 100K steps is likely to increase the performance of the models with GP penalty. + +Impact of Simultaneous Regularization and Normalization. Given the folklore that the Lipschitz constant of the discriminator is critical for the performance, one may expect simultaneous regularization and normalization could improve model quality. To quantify this effect, we fix the loss to non-saturating loss (Goodfellow et al., 2014), use the Resnet19 architecture (as above), and combine several normalization and regularization schemes, with hyperparameter settings shown in Table 1a coupled with 24 randomly selected parameters. The results are presented in Figure 3. We observe that one may benefit from additional regularization and normalization. However, a lot of computational effort has to be invested for somewhat marginal gains in FID. Nevertheless, given enough computational budget we advocate simultaneous regularization and normalization – spectral normalization and layer normalization seem to perform well in practice. + +![](images/46e4df44d5fbb143416866b4220f7afea497ffb5bb5691af926e9d009ed5d8ec.jpg) +Figure 3: Impact of simultaneous normalization and regularization: FID distribution for top $5 \%$ models. Gradient penalty coupled with spectral normalization (SN) or layer normalization (LN) strongly improves the performance over the baseline. + +# 3.3 IMPACT OF GENERATOR AND DISCRIMINATOR ARCHITECTURES + +An interesting practical question is whether our findings also hold for a different model capacity. To this end, we also perform a study on SNDCGAN from Miyato et al. (2018). We consider the non-saturating GAN loss, gradient penalty and spectral normalization. While for smaller architectures regularization is not essential (Lucic et al., 2018), the regularization and normalization effects might become more relevant due to deeper architectures and optimization considerations. + +![](images/3e965e3c9706e0a9c32f50c8a17e42a830c7fba8c8e37ec83f2e9451c076d310.jpg) +Figure 4: Impact of the neural architectures: FID distribution for top $5 \%$ models. Both spectral normalization and gradient penalty can help improve upon the non-regularized baseline. + +The results are presented in Figure 4. We observe that both architectures achieve comparable results and benefit from regularization and normalization. Spectral normalization strongly outperforms the baseline for both architectures. + +# 4 COMMON PITFALLS + +In this section we focus on several pitfalls we encountered while trying to reproduce existing results and provide a fairly and accurate comparison. + +Metrics. There already seems to be a divergence in how the FID score is computed: (1) Some authors report the score on training data, yielding a FID between 50k training and $5 0 \mathrm { k }$ generated samples (Unterthiner et al., 2018). Some opt to report the FID based on 10k test samples and $5 \mathrm { k }$ generated samples and use a custom implementation (Miyato et al., 2018). Finally, Lucic et al. (2018) report the score with respect to the test data, in particular FID between 10k test samples, and 10k generated samples. The subtle differences will result in a mismatch between the reported FIDs, in some cases of more than $1 0 \%$ . We argue that FID should be computed with respect to the test data set as and use 10k test samples and 10k generated samples on CIFAR10 and LSUN-BEDROOM, and 3k vs 3k on CELEBA-HQ-128 as in in Lucic et al. (2018). Similarly, there are several ways to compute a diversity score using MS-SSIM and we follow the approach from Fedus et al. (2018). We provide the implementation details in Section G of the Appendix. + +Details of neural architectures. Even in popular architectures, like ResNet, there is still a number of design decision one needs to make, that are often omitted from the reported results. Those include the exact design of the ResNet cell (order of layers, when is ReLu applied, when to upsample and downsample, how many filters to use). Some of these differences might lead to potentially unfair comparison. As a result, we suggest to use the architectures presented within this work as a solid baseline. An ablation study on various ResNet modifications is available in the Appendix. + +Data sets. A common issue is related to data set processing – does LSUN-BEDROOM always correspond to the same data set? In most cases the precise algorithm for upscaling or cropping is not clear which introduces inconsistencies between results on the “same” data set. + +Implementation details and non-determinism. One major issue is the mismatch between the algorithm presented in a paper and the code provided online. We are aware that there is an embarrassingly large gap between a good implementation and a bad implementation of a given model. Hence, when no code is available, one is forced to guess which modifications were done. Another particularly tricky issue is removing randomness from the training process. After one fixes the data ordering and the initial weights, obtaining the same score by training the same model twice is non-trivial due to randomness present in certain GPU operations (Chetlur et al., 2014). Disabling the optimizations causing the non-determinism often results in an order of magnitude running time penalty. + +While each of these issues taken in isolation seems minor, they compound to create a mist which introduces friction in practical applications and the research process (Sculley et al., 2018). + +# 5 RELATED WORK + +A recent large-scale study on GANs and Variational Autoencoders was presented in Lucic et al. (2018). The authors consider several loss functions and regularizers, and study the effect of the loss function on the FID score, with low-to-medium complexity data sets (MNIST, CIFAR10, CELEBA), and a single (InfoGAN style) architecture. In this limited setting, the authors found that there is no statistically significant difference between recently introduced models and the original non-saturating GAN. A study of the effects of gradient-norm regularization in GANs was recently presented in Fedus et al. (2018). The authors posit that the gradient penalty can also be applied to the non-saturating GAN, and that, to a limited extent, it reduces the sensitivity to hyperparameter selection. In a recent work on spectral normalization, the authors perform a small study of the competing regularization and normalization approaches (Miyato et al., 2018). We are happy to report that we could reproduce these results and we present them in the Appendix. + +Inspired by these works and building on the available open-source code from Lucic et al. (2018), we take one additional step in all dimensions considered therein: more complex neural architectures, more complex data sets, and more involved regularization and normalization schemes. + +# 6 CONCLUSION + +In this work we study the GAN landscape: losses, regularization and normalization schemes, and neural architectures, and their impact on the on the quality of generated samples which we assess by recently introduced quantitative metrics. Our fair and thorough empirical evaluation suggests that one should consider non-saturating GAN loss and spectral normalization as default choices when applying GANs to a new data set. Given additional computational budget, we suggest adding the gradient penalty from Gulrajani et al. (2017) and train the model until convergence. Furthermore, additional marginal gains can be obtained by combining normalization and regularization empirically confirming the importance of the Lipschitz constant of the discriminator. Furthermore, both types of architectures proposed up-to this point perform reasonably well. A separate ablation study uncovered that most of the tricks applied in the ResNet style architectures lead to marginal changes in the quality and should be avoided due to the high computational cost. As a result of this large-scale study we identify the common pitfalls standing in the way of accurate and fair comparison and propose concrete actions to demystify the future results – issues with metrics, data set preprocessing, non-determinism, and missing implementation details are particularly striking. We hope that this work, together with the open-sourced reference implementations and trained models, will serve as a solid baseline for future GAN research. + +# REFERENCES + +Eirikur Agustsson, Michael Tschannen, Fabian Mentzer, Radu Timofte, and Luc Van Gool. Generative adversarial networks for extreme learned image compression. CoRR, abs/1804.02958, 2018. + +Mart´ın Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein generative adversarial networks. In ´ International Conference on Machine Learning (ICML), 2017. + +Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. + +Mikołaj Binkowski, Dougal J. Sutherland, Michael Arbel, and Arthur Gretton. Demystifying MMD GANs. In ´ International Conference on Learning Representations (ICLR), 2018. + +Ali Borji. Pros and cons of GAN evaluation measures. arXiv preprint arXiv:1802.03446, 2018. + +Sharan Chetlur, Cliff Woolley, Philippe Vandermersch, Jonathan Cohen, John Tran, Bryan Catanzaro, and Evan Shelhamer. cudnn: Efficient primitives for deep learning. arXiv preprint arXiv:1410.0759, 2014. + +Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a laplacian pyramid of adversarial networks. In Advances in Neural Information Processing Systems (NIPS), 2015. + +William Fedus, Mihaela Rosca, Balaji Lakshminarayanan, Andrew M Dai, Shakir Mohamed, and Ian Goodfellow. Many paths to equilibrium: Gans do not need to decrease a divergence at every step. In International Conference on Learning Representations (ICLR), 2018. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural Information Processing Systems (NIPS), 2014. + +Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training of Wasserstein GANs. Advances in Neural Information Processing Systems (NIPS), 2017. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016. + +Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and Sepp Hochre-¨ iter. GANs trained by a two time-scale update rule converge to a Nash equilibrium. Advances in Neural Information Processing Systems (NIPS), 2017. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. + +Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional adversarial networks. Computer Vision and Pattern Recognition (CVPR), 2017. + +Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality, stability, and variation. International Conference on Learning Representations (ICLR), 2018. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on Learning Representations (ICLR), 2015. + +Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of GANs. arXiv preprint arXiv:1705.07215, 2017. + +Mario Lucic, Karol Kurach, Marcin Michalski, Sylvain Gelly, and Olivier Bousquet. Are GANs created equal? A large-scale study. Advances in Neural Information Processing Systems (NIPS), 2018. + +Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, Zhen Wang, and Stephen Paul Smolley. Least squares generative adversarial networks. arXiv preprint ArXiv:1611.04076, 2016. + +Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. International Conference on Learning Representations (ICLR), 2018. + +Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using variational divergence minimization. In Advances in Neural Information Processing Systems (NIPS), 2016. + +Augustus Odena, Christopher Olah, and Jonathon Shlens. Conditional image synthesis with auxiliary classifier GANs. In International Conference on Machine Learning (ICML), 2017. + +Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. International Conference on Learning Representations (ICLR), 2016. + +Kevin Roth, Aurelien Lucchi, Sebastian Nowozin, and Thomas Hofmann. Stabilizing training of generative adversarial networks through regularization. In Advances in Neural Information Processing Systems, 2017. + +Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In Advances in Neural Information Processing Systems (NIPS), 2016. + +D. Sculley, Jasper Snoek, Alex Wiltschko, and Ali Rahimi. Winner’s curse? On pace, progress, and empirical rigor, 2018. + +Niranjan Srinivas, Andreas Krause, Sham Kakade, and Matthias W. Seeger. Gaussian process optimization in the bandit setting: No regret and experimental design. In International Conference on Machine Learning (ICML), 2010. + +Michael Tschannen, Eirikur Agustsson, and Mario Lucic. Deep generative models for distribution-preserving lossy compression. Advances in Neural Information Processing Systems (NIPS), 2018. + +Thomas Unterthiner, Bernhard Nessler, Calvin Seward, Gnter Klambauer, Martin Heusel, Hubert Ramsauer, and Sepp Hochreiter. Coulomb GANs: Provably optimal nash equilibria via potential fields. In International Conference on Learning Representations (ICLR), 2018. + +Zhou Wang, Eero P Simoncelli, and Alan C Bovik. Multiscale structural similarity for image quality assessment. In Asilomar Conference on Signals, Systems and Computers, 2003. + +Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. Lsun: Construction of a large-scale image dataset using deep learning with humans in the loop. arXiv preprint arXiv:1506.03365, 2015. + +Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial networks. arXiv preprint arXiv:1805.08318, 2018. + +# A FID AND INCEPTION SCORES ON CIFAR10 + +We present an empirical study with SNDCGAN and ResNet CIFAR architectures on CIFAR10 in figure 5 and figure 6. In addition to Section 3.1, we evaluate one more kind of loss on CIFAR10. Here HG, NS and WGAN stand for hinge loss, non saturating loss and Wasserstein loss respectively. We observe that hinge loss performs very similar to non-saturating loss. + +![](images/c164b1f15578e4a9ef02160d0cfbbfa32f06c4db8cef2e901de85c271df39446.jpg) +Figure 5: An empirical study with SNDCGAN and ResNet cifar architectures on CIFAR10. We recover the state of the art results recently reported in Miyato et al. (2018). + +![](images/9336b9938cfebbfb0ad26108c3d376665c6fce35dadf469e8a26634157b3acfa.jpg) +Figure 6: We show the Inception Score for each model within our study which corresponds to recently reported results (Miyato et al., 2018). + +# B COMPARISON OF FID AND KID METRICS + +The KID metric introduced by Binkowski et al. ´ (2018) is an alternative to FID. We use models from our Regularization and Normalization study (see Section 3.2) to compare both metrics. Here, by model we denote everything that needs to be specified for the training – including all hyper-parameters, like learning rate, $\lambda$ , Adam’s $\beta$ , etc. The Spearman rank-order correlation coefficient between KID and FID scores is approximately 0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets. + +To evaluate a practical setting of selecting several best models, we compare the intersection between the set of “best $K$ models by FID” and the set of “best $K$ models by KID” for $\bar { K } \in { 5 , 1 0 , 2 0 , 5 0 , 1 0 0 }$ . The results are summarized in Table 2. + +This experiment suggests that FID and KID metrics are very strongly correlated, and for the practical applications one can choose either of them. Also, the conclusions from our studies based on FID should transfer to studies based on KID. + +Table 2: Intersection between set of top $K$ experiments selected by FID and KID metrics. + +
LSUN-BEDROOM CELEBA-HQ-128
K=5 4/52/5
K=109/10 8/10
K=2018/20 15/20
K=50 49/5046/50
K=10095/100 98/100
+ +# C ARCHITECTURES + +# C.1 SNDCGAN + +We used the same architecture as Miyato et al. (2018), with the parameters copied from the GitHub page5. In Table 3a and Table 3b, we describe the operations in layer column with order. Kernel size is described in format [f ilter h, f ilter $_ - w$ , stride], input shape is $h \times w$ and output shape is $h \times w \times c h a n n e l s$ . The slopes of all lReLU functions are set to 0.1. The input shape $h \times w$ is $1 2 8 \times 1 2 8$ for CELEBA-HQ-128 and LSUN-BEDROOM, $3 2 \times 3 2$ for CIFAR10. + +Table 3: SNDCGAN architecture. + + +
(a) SNDCGANdiscriminator
LAYER KERNELOUTPUT
Conv, IReLU [3,3,1]h×w×64
Conv, IReLU [4,4,2]h/2 × w/2 × 128
Conv, IReLU [3,3,1]h/2 × w/2 × 128
Conv, lReLU [4,4,2]h/4 × w/4× 256
Conv, IReLU [3,3,1]h/4 × w/4 × 256
Conv, IReLU [4,4,2]h/8×w/8× 512
Conv, IReLU [3,3,1]h/8×w/8× 512
Linear 11
+ +(b) SNDCGAN generator + +
LAYERKERNEL OUTPUT
2 1128
Linear, BN, ReLUh/8×w/8× 512 1
Deconv, BN, ReLU [4,4,2]h/4 ×w/4 × 256
Deconv,BN,ReLU[4,4,2] h/2 × w/2 × 128
Deconv, BN, ReLU[4,4,2] h×w×64
Deconv, Tanh [3,3,1]h×w×3
+ +# C.2 RESNET ARCHITECTURE + +The ResNet19 architecture is described in Table 4. RS column stands for the resample of the residual block, with downscale(D)/upscale(U)/none(-) setting. MP stands for mean pooling and BN for batch normalization. ResBlock is defined in Table 5. The addition layer merges two paths by adding them. The first path is a shortcut layer with exactly one convolution operation, while the second path consists of two convolution operations. The downscale layer and upscale layer are marked in Table 5. We used average pool with kernel [2, 2, 2] for downscale, after the convolution operation. We used unpool from https://github.com/tensorflow/ tensorflow/issues/2169 for upscale, before convolution operation. $h$ and $w$ are the input shape to the ResNet block, output shape depends on the RS parameter. $c _ { i }$ and $c _ { o }$ are the input channels and output channels for a ResNet block. Table 6 described the ResNet CIFAR architecture we used in Figure 5 for reproducing the existing results. Note that RS is set to none for third ResBlock and fourth ResBlock in discriminator. In this case, we used the same ResNet block defined in Table 5 without resampling. + +Table 4: ResNet 19 architecture corresponding to “resnet small” in https://github.com/ pfnet-research/sngan_projection. +(a) ResNet19 discriminator + +
LAYERKERNELRS OUTPUT
ResBlock[3,3,1] D64 × 64× 64
ResBlock[3,3,1] D32 × 32 ×128
ResBlock[3,3,1] D16 ×16× 256
ResBlock[3,3,1] D8×8× 256
ResBlock[3,3,1] D4 ×4 × 512
ResBlock[3,3,1] D2 ×2× 512
ReLU, MP-512
Linear- -1
+ +(b) ResNet19 generator +Table 5: ResNet block definition. + +
LAYERKERNELRSOUTPUT
21128
Linear-14×4× 512
ResBlock[3,3,1]U8×8×512
ResBlock[3,3,1]U16 × 16× 256
ResBlock[3,3,1]U32 × 32 × 256
ResBlock[3,3,1]U64 × 64 × 128
ResBlock[3,3,1]U128 × 128 × 64
BN,ReLU11128 × 128 × 64
Conv[3,3,1]1128 × 128× 3
Sigmoid--128 × 128 × 3
+ +(a) ResBlock discriminator +Table 6: ResNet CIFAR architecture. + +
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]Dh/2 × w/2 × Co
BN,ReLU11hxwXCi
Conv[3,3,1]-h×w×co
BN,ReLU==h×w×co
Conv[3,3,1]Dh/2 × w/2 ×Co
Addition--h/2 × w/2 × Co
+ +(b) ResBlock generator + +
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]U2h× 2w XCo
BN, ReLU1-h×wXCi
Conv BN, ReLU[3,3,1]U2h ×2w×Co
-12h × 2w ×Co
[3,3,1]12h ×2w×Co
Conv Addition--2h × 2w X Co
+ +(a) ResNet CIFAR discriminator + +
LAYERKERNELRS OUTPUT
ResBlock[3,3,1]D 16 × 16 × 128
ResBlock[3,3,1]D 8×8×128
ResBlock[3,3,1]8×8×128 -
ResBlock[3,3,1]- 8×8×128
ReLU, MP128 -
Linear-- 1
+ +(b) ResNet CIFAR generator + +
LAYERKERNELRSOUTPUT
2-128
Linear--4×4×256
ResBlock[3,3,1]U8×8× 256
ResBlock[3,3,1]U16 × 16 × 256
ResBlock[3,3,1]U32 × 32 × 256
BN, ReLU1132 × 32× 256
Conv[3,3,1]-32 × 32 × 3
Sigmoid1-32 × 32 × 3
+ +# D RESNET ARCHITECTURE ABLATION STUDY + +We have noticed six minor differences on Resnet architecture comparing to implementation from https: //github.com/pfnet-research/chainer-gan-lib/blob/master/common/net.py (Miyato et al., 2018). We did ablation study to verify the impact of these differences. Figure 7 shows the impact of the ablation study, with details described as following. + +• DEFAULT: ResNet CIFAR architecture with spectral normalization and non-saturating GAN loss. +• SKIP: Use input as output for the shortcut connection in the discriminator ResBlock. By default it was a conv layer with 3x3 kernel. +CIN: Use $c _ { i }$ for the discriminator ResBlock hidden layer output channels. By default it was $c _ { o }$ in our setup, while Miyato et al. (2018) used $c _ { o }$ for first ResBlock and $c _ { i }$ for the rest. OPT: Use an optimized setup for the first discriminator ResBlock, which includes: (1) no ReLU, (2) a conv layer for the shortcut connections, (3) use $c _ { o }$ instead of $c _ { i }$ in ResBlock. +CIN OPT: Use CIN and OPT together. It means the first ResBlock is optimized while the remaining ResBlocks use $c _ { i }$ for the hidden output channels. +• SUM: Use reduce sum for the discriminator output. By default it was reduce mean. +• TAN: Use tanh for the generator output, as well as range [-1, 1] for discriminator input. By default it was sigmoid and discriminator input range [0, 1]. +EPS: Use a bigger epsilon $\mathrm { 2 e - 5 }$ for generator batch normalization. By default it was 1e − 5 in TensorFlow. +• ALL: Apply all the above differences together. + +In the ablation study, the CIN experiment obtained the worst FID score. Combining with OPT, the CIN results were improved to the same level as the others which is reasonable because the first block has three input channels, which becomes a bottleneck for the optimization. Hence, using OPT and CIN together performs as well as the others. Overall, the impact of these differences are minor according to the study on CIFAR10. + +![](images/915843060e097817e89e5ef818f9f0c36cdf124f39cb363d94c6249fa26e25de.jpg) +Figure 7: Ablation study of ResNet architecture differences. The experiment codes are described in Section D. + +# E RECOMMENDED HYPERPARAMETER SETTINGS + +To make the future GAN training simpler, we propose a set of best parameters for three setups: (1) Best parameters without any regularizer. (2) Best parameters with only one regularizer. (3) Best parameters with at most two regularizers. Table 7, Table 8 and Table 9 summarize the top 2 parameters for SNDCGAN architecture, ResNet19 architecture and ResNet CIFAR architecture, respectively. Models are ranked according to the median FID score of five different random seeds with fixed hyper-parameters in Table 1a. Note that ranking models according to the best FID score of different seeds will achieve better but unstable result. Gaussian Process optimization hyper-parameters are not included in this table. For ResNet19 architecture with at most two regularizers, we have run it only once due to computational overhead. To show the model stability, we listed the best FID score out of five seeds from the same parameters in column best. Spectral normalization is clearly outperforms the other normalizers on SNDCGAN and ResNet CIFAR architectures, while on ResNet19 both layer normalization and spectral normalization work well. + +To visualize the FID score on each data set, Figure 8, Figure 9 and Figure 10 show the generated examples by GANs. We select the examples from the best FID run, and then increase the FID score for two more plots. + +Table 7: SNDCGAN parameters + +
DATA SETMEDIANBESTLR(×10-3)β1βndiscNORM
CIFAR1029.7528.660.1000.5000.999111
CIFAR1036.1233.230.2000.5000.9991==
CELEBA-HQ-12866.4263.130.1000.5000.99911
CELEBA-HQ-12867.3964.590.2000.5000.9991==
LSUN-BEDROOM180.36160.120.2000.5000.99911
LSUN-BEDROOM188.99162.000.1000.5000.99911
CIFAR1026.6625.270.2000.5000.9991SN
CIFAR1027.3226.970.1000.5000.9991SN
CELEBA-HQ-12831.1429.050.2000.5000.9991=SN
CELEBA-HQ-12833.5231.920.1000.5000.9991SN
LSUN-BEDROOM63.4658.130.2000.5000.9991SN
LSUN-BEDROOM74.6659.941.0000.5000.9991-SN
CIFAR1026.2326.010.2000.5000.99911SN+GP
CIFAR1026.6625.270.2000.5000.99911SN
CELEBA-HQ-12831.1330.800.1000.5000.999110GP
CELEBA-HQ-12831.1429.050.2000.5000.99911SN
LSUN-BEDROOM63.4658.130.2000.5000.9991=SN
LSUN-BEDROOM66.5865.750.2000.5000.999110GP
+ +Table 8: ResNet19 parameters + +
DATA SETMEDIANBESTLR(×10-3)βndiscNORM
CELEBA-HQ-12843.7339.100.1000.5000.9995
CELEBA-HQ-12843.7739.600.1000.5000.9991=-
LSUN-BEDROOM160.97119.580.1000.5000.9005
LSUN-BEDROOM161.70125.550.1000.5000.9005=1
CELEBA-HQ-12832.4628.520.1000.5000.9991=LN
CELEBA-HQ-12840.5836.370.2000.5000.9001LN
LSUN-BEDROOM70.3048.881.0000.5000.9991SN
LSUN-BEDROOM73.8460.540.1000.5000.9005-SN
CELEBA-HQ-12829.13=0.1000.5000.90051LN+DR
CELEBA-HQ-12829.650.2000.5000.90051GP
LSUN-BEDROOM55.720.2000.5000.90051LN+GP
LSUN-BEDROOM57.810.1000.5000.999110SN+GP
+ +# F WHICH PARAMETERS REALLY MATTER? + +For each architecture and hyper-parameter we estimate its impact on the final FID. Figure 11 presents heatmaps for hyperparameters, namely the learning rate, $\beta _ { 1 }$ , $\beta _ { 2 }$ , $n _ { d i s c }$ , and $\lambda$ for each combination of neural architecture and data set. + +# G VARIATIONS OF MS-SSIM + +We used the MS-SSIM scorer from TensorFlow with default power factors (Wang et al., 2003). Note that the default filter size for each scale layer is 11, the minimum image edge is $1 1 \times 2 ^ { 4 } = 1 7 6$ . To adapt it to CELEBA-HQ-128 data set with size $1 2 8 \times 1 2 8$ , we used the minimum of filter size 11 and image size in last scale layer to allow the computation followed the previous work (Fedus et al., 2018). + +Table 9: ResNet CIFAR parameters + +
DATA SETMEDIANBESTLR(×10-3)β1ndiscNORM
CIFAR1031.4028.120.2000.5000.9995==
CIFAR1033.7930.080.1000.5000.9995=1
CIFAR1023.5722.910.2000.5000.9995=SN
CIFAR1025.5024.210.1000.5000.99951SN
CIFAR1022.9822.730.2000.5000.99911SN+GP
CIFAR1023.5722.910.2000.5000.9995-SN
+ +![](images/8c414c042d882f1159a23063a0813130967a1b2a1edd717e9194cf65a2038b5d.jpg) +Figure 8: Examples generated by GANs on CELEBA-HQ-128 data set. + +![](images/786ca8fc171e60cd0ce2ba0004d5703869c528cf8d62a05307aaaa0a46d3dac5.jpg) +Figure 9: Examples generated by GANs on LSUN-BEDROOM data set. + +![](images/f1aa1099a3ce5eda2019dddd846b6c2bcea9f181181c9afb1322704faf348863.jpg) +Figure 10: Examples generated by GANs on CIFAR10 data set. + +![](images/d088858e2c8a8cdce82899931934b317604f9bbc30cf7186dc9ab1f5de9f6026.jpg) +(a) FID score of SNDCGAN on CIFAR10 + +![](images/7a4b30b761160941966aad9cf0ab6d3e235aa2b161986758303f170b1a6c47ad.jpg) + +![](images/6fdffed4172209843481fb9fb7c89d573d4d072037af4106b0d06c88c8ffef4a.jpg) +(b) FID score of SNDCGAN on CELEBA-HQ-128 + +![](images/caca60a47d429ab4c4922f440ad3bcacb75f73720679a37c1f0fc45fed5e22fe.jpg) +(c) FID score of SNDCGAN on LSUN-BEDROOM + +![](images/ab454109195ada56fe60611674239d53e1ad36fe16717cd09a8e2e4b60b42140.jpg) +(d) FID score of ResNet CIFAR on CIFAR10 + +![](images/ccd750f16de1b8efe3bdfea4b323d33e40ae824119fbb2a87ae4ec00eee859d8.jpg) +(e) FID score of ResNet19 on CELEBA-HQ-128 +Figure 11: Heat plots for hyper-parameters on each architecture and dataset combination. \ No newline at end of file diff --git a/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_content_list.json b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..e1bb68e6566187e4970c49d2055b62f4d53cd7a9 --- /dev/null +++ b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_content_list.json @@ -0,0 +1,1786 @@ +[ + { + "type": "text", + "text": "THE GAN LANDSCAPE: LOSSES, ARCHITECTURES, REGULARIZATION, AND NORMALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 733, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 195, + 398, + 223 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 261, + 544, + 275 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Generative adversarial networks (GANs) are a class of deep generative models which aim to learn a target distribution in an unsupervised fashion. While they were successfully applied to many problems, training a GAN is a notoriously challenging task and requires a significant amount of hyperparameter tuning, neural architecture engineering, and a non-trivial amount of “tricks”. The success in many practical applications coupled with the lack of a measure to quantify the failure modes of GANs resulted in a plethora of proposed losses, regularization and normalization schemes, and neural architectures. In this work we take a sober view of the current state of GANs from a practical perspective. We reproduce the current state of the art and go beyond fairly exploring the GAN landscape. We discuss common pitfalls and reproducibility issues, open-source our code on Github, and provide pre-trained models on TensorFlow Hub. ", + "bbox": [ + 233, + 292, + 764, + 458 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 488, + 336, + 503 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep generative models are a powerful class of unsupervised machine learning models. The power of these models was recently harnessed in a variety of applications, including image generation, learned compression, and domain transfer (Isola et al., 2017; Radford et al., 2016; Agustsson et al., 2018; Tschannen et al., 2018). Generative adversarial networks (Goodfellow et al., 2014) are one of the main approaches to learning such models in a fully unsupervised fashion. The GAN framework can be viewed as a two-player game where the first player, the generator, is learning to transform some simple input distribution (usually a standard multivariate Normal or uniform) to a distribution on the space of images, such that the second player, the discriminator, cannot tell whether the samples belong to the true distribution or were synthesized. Both players aim to minimize their own loss and the solution to the game is the Nash equilibrium where neither player can improve their loss unilaterally. This powerful framework can also be derived by minimizing a divergence between the model distribution and the true distribution (Nowozin et al., 2016; Arjovsky et al., 2017). ", + "bbox": [ + 174, + 520, + 825, + 686 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Training GANs involves solving a minimax problem over the parameters of the generator and the discriminator which are usually parameterized as deep convolutional neural networks. Consequently, this minimax problem is notoriously hard to solve in practice. As a result, a plethora of loss functions, regularization and normalization schemes, coupled with neural architecture choices, have been proposed (Goodfellow et al., 2014; Salimans et al., 2016; Miyato et al., 2018; Gulrajani et al., 2017; Arjovsky et al., 2017; Mao et al., 2016). ", + "bbox": [ + 174, + 694, + 825, + 777 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Our contributions. In this work we provide a thorough empirical analysis of these competing approaches, and help the researchers and practitioners navigate this space. We first define the GAN landscape – the set of loss functions, normalization and regularization schemes, and the most commonly used architectures. We explore this search space on several modern large-scale data sets by means of hyperparameter optimization, considering both “good” sets of hyperparameters reported in the literature, as well as ones obtained by Gaussian Process regression. By analyzing the impact of the loss function, we conclude that the non-saturating loss is sufficiently stable across data sets, architectures and hyperparameters. We then proceed to decompose the effect of various normalization and regularization schemes, as well as varying architectures. We show that both gradient penalty (Gulrajani et al., 2017) as well as spectral normalization (Miyato et al., 2018) are useful in the context of high-capacity architectures. Finally, we discuss some common pitfalls, reproducibility issues, and practical considerations. We provide reference implementations, including training and evaluation code on Github1 and provide pre-trained models on TensorFlow Hub.2 ", + "bbox": [ + 174, + 785, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 THE GAN LANDSCAPE ", + "text_level": 1, + "bbox": [ + 176, + 169, + 400, + 185 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 LOSS FUNCTIONS ", + "text_level": 1, + "bbox": [ + 176, + 203, + 338, + 218 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Let $P$ denote the target (true) distribution and $Q$ the model distribution. Goodfellow et al. (2014) suggest two loss functions: the minimax GAN and the non-saturating (NS) GAN. In the former the discriminator minimizes the negative log-likelihood for the binary classification task. In the latter the generator maximizes the probability of generated samples being real. In this work we consider the non-saturating loss as it is known to outperform the minimax variant. The corresponding loss functions are $\\mathcal { L } _ { \\mathrm { { D } } } = - \\mathbb { E } _ { \\boldsymbol { x } \\sim P } [ \\log ( D ( \\boldsymbol { x } ) ) ] - \\mathbb { E } _ { \\hat { \\boldsymbol { x } } \\sim Q } [ \\log ( 1 - D ( \\boldsymbol { \\hat { x } } ) ) ]$ and $\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ \\bar { \\log ( D ( \\hat { x } ) ) } ]$ . ", + "bbox": [ + 174, + 231, + 825, + 315 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In Wasserstein GAN (WGAN) (Arjovsky et al., 2017) the authors propose to consider the Wasserstein divergence instead of the original Jensen-Shannon (JS). In particular, under the optimal discriminator, minimizing the proposed value function with respect to the generator minimizes the Wasserstein distance between $P$ and $Q$ . The drawback is that one has to ensure a 1-Lipschitz discriminator due to exploited Kantorovich-Rubenstein duality. The corresponding loss functions are $\\mathcal { L } _ { \\mathrm { D } } ~ =$ $- \\mathbb { E } _ { x \\sim P } [ D ( x ) ] + \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]$ and $\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]$ . ", + "bbox": [ + 174, + 321, + 825, + 406 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Finally, we consider the least-squares loss (LS) which corresponds to minimizing the Pearson $\\chi ^ { 2 }$ divergence between $P$ and $Q$ (Mao et al., 2016). The intuition is that this loss function is smooth and saturates slower than the sigmoid cross-entropy loss of the JS formulation. The corresponding loss functions are $\\mathcal { L } _ { \\mathrm { D } } = - \\mathbb { E } _ { x \\sim P } \\overline { { [ ( D ( x ) - 1 ) ^ { 2 } ] } } + \\tilde { \\mathbb { E } } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ^ { 2 } ]$ and $\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ ( D ( \\hat { x } ) { \\bar { - } } 1 ) ^ { 2 } ]$ ]. ", + "bbox": [ + 174, + 412, + 825, + 470 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 REGULARIZATION AND NORMALIZATION OF THE DISCRIMINATOR ", + "text_level": 1, + "bbox": [ + 176, + 489, + 671, + 505 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Gradient norm penalty. In the context of Wasserstein GANs this penalty can be interpreted as a soft penalty for the violation of 1-Lipschitzness (WGAN GP) (Gulrajani et al., 2017). Hereby, the gradient is evaluated on a linear interpolation between training points and generated samples as a proxy to the optimal coupling. The gradient penalty can also be evaluated around the data manifold which encourages the discriminator to be piece-wise linear in that region (Dragan) (Kodali et al., 2017). However, the gradient norm penalty can be considered purely as a regularizer for the discriminator and it was shown that it can improve the performance for other losses (Fedus et al., 2018). Furthermore, the penalty can be scaled by the “confidence” of the discriminator in the context of f-divergences (Roth et al., 2017). A drawback of gradient penalty (GP) regularization scheme is that it can depend on the model distribution $Q$ which changes during training. One drawback of Dragan is that it is unclear to which extent the Gaussian assumption for the manifold holds. Finally, computing the gradient norms implies a non-trivial running time penalty – essentially doubling the running time. We also investigate the impact of a regularizer ubiquitous in supervised learning – the $L _ { 2 }$ penalty on all the weights of the network. ", + "bbox": [ + 173, + 517, + 825, + 712 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Discriminator normalization. Normalizing the discriminator can be useful from both the optimization perspective (more efficient gradient flow, a more stable optimization), as well as from the representation perspective – the representation richness of the layers in a neural network depends on the spectral structure of the corresponding weight matrices (Miyato et al., 2018). ", + "bbox": [ + 174, + 719, + 825, + 775 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "From the optimization point of view, several techniques have found their way into the GAN literature, namely batch normalization (BN) (Ioffe and Szegedy, 2015) and layer normalization (LN) (Ba et al., 2016). Batch normalization in the context of GANs was suggested by Denton et al. (2015) and further popularized by Radford et al. (2016). It normalizes the pre-activations of nodes in a layer to mean $\\beta$ and standard deviation $\\gamma$ , where both $\\beta$ and $\\gamma$ are parameters learned for each node in the layer. The normalization is done on the batch level and for each node separately. In contrast, with Layer normalization, all the hidden units in a layer share the same normalization terms $\\beta$ and $\\gamma$ , but different samples are normalized differently (Ba et al., 2016). Layer normalization was first applied in the context of GANs in Gulrajani et al. (2017). ", + "bbox": [ + 174, + 781, + 826, + 880 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "From the representation point of view, one has to consider the neural network as a composition of (possibly non-linear) mappings and analyze their spectral properties. In particular, for the discriminator to be a bounded linear operator it suffices to control the maximum singular value. This approach is followed in Miyato et al. (2018) where the authors suggest dividing each weight matrix, including the matrices representing convolutional kernels, by their spectral norm. Furthermore, the authors argue that a key advantage of spectral normalization over competing approaches is that it results in discriminators of higher rank. ", + "bbox": [ + 174, + 138, + 825, + 236 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 GENERATOR AND DISCRIMINATOR ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 174, + 253, + 565, + 268 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We explore two classes of architectures in this study: deep convolutional generative adversarial networks (DCGAN) (Radford et al., 2016) and residual networks (ResNet) (He et al., 2016), both of which are ubiquitous in GAN research. Recently, Miyato et al. (2018) defined a variation of DCGAN, so called SNDCGAN. Apart from minor updates (cf. Section 4) the main difference to DCGAN is the use of an eight-layer discriminator network. The details of both networks are summarized in Table 3. The other architecture, ResNet19, is an architecture with five ResNet blocks in the generator and six ResNet blocks in the discriminator, that can operate on $1 2 8 \\times 1 2 8$ images. We follow the ResNet setup from Miyato et al. (2018), with the small difference that we simplified the design of the discriminator. The detailed parameters of discriminator and generator are summarized in Table 4a and Table 4b. With this setup we were able to reproduce the current state of the art results. An ablation study on various ResNet modifications is available in the Appendix. ", + "bbox": [ + 174, + 280, + 825, + 433 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.4 EVALUATION METRICS ", + "text_level": 1, + "bbox": [ + 176, + 450, + 375, + 465 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We focus on several recently proposed metrics well suited to the image domain. For an in-depth overview of quantitative metrics we refer the reader to (Borji, 2018). ", + "bbox": [ + 173, + 477, + 823, + 506 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Inception Score (IS). Proposed by Salimans et al. (2016), IS offers a way to quantitatively evaluate the quality of generated samples. Intuitively, the conditional label distribution of samples containing meaningful objects should have low entropy, and the variability of the samples should be high. which can be expressed as $\\scriptstyle \\mathtt { I S } = \\exp ( \\mathbb { E } _ { x \\sim Q } [ d _ { K L } ^ { \\sim } ( p ( y \\mid x ) , p ( y ) ) ] )$ . The authors found that this score is well-correlated with scores from human annotators. Drawbacks include insensitivity to the prior distribution over labels and not being a proper distance. ", + "bbox": [ + 174, + 512, + 825, + 597 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As an alternative Heusel et al. (2017) proposed the Frechet Inception Distance (FID). Samples from $P$ and $Q$ are first embedded into a feature space (a specific layer of InceptionNet). Then, assuming that the embedded data follows a multivariate Gaussian distribution, the mean and covariance are estimated. Finally, the Frechet distance between these two Gaussians is computed, i.e. ´ ", + "bbox": [ + 174, + 603, + 825, + 659 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/b6f8ed1562991b68fbd061fe2c043b6c232d23ac1a6f53fbb10018323336362d.jpg", + "text": "$$\n\\begin{array} { r } { \\mathtt { F I D } = | | \\mu _ { x } - \\mu _ { y } | | _ { 2 } ^ { 2 } + \\operatorname { T r } \\big ( \\Sigma _ { x } + \\Sigma _ { y } - 2 \\big ( \\Sigma _ { x } \\Sigma _ { y } \\big ) ^ { \\frac { 1 } { 2 } } \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 326, + 666, + 668, + 688 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\left( \\mu _ { x } , \\Sigma _ { x } \\right)$ , and $( \\mu _ { y } , \\Sigma _ { y } )$ are the mean and covariance of the embedded samples from $P$ and $Q$ , respectively. The authors argue that FID is consistent with human judgment and more robust to noise than IS. Furthermore, the score is sensitive to the visual quality of generated samples – introducing noise or artifacts in the generated samples will reduce the FID. In contrast to IS, FID can detect intra-class mode dropping, i.e. a model that generates only one image per class can score a perfect IS, but will suffer from have a high FID (Lucic et al., 2018). Binkowski et al. ´ (2018) argued that FID has no unbiased estimator and suggest Kernel Inception distance (KID) instead. In Appendix B we empirically compare KID to FID and observe that both metrics are very strongly correlated (Spearman rank-order correlation coefficient of 0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets). As a result we focus on FID as it is likely to result in the same ranking. ", + "bbox": [ + 173, + 693, + 826, + 833 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Multi-scale Structural Similarity for Image Quality (MS-SSIM) and Diversity. A critical issue in GANs are mode collapse and mode-dropping – failing to capture a mode, or low-diversity of generated samples from a given mode. The MS-SSIM score (Wang et al., 2003) is used for measuring the similarity of two images where higher MS-SSIM score indicates more similar images. Several recent works suggest using the average pairwise MS-SSIM score within a given class as a proxy for the diversity of generated samples (Odena et al., 2017; Fedus et al., 2018). The drawback of this approach is that we do not know the class corresponding to the generated sample, so it is usually applied on one-class data sets, such as CELEBA-HQ-128. In this work we use the same setup as in Fedus et al. (2018). In particular, given a batch size $b$ , we compute the average pairwise MS-SSIM score on 5 batches, of $5 \\times b \\times ( b - 1 ) / 2$ image pairs in total. We stress that the diversity should only be taken into account together with the FID and $I S$ metrics. ", + "bbox": [ + 174, + 839, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/5b538da34a3ed222dafa89ec8eb797b9aceb13eabaf767453d4ccb5b8d38cf29.jpg", + "table_caption": [ + "Table 1: Hyperparameter ranges used in this study. The Cartesian product of the fixed values suffices to uncover the existing results. Gaussian Process optimization in the bandit setting (Srinivas et al., 2010) is used to select good hyperparameter settings from the specified ranges. ", + "(a) Fixed values " + ], + "table_footnote": [], + "table_body": "
PARAMETERDISCRETE VALUE
Learning rate α{0.0002,0.0001,0.001}
Reg. strength 入{1,10}
(β1,β2,ndis){(0.5,0.900,5), (0.5,0.999,1), (0.5,0.999,5), (0.9,0.999,5)}
", + "bbox": [ + 173, + 174, + 501, + 265 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/4d1f194fba1fef258921265d4927c729e33c5909fbd7dc85dc8411aace932d66.jpg", + "table_caption": [ + "(b) Gaussian Process regression ranges " + ], + "table_footnote": [], + "table_body": "
PARAMETERRANGELOG
Learning rate α[10-5,10-2]Yes
入 for L2[10-4,101]Yes
入 for non-L2[10-1,102]Yes
β1×β[0,1] × [0,1]No
", + "bbox": [ + 544, + 174, + 805, + 267 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 294, + 825, + 363 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.5 DATA SETS ", + "text_level": 1, + "bbox": [ + 174, + 382, + 292, + 396 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We consider three data sets, namely CIFAR10, CELEBA-HQ-128, and LSUN-BEDROOM. The LSUN-BEDROOM data set (Yu et al., 2015) contains slightly more than 3 million images3. We randomly partition the images into a train and test set whereby we use 30588 images as the test set. Secondly, we use the CELEBA-HQ data set of 30k images (Karras et al., 2018). We use the $1 2 8 \\times 1 2 8 \\times 3$ version obtained by running the code provided by the authors.4 We use 3000 examples as the test set and the remaining examples as the training set. Finally, we also include the CIFAR10 data set which contains 70K images $\\left( 3 2 \\mathbf { x } 3 2 \\mathbf { x } 3 \\right)$ , partitioned into 60000 training instances and 10000 testing instances. The baseline FID scores are 12.6 for CELEBA-HQ-128, 3.8 for LSUN-BEDROOM, and 5.19 for CIFAR10. Details on FID computation are presented in Section 4. ", + "bbox": [ + 174, + 409, + 825, + 534 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.6 EXPLORING THE GAN LANDSCAPE ", + "text_level": 1, + "bbox": [ + 176, + 551, + 462, + 565 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The search space for GANs is prohibitively expensive: exploring all combinations of all losses, normalization and regularization schemes, and architectures is outside of the practical realm. Instead, in this study we analyze several slices of this tensor for each data set. In particular, to ensure that we can reproduce existing results, we perform a study over the subset of this tensor on CIFAR10. We then proceed to analyze the performance of these models across CELEBA-HQ-128 and LSUN-BEDROOM. In Section 3.1 we fix everything but the loss. In Section 3.2 we fix everything but the regularization and normalization scheme. Finally, in Section 3.3 we fix everything but the architecture. This allows us to decouple some of these design choices and provide some insight on what matters most. ", + "bbox": [ + 174, + 578, + 825, + 689 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As noted in Lucic et al. (2018), one major issue preventing further progress is the hyperparameter tuning – currently, the community has converged to a small set of parameter values which work on some data sets, and may completely fail on others. In this study we combine the best hyperparameter settings found in the literature (Miyato et al., 2018), and perform Gaussian Process regression in the bandit setting (Srinivas et al., 2010) to possibly uncover better hyperparameter settings. We then consider the top performing models and discuss the impact of the computational budget. ", + "bbox": [ + 174, + 696, + 825, + 780 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We summarize the fixed hyperparameter settings in Table 1a which contains the “good” parameters reported in recent publications (Fedus et al., 2018; Miyato et al., 2018; Gulrajani et al., 2017). In particular, we consider the cross product of these parameters to obtain 24 hyperparameter settings to reduce the bias. Finally, to provide a fair comparison, we perform Gaussian Process optimization in the bandit setting (Srinivas et al., 2010) on the parameter ranges provided in Table 1b. We run 12 rounds (i.e. we communicate with the oracle 12 times) of the optimization, each with a batch of 10 hyperparameter sets selected based on the FID scores from the results of the previous iterations. ", + "bbox": [ + 174, + 786, + 825, + 883 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/f7632ddba45f2ade2676217c086988ad49718568456061ecaba4e597982b4dfe.jpg", + "image_caption": [ + "Figure 1: Impact of the loss function: FID distribution for top $5 \\%$ models. The non-saturating (NS) loss is stable over both data sets. Gradient penalty and spectral normalization improve the sample quality. From the computational budget perspective (i.e. how many models one needs to train to reach a certain FID), both spectral normalization and gradient penalty perform better than the baseline, but the former is more efficient. " + ], + "image_footnote": [], + "bbox": [ + 176, + 99, + 821, + 339 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As we explore the number of discriminator updates per generator update (1 or 5), this leads to an additional 240 hyperparameter settings which in some cases outperform the previously known hyperparameter settings. Batch size is set to 64 for all the experiments. We use a fixed the number of discriminator update steps of 100K for LSUN-BEDROOM data set and CELEBA-HQ-128 data set, and 200K for CIFAR10 data set. We apply the Adam optimizer (Kingma and Ba, 2015). ", + "bbox": [ + 174, + 454, + 825, + 525 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 RESULTS AND DISCUSSION ", + "text_level": 1, + "bbox": [ + 178, + 550, + 431, + 566 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Given that there are 4 major components (loss, architecture, regularization, normalization) to analyze for each data set, it is infeasible to explore the whole landscape. Hence, we opt for a more pragmatic solution – we keep some dimensions fixed, and vary the others. For each experiment we highlight three aspects: (1) FID distribution of the top $5 \\%$ of the trained models, (2) the corresponding sample diversity score, and (3) the tradeoff between the computational budget (i.e. number of models to train) and model quality in terms of FID. Each model was retrained 5 times with a different random seed and we report the median score. The variance for models obtained by Gaussian Process regression is handled implicitly so we train each model once. ", + "bbox": [ + 174, + 585, + 825, + 698 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 IMPACT OF THE LOSS FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 720, + 441, + 734 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here the loss is either the non-saturating loss (NS) (Goodfellow et al., 2014), the least-squares loss (LS) (Mao et al., 2016), or the Wasserstein loss (WGAN) (Arjovsky et al., 2017). We use the ResNet19 with generator and discriminator architectures detailed in Table 4a. We consider the most prominent normalization and regularization approaches: gradient penalty (Gulrajani et al., 2017), and spectral normalization (Miyato et al., 2018). Both studies were performed on CELEBA-HQ-128 and LSUN-BEDROOM with hyperparameter settings shown in Table 1a. ", + "bbox": [ + 173, + 750, + 825, + 833 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The results are presented in Figure 1. We observe that the non-saturating loss is stable over both data sets. Spectral normalization improves the quality of the model on both data sets. Similarly, the gradient penalty can help improve the quality of the model, but finding a good regularization tradeoff is non-trivial and requires a high computational budget. Models using the GP penalty benefit from 5:1 ratio of discriminator to generator updates as suggested by (Gulrajani et al., 2017). We also performed a study on hinge loss (Miyato et al., 2018) and present it in the Appendix. ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/82e848101388335cba5420ecc90eab32f9659adccd2f642efa36a986d2c1d407.jpg", + "image_caption": [ + "Figure 2: Impact of regularization and normalization: FID distribution for top $5 \\%$ models. Both gradient penalty (GP) and spectral normalization (SN) outperform the baseline and should be considered, while former being more computationally expensive. Unfortunately none fully address the stability issues. " + ], + "image_footnote": [], + "bbox": [ + 176, + 99, + 821, + 332 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.2 IMPACT OF REGULARIZATION AND NORMALIZATION ", + "text_level": 1, + "bbox": [ + 174, + 433, + 580, + 446 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The goal of this study is to compare the relative performance of various regularization and normalization methods presented in the literature. To this end, and based on the loss study, we fix the loss to non-saturating loss (Goodfellow et al., 2014). We use the ResNet19 with generator and discriminator architectures described in Table 4a. Finally, we consider batch normalization (BN) (Ioffe and Szegedy, 2015), layer normalization (LN) (Ba et al., 2016), spectral normalization (SN), gradient penalty (GP) (Gulrajani et al., 2017), dragan penalty (DR) (Kodali et al., 2017), or $L _ { 2 }$ regularization. We consider both CELEBA-HQ-128 and LSUN-BEDROOM with the hyperparameter settings shown in Table 1a and Table 1b. ", + "bbox": [ + 173, + 460, + 826, + 571 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The results are presented in Figure 2. We observe that adding batch norm to the discriminator hurts the performance. Secondly, gradient penalty can help, but it doesn’t stabilize the training. In fact, it is non-trivial to strike a balance of the loss and regularization strength. Spectral normalization helps improve the model quality and is more computationally efficient than gradient penalty. This is consistent with recent results in Zhang et al. (2018). Similarly to the loss study, models using GP penalty benefit from 5:1 ratio of discriminator to generator updates. Furthermore, in a separate ablation study we observed that running the optimization procedure for an additional 100K steps is likely to increase the performance of the models with GP penalty. ", + "bbox": [ + 173, + 578, + 825, + 690 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Impact of Simultaneous Regularization and Normalization. Given the folklore that the Lipschitz constant of the discriminator is critical for the performance, one may expect simultaneous regularization and normalization could improve model quality. To quantify this effect, we fix the loss to non-saturating loss (Goodfellow et al., 2014), use the Resnet19 architecture (as above), and combine several normalization and regularization schemes, with hyperparameter settings shown in Table 1a coupled with 24 randomly selected parameters. The results are presented in Figure 3. We observe that one may benefit from additional regularization and normalization. However, a lot of computational effort has to be invested for somewhat marginal gains in FID. Nevertheless, given enough computational budget we advocate simultaneous regularization and normalization – spectral normalization and layer normalization seem to perform well in practice. ", + "bbox": [ + 173, + 696, + 825, + 726 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/46e4df44d5fbb143416866b4220f7afea497ffb5bb5691af926e9d009ed5d8ec.jpg", + "image_caption": [ + "Figure 3: Impact of simultaneous normalization and regularization: FID distribution for top $5 \\%$ models. Gradient penalty coupled with spectral normalization (SN) or layer normalization (LN) strongly improves the performance over the baseline. " + ], + "image_footnote": [], + "bbox": [ + 176, + 752, + 823, + 866 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 215 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.3 IMPACT OF GENERATOR AND DISCRIMINATOR ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 233, + 658, + 247 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "An interesting practical question is whether our findings also hold for a different model capacity. To this end, we also perform a study on SNDCGAN from Miyato et al. (2018). We consider the non-saturating GAN loss, gradient penalty and spectral normalization. While for smaller architectures regularization is not essential (Lucic et al., 2018), the regularization and normalization effects might become more relevant due to deeper architectures and optimization considerations. ", + "bbox": [ + 174, + 260, + 825, + 329 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/3e965e3c9706e0a9c32f50c8a17e42a830c7fba8c8e37ec83f2e9451c076d310.jpg", + "image_caption": [ + "Figure 4: Impact of the neural architectures: FID distribution for top $5 \\%$ models. Both spectral normalization and gradient penalty can help improve upon the non-regularized baseline. " + ], + "image_footnote": [], + "bbox": [ + 176, + 344, + 821, + 582 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The results are presented in Figure 4. We observe that both architectures achieve comparable results and benefit from regularization and normalization. Spectral normalization strongly outperforms the baseline for both architectures. ", + "bbox": [ + 174, + 640, + 821, + 681 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 COMMON PITFALLS ", + "text_level": 1, + "bbox": [ + 176, + 703, + 370, + 719 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section we focus on several pitfalls we encountered while trying to reproduce existing results and provide a fairly and accurate comparison. ", + "bbox": [ + 174, + 736, + 823, + 763 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Metrics. There already seems to be a divergence in how the FID score is computed: (1) Some authors report the score on training data, yielding a FID between 50k training and $5 0 \\mathrm { k }$ generated samples (Unterthiner et al., 2018). Some opt to report the FID based on 10k test samples and $5 \\mathrm { k }$ generated samples and use a custom implementation (Miyato et al., 2018). Finally, Lucic et al. (2018) report the score with respect to the test data, in particular FID between 10k test samples, and 10k generated samples. The subtle differences will result in a mismatch between the reported FIDs, in some cases of more than $1 0 \\%$ . We argue that FID should be computed with respect to the test data set as and use 10k test samples and 10k generated samples on CIFAR10 and LSUN-BEDROOM, and 3k vs 3k on CELEBA-HQ-128 as in in Lucic et al. (2018). Similarly, there are several ways to compute a diversity score using MS-SSIM and we follow the approach from Fedus et al. (2018). We provide the implementation details in Section G of the Appendix. ", + "bbox": [ + 173, + 771, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Details of neural architectures. Even in popular architectures, like ResNet, there is still a number of design decision one needs to make, that are often omitted from the reported results. Those include the exact design of the ResNet cell (order of layers, when is ReLu applied, when to upsample and downsample, how many filters to use). Some of these differences might lead to potentially unfair comparison. As a result, we suggest to use the architectures presented within this work as a solid baseline. An ablation study on various ResNet modifications is available in the Appendix. ", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Data sets. A common issue is related to data set processing – does LSUN-BEDROOM always correspond to the same data set? In most cases the precise algorithm for upscaling or cropping is not clear which introduces inconsistencies between results on the “same” data set. ", + "bbox": [ + 174, + 194, + 825, + 236 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Implementation details and non-determinism. One major issue is the mismatch between the algorithm presented in a paper and the code provided online. We are aware that there is an embarrassingly large gap between a good implementation and a bad implementation of a given model. Hence, when no code is available, one is forced to guess which modifications were done. Another particularly tricky issue is removing randomness from the training process. After one fixes the data ordering and the initial weights, obtaining the same score by training the same model twice is non-trivial due to randomness present in certain GPU operations (Chetlur et al., 2014). Disabling the optimizations causing the non-determinism often results in an order of magnitude running time penalty. ", + "bbox": [ + 174, + 243, + 825, + 354 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "While each of these issues taken in isolation seems minor, they compound to create a mist which introduces friction in practical applications and the research process (Sculley et al., 2018). ", + "bbox": [ + 174, + 361, + 823, + 390 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 410, + 344, + 426 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "A recent large-scale study on GANs and Variational Autoencoders was presented in Lucic et al. (2018). The authors consider several loss functions and regularizers, and study the effect of the loss function on the FID score, with low-to-medium complexity data sets (MNIST, CIFAR10, CELEBA), and a single (InfoGAN style) architecture. In this limited setting, the authors found that there is no statistically significant difference between recently introduced models and the original non-saturating GAN. A study of the effects of gradient-norm regularization in GANs was recently presented in Fedus et al. (2018). The authors posit that the gradient penalty can also be applied to the non-saturating GAN, and that, to a limited extent, it reduces the sensitivity to hyperparameter selection. In a recent work on spectral normalization, the authors perform a small study of the competing regularization and normalization approaches (Miyato et al., 2018). We are happy to report that we could reproduce these results and we present them in the Appendix. ", + "bbox": [ + 174, + 441, + 825, + 594 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Inspired by these works and building on the available open-source code from Lucic et al. (2018), we take one additional step in all dimensions considered therein: more complex neural architectures, more complex data sets, and more involved regularization and normalization schemes. ", + "bbox": [ + 176, + 602, + 823, + 643 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 664, + 318, + 679 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this work we study the GAN landscape: losses, regularization and normalization schemes, and neural architectures, and their impact on the on the quality of generated samples which we assess by recently introduced quantitative metrics. Our fair and thorough empirical evaluation suggests that one should consider non-saturating GAN loss and spectral normalization as default choices when applying GANs to a new data set. Given additional computational budget, we suggest adding the gradient penalty from Gulrajani et al. (2017) and train the model until convergence. Furthermore, additional marginal gains can be obtained by combining normalization and regularization empirically confirming the importance of the Lipschitz constant of the discriminator. Furthermore, both types of architectures proposed up-to this point perform reasonably well. A separate ablation study uncovered that most of the tricks applied in the ResNet style architectures lead to marginal changes in the quality and should be avoided due to the high computational cost. As a result of this large-scale study we identify the common pitfalls standing in the way of accurate and fair comparison and propose concrete actions to demystify the future results – issues with metrics, data set preprocessing, non-determinism, and missing implementation details are particularly striking. We hope that this work, together with the open-sourced reference implementations and trained models, will serve as a solid baseline for future GAN research. ", + "bbox": [ + 174, + 695, + 825, + 917 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 103, + 287, + 117 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Eirikur Agustsson, Michael Tschannen, Fabian Mentzer, Radu Timofte, and Luc Van Gool. Generative adversarial networks for extreme learned image compression. CoRR, abs/1804.02958, 2018. ", + "bbox": [ + 174, + 125, + 823, + 151 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mart´ın Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein generative adversarial networks. In ´ International Conference on Machine Learning (ICML), 2017. ", + "bbox": [ + 174, + 160, + 821, + 188 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. ", + "bbox": [ + 171, + 195, + 823, + 222 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mikołaj Binkowski, Dougal J. Sutherland, Michael Arbel, and Arthur Gretton. Demystifying MMD GANs. In ´ International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 173, + 231, + 823, + 258 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ali Borji. Pros and cons of GAN evaluation measures. arXiv preprint arXiv:1802.03446, 2018. ", + "bbox": [ + 176, + 266, + 740, + 281 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sharan Chetlur, Cliff Woolley, Philippe Vandermersch, Jonathan Cohen, John Tran, Bryan Catanzaro, and Evan Shelhamer. cudnn: Efficient primitives for deep learning. arXiv preprint arXiv:1410.0759, 2014. ", + "bbox": [ + 174, + 290, + 823, + 318 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a laplacian pyramid of adversarial networks. In Advances in Neural Information Processing Systems (NIPS), 2015. ", + "bbox": [ + 173, + 325, + 825, + 353 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "William Fedus, Mihaela Rosca, Balaji Lakshminarayanan, Andrew M Dai, Shakir Mohamed, and Ian Goodfellow. Many paths to equilibrium: Gans do not need to decrease a divergence at every step. In International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 176, + 361, + 823, + 401 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural Information Processing Systems (NIPS), 2014. ", + "bbox": [ + 176, + 409, + 823, + 449 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training of Wasserstein GANs. Advances in Neural Information Processing Systems (NIPS), 2017. ", + "bbox": [ + 171, + 457, + 823, + 484 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016. ", + "bbox": [ + 171, + 492, + 823, + 520 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and Sepp Hochre-¨ iter. GANs trained by a two time-scale update rule converge to a Nash equilibrium. Advances in Neural Information Processing Systems (NIPS), 2017. ", + "bbox": [ + 176, + 529, + 823, + 568 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. ", + "bbox": [ + 171, + 577, + 823, + 604 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional adversarial networks. Computer Vision and Pattern Recognition (CVPR), 2017. ", + "bbox": [ + 174, + 612, + 823, + 640 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality, stability, and variation. International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 173, + 647, + 823, + 675 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on Learning Representations (ICLR), 2015. ", + "bbox": [ + 173, + 683, + 821, + 710 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of GANs. arXiv preprint arXiv:1705.07215, 2017. ", + "bbox": [ + 171, + 718, + 823, + 746 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Mario Lucic, Karol Kurach, Marcin Michalski, Sylvain Gelly, and Olivier Bousquet. Are GANs created equal? A large-scale study. Advances in Neural Information Processing Systems (NIPS), 2018. ", + "bbox": [ + 171, + 753, + 823, + 781 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, Zhen Wang, and Stephen Paul Smolley. Least squares generative adversarial networks. arXiv preprint ArXiv:1611.04076, 2016. ", + "bbox": [ + 173, + 790, + 821, + 818 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative adversarial networks. International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 176, + 825, + 821, + 853 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using variational divergence minimization. In Advances in Neural Information Processing Systems (NIPS), 2016. ", + "bbox": [ + 174, + 861, + 823, + 888 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Augustus Odena, Christopher Olah, and Jonathon Shlens. Conditional image synthesis with auxiliary classifier GANs. In International Conference on Machine Learning (ICML), 2017. ", + "bbox": [ + 171, + 897, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional generative adversarial networks. International Conference on Learning Representations (ICLR), 2016. ", + "bbox": [ + 173, + 104, + 825, + 131 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kevin Roth, Aurelien Lucchi, Sebastian Nowozin, and Thomas Hofmann. Stabilizing training of generative adversarial networks through regularization. In Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 173, + 140, + 821, + 166 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. In Advances in Neural Information Processing Systems (NIPS), 2016. ", + "bbox": [ + 176, + 174, + 823, + 202 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "D. Sculley, Jasper Snoek, Alex Wiltschko, and Ali Rahimi. Winner’s curse? On pace, progress, and empirical rigor, 2018. ", + "bbox": [ + 174, + 209, + 821, + 237 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Niranjan Srinivas, Andreas Krause, Sham Kakade, and Matthias W. Seeger. Gaussian process optimization in the bandit setting: No regret and experimental design. In International Conference on Machine Learning (ICML), 2010. ", + "bbox": [ + 173, + 244, + 825, + 284 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael Tschannen, Eirikur Agustsson, and Mario Lucic. Deep generative models for distribution-preserving lossy compression. Advances in Neural Information Processing Systems (NIPS), 2018. ", + "bbox": [ + 169, + 292, + 823, + 320 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Thomas Unterthiner, Bernhard Nessler, Calvin Seward, Gnter Klambauer, Martin Heusel, Hubert Ramsauer, and Sepp Hochreiter. Coulomb GANs: Provably optimal nash equilibria via potential fields. In International Conference on Learning Representations (ICLR), 2018. ", + "bbox": [ + 176, + 328, + 821, + 367 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhou Wang, Eero P Simoncelli, and Alan C Bovik. Multiscale structural similarity for image quality assessment. In Asilomar Conference on Signals, Systems and Computers, 2003. ", + "bbox": [ + 174, + 376, + 823, + 404 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. Lsun: Construction of a large-scale image dataset using deep learning with humans in the loop. arXiv preprint arXiv:1506.03365, 2015. ", + "bbox": [ + 173, + 410, + 823, + 438 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial networks. arXiv preprint arXiv:1805.08318, 2018. ", + "bbox": [ + 174, + 446, + 821, + 473 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "A FID AND INCEPTION SCORES ON CIFAR10 ", + "text_level": 1, + "bbox": [ + 174, + 102, + 571, + 118 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We present an empirical study with SNDCGAN and ResNet CIFAR architectures on CIFAR10 in figure 5 and figure 6. In addition to Section 3.1, we evaluate one more kind of loss on CIFAR10. Here HG, NS and WGAN stand for hinge loss, non saturating loss and Wasserstein loss respectively. We observe that hinge loss performs very similar to non-saturating loss. ", + "bbox": [ + 174, + 131, + 825, + 183 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/c164b1f15578e4a9ef02160d0cfbbfa32f06c4db8cef2e901de85c271df39446.jpg", + "image_caption": [ + "Figure 5: An empirical study with SNDCGAN and ResNet cifar architectures on CIFAR10. We recover the state of the art results recently reported in Miyato et al. (2018). " + ], + "image_footnote": [], + "bbox": [ + 256, + 195, + 738, + 332 + ], + "page_idx": 10 + }, + { + "type": "image", + "img_path": "images/9336b9938cfebbfb0ad26108c3d376665c6fce35dadf469e8a26634157b3acfa.jpg", + "image_caption": [ + "Figure 6: We show the Inception Score for each model within our study which corresponds to recently reported results (Miyato et al., 2018). " + ], + "image_footnote": [], + "bbox": [ + 240, + 395, + 754, + 537 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B COMPARISON OF FID AND KID METRICS ", + "text_level": 1, + "bbox": [ + 176, + 595, + 552, + 613 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "The KID metric introduced by Binkowski et al. ´ (2018) is an alternative to FID. We use models from our Regularization and Normalization study (see Section 3.2) to compare both metrics. Here, by model we denote everything that needs to be specified for the training – including all hyper-parameters, like learning rate, $\\lambda$ , Adam’s $\\beta$ , etc. The Spearman rank-order correlation coefficient between KID and FID scores is approximately 0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets. ", + "bbox": [ + 173, + 626, + 825, + 690 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "To evaluate a practical setting of selecting several best models, we compare the intersection between the set of “best $K$ models by FID” and the set of “best $K$ models by KID” for $\\bar { K } \\in { 5 , 1 0 , 2 0 , 5 0 , 1 0 0 }$ . The results are summarized in Table 2. ", + "bbox": [ + 174, + 696, + 823, + 734 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "This experiment suggests that FID and KID metrics are very strongly correlated, and for the practical applications one can choose either of them. Also, the conclusions from our studies based on FID should transfer to studies based on KID. ", + "bbox": [ + 176, + 742, + 823, + 780 + ], + "page_idx": 10 + }, + { + "type": "table", + "img_path": "images/c60d6fe1829ddd8eeca7bb19462437aaad4c277acacf61b026209b0ac306cbc3.jpg", + "table_caption": [ + "Table 2: Intersection between set of top $K$ experiments selected by FID and KID metrics. " + ], + "table_footnote": [], + "table_body": "
LSUN-BEDROOM CELEBA-HQ-128
K=5 4/52/5
K=109/10 8/10
K=2018/20 15/20
K=50 49/5046/50
K=10095/100 98/100
", + "bbox": [ + 321, + 816, + 671, + 915 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "C ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 352, + 118 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "C.1 SNDCGAN ", + "text_level": 1, + "bbox": [ + 176, + 132, + 302, + 147 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We used the same architecture as Miyato et al. (2018), with the parameters copied from the GitHub page5. In Table 3a and Table 3b, we describe the operations in layer column with order. Kernel size is described in format [f ilter h, f ilter $_ - w$ , stride], input shape is $h \\times w$ and output shape is $h \\times w \\times c h a n n e l s$ . The slopes of all lReLU functions are set to 0.1. The input shape $h \\times w$ is $1 2 8 \\times 1 2 8$ for CELEBA-HQ-128 and LSUN-BEDROOM, $3 2 \\times 3 2$ for CIFAR10. ", + "bbox": [ + 174, + 157, + 826, + 220 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/3e923ebf37b598ddef5916cb4c889c811faeff69618557723902403d2c8589aa.jpg", + "table_caption": [ + "Table 3: SNDCGAN architecture. ", + "" + ], + "table_footnote": [], + "table_body": "
(a) SNDCGANdiscriminator
LAYER KERNELOUTPUT
Conv, IReLU [3,3,1]h×w×64
Conv, IReLU [4,4,2]h/2 × w/2 × 128
Conv, IReLU [3,3,1]h/2 × w/2 × 128
Conv, lReLU [4,4,2]h/4 × w/4× 256
Conv, IReLU [3,3,1]h/4 × w/4 × 256
Conv, IReLU [4,4,2]h/8×w/8× 512
Conv, IReLU [3,3,1]h/8×w/8× 512
Linear 11
", + "bbox": [ + 183, + 263, + 485, + 452 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/c887e9053f30412212aeaa774cfa1b8c75f53b6c8dc2156daf4baae6b43269d7.jpg", + "table_caption": [ + "(b) SNDCGAN generator" + ], + "table_footnote": [], + "table_body": "
LAYERKERNEL OUTPUT
2 1128
Linear, BN, ReLUh/8×w/8× 512 1
Deconv, BN, ReLU [4,4,2]h/4 ×w/4 × 256
Deconv,BN,ReLU[4,4,2] h/2 × w/2 × 128
Deconv, BN, ReLU[4,4,2] h×w×64
Deconv, Tanh [3,3,1]h×w×3
", + "bbox": [ + 496, + 280, + 836, + 414 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "C.2 RESNET ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 174, + 478, + 392, + 492 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "The ResNet19 architecture is described in Table 4. RS column stands for the resample of the residual block, with downscale(D)/upscale(U)/none(-) setting. MP stands for mean pooling and BN for batch normalization. ResBlock is defined in Table 5. The addition layer merges two paths by adding them. The first path is a shortcut layer with exactly one convolution operation, while the second path consists of two convolution operations. The downscale layer and upscale layer are marked in Table 5. We used average pool with kernel [2, 2, 2] for downscale, after the convolution operation. We used unpool from https://github.com/tensorflow/ tensorflow/issues/2169 for upscale, before convolution operation. $h$ and $w$ are the input shape to the ResNet block, output shape depends on the RS parameter. $c _ { i }$ and $c _ { o }$ are the input channels and output channels for a ResNet block. Table 6 described the ResNet CIFAR architecture we used in Figure 5 for reproducing the existing results. Note that RS is set to none for third ResBlock and fourth ResBlock in discriminator. In this case, we used the same ResNet block defined in Table 5 without resampling. ", + "bbox": [ + 173, + 502, + 826, + 642 + ], + "page_idx": 11 + }, + { + "type": "table", + "img_path": "images/3371b9fe1e5470bcbc964c2da5cddcec698e66dfcfc294f2401c22fc485b41b2.jpg", + "table_caption": [ + "Table 4: ResNet 19 architecture corresponding to “resnet small” in https://github.com/ pfnet-research/sngan_projection. ", + "(a) ResNet19 discriminator " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1] D64 × 64× 64
ResBlock[3,3,1] D32 × 32 ×128
ResBlock[3,3,1] D16 ×16× 256
ResBlock[3,3,1] D8×8× 256
ResBlock[3,3,1] D4 ×4 × 512
ResBlock[3,3,1] D2 ×2× 512
ReLU, MP-512
Linear- -1
", + "bbox": [ + 181, + 161, + 488, + 333 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/e22b1f5de7b1414ef9666679623aab2158525f437a8c06fd1ad3edb9eed4c348.jpg", + "table_caption": [ + "(b) ResNet19 generator ", + "Table 5: ResNet block definition. " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRSOUTPUT
21128
Linear-14×4× 512
ResBlock[3,3,1]U8×8×512
ResBlock[3,3,1]U16 × 16× 256
ResBlock[3,3,1]U32 × 32 × 256
ResBlock[3,3,1]U64 × 64 × 128
ResBlock[3,3,1]U128 × 128 × 64
BN,ReLU11128 × 128 × 64
Conv[3,3,1]1128 × 128× 3
Sigmoid--128 × 128 × 3
", + "bbox": [ + 501, + 161, + 815, + 371 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/a61bc2dad7dee5dcad94d154d90410fe845958823dc1c5900db22bd41de52002.jpg", + "table_caption": [ + "(a) ResBlock discriminator ", + "Table 6: ResNet CIFAR architecture. " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]Dh/2 × w/2 × Co
BN,ReLU11hxwXCi
Conv[3,3,1]-h×w×co
BN,ReLU==h×w×co
Conv[3,3,1]Dh/2 × w/2 ×Co
Addition--h/2 × w/2 × Co
", + "bbox": [ + 176, + 439, + 495, + 554 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/053517377514aa384c0fbeda5aa3aed15d8d4f2c604fb022c2d63e85f5134cee.jpg", + "table_caption": [ + "(b) ResBlock generator " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]U2h× 2w XCo
BN, ReLU1-h×wXCi
Conv BN, ReLU[3,3,1]U2h ×2w×Co
-12h × 2w ×Co
[3,3,1]12h ×2w×Co
Conv Addition--2h × 2w X Co
", + "bbox": [ + 508, + 439, + 810, + 554 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/a2567f6e717cbbb3a6469ac38bb4b519636686f6c2a4a0b5ef55034ed2dd1abd.jpg", + "table_caption": [ + "(a) ResNet CIFAR discriminator " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1]D 16 × 16 × 128
ResBlock[3,3,1]D 8×8×128
ResBlock[3,3,1]8×8×128 -
ResBlock[3,3,1]- 8×8×128
ReLU, MP128 -
Linear-- 1
", + "bbox": [ + 181, + 622, + 488, + 757 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/493a6bfc4c66827df5e99eb1a8fde9a99c1078cb4ceb973deca077470d7e2ced.jpg", + "table_caption": [ + "(b) ResNet CIFAR generator " + ], + "table_footnote": [], + "table_body": "
LAYERKERNELRSOUTPUT
2-128
Linear--4×4×256
ResBlock[3,3,1]U8×8× 256
ResBlock[3,3,1]U16 × 16 × 256
ResBlock[3,3,1]U32 × 32 × 256
BN, ReLU1132 × 32× 256
Conv[3,3,1]-32 × 32 × 3
Sigmoid1-32 × 32 × 3
", + "bbox": [ + 504, + 622, + 812, + 795 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "D RESNET ARCHITECTURE ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 173, + 102, + 575, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We have noticed six minor differences on Resnet architecture comparing to implementation from https: //github.com/pfnet-research/chainer-gan-lib/blob/master/common/net.py (Miyato et al., 2018). We did ablation study to verify the impact of these differences. Figure 7 shows the impact of the ablation study, with details described as following. ", + "bbox": [ + 174, + 132, + 826, + 184 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "• DEFAULT: ResNet CIFAR architecture with spectral normalization and non-saturating GAN loss. \n• SKIP: Use input as output for the shortcut connection in the discriminator ResBlock. By default it was a conv layer with 3x3 kernel. \nCIN: Use $c _ { i }$ for the discriminator ResBlock hidden layer output channels. By default it was $c _ { o }$ in our setup, while Miyato et al. (2018) used $c _ { o }$ for first ResBlock and $c _ { i }$ for the rest. OPT: Use an optimized setup for the first discriminator ResBlock, which includes: (1) no ReLU, (2) a conv layer for the shortcut connections, (3) use $c _ { o }$ instead of $c _ { i }$ in ResBlock. \nCIN OPT: Use CIN and OPT together. It means the first ResBlock is optimized while the remaining ResBlocks use $c _ { i }$ for the hidden output channels. \n• SUM: Use reduce sum for the discriminator output. By default it was reduce mean. \n• TAN: Use tanh for the generator output, as well as range [-1, 1] for discriminator input. By default it was sigmoid and discriminator input range [0, 1]. \nEPS: Use a bigger epsilon $\\mathrm { 2 e - 5 }$ for generator batch normalization. By default it was 1e − 5 in TensorFlow. \n• ALL: Apply all the above differences together. ", + "bbox": [ + 215, + 196, + 825, + 434 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In the ablation study, the CIN experiment obtained the worst FID score. Combining with OPT, the CIN results were improved to the same level as the others which is reasonable because the first block has three input channels, which becomes a bottleneck for the optimization. Hence, using OPT and CIN together performs as well as the others. Overall, the impact of these differences are minor according to the study on CIFAR10. ", + "bbox": [ + 174, + 446, + 825, + 497 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/915843060e097817e89e5ef818f9f0c36cdf124f39cb363d94c6249fa26e25de.jpg", + "image_caption": [ + "Figure 7: Ablation study of ResNet architecture differences. The experiment codes are described in Section D. " + ], + "image_footnote": [], + "bbox": [ + 238, + 512, + 759, + 650 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "E RECOMMENDED HYPERPARAMETER SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 722, + 593, + 737 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To make the future GAN training simpler, we propose a set of best parameters for three setups: (1) Best parameters without any regularizer. (2) Best parameters with only one regularizer. (3) Best parameters with at most two regularizers. Table 7, Table 8 and Table 9 summarize the top 2 parameters for SNDCGAN architecture, ResNet19 architecture and ResNet CIFAR architecture, respectively. Models are ranked according to the median FID score of five different random seeds with fixed hyper-parameters in Table 1a. Note that ranking models according to the best FID score of different seeds will achieve better but unstable result. Gaussian Process optimization hyper-parameters are not included in this table. For ResNet19 architecture with at most two regularizers, we have run it only once due to computational overhead. To show the model stability, we listed the best FID score out of five seeds from the same parameters in column best. Spectral normalization is clearly outperforms the other normalizers on SNDCGAN and ResNet CIFAR architectures, while on ResNet19 both layer normalization and spectral normalization work well. ", + "bbox": [ + 173, + 751, + 825, + 890 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To visualize the FID score on each data set, Figure 8, Figure 9 and Figure 10 show the generated examples by GANs. We select the examples from the best FID run, and then increase the FID score for two more plots. ", + "bbox": [ + 173, + 897, + 823, + 924 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/517095517d9657f93ac21ca52943d038f6f799595f9e6be1d0b18ed16b891c58.jpg", + "table_caption": [ + "Table 7: SNDCGAN parameters " + ], + "table_footnote": [], + "table_body": "
DATA SETMEDIANBESTLR(×10-3)β1βndiscNORM
CIFAR1029.7528.660.1000.5000.999111
CIFAR1036.1233.230.2000.5000.9991==
CELEBA-HQ-12866.4263.130.1000.5000.99911
CELEBA-HQ-12867.3964.590.2000.5000.9991==
LSUN-BEDROOM180.36160.120.2000.5000.99911
LSUN-BEDROOM188.99162.000.1000.5000.99911
CIFAR1026.6625.270.2000.5000.9991SN
CIFAR1027.3226.970.1000.5000.9991SN
CELEBA-HQ-12831.1429.050.2000.5000.9991=SN
CELEBA-HQ-12833.5231.920.1000.5000.9991SN
LSUN-BEDROOM63.4658.130.2000.5000.9991SN
LSUN-BEDROOM74.6659.941.0000.5000.9991-SN
CIFAR1026.2326.010.2000.5000.99911SN+GP
CIFAR1026.6625.270.2000.5000.99911SN
CELEBA-HQ-12831.1330.800.1000.5000.999110GP
CELEBA-HQ-12831.1429.050.2000.5000.99911SN
LSUN-BEDROOM63.4658.130.2000.5000.9991=SN
LSUN-BEDROOM66.5865.750.2000.5000.999110GP
", + "bbox": [ + 171, + 127, + 828, + 417 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/09f6b23750df3b53d8db071533a0bb9279cb8b391a26190ff51b903c06c8e150.jpg", + "table_caption": [ + "Table 8: ResNet19 parameters " + ], + "table_footnote": [], + "table_body": "
DATA SETMEDIANBESTLR(×10-3)βndiscNORM
CELEBA-HQ-12843.7339.100.1000.5000.9995
CELEBA-HQ-12843.7739.600.1000.5000.9991=-
LSUN-BEDROOM160.97119.580.1000.5000.9005
LSUN-BEDROOM161.70125.550.1000.5000.9005=1
CELEBA-HQ-12832.4628.520.1000.5000.9991=LN
CELEBA-HQ-12840.5836.370.2000.5000.9001LN
LSUN-BEDROOM70.3048.881.0000.5000.9991SN
LSUN-BEDROOM73.8460.540.1000.5000.9005-SN
CELEBA-HQ-12829.13=0.1000.5000.90051LN+DR
CELEBA-HQ-12829.650.2000.5000.90051GP
LSUN-BEDROOM55.720.2000.5000.90051LN+GP
LSUN-BEDROOM57.810.1000.5000.999110SN+GP
", + "bbox": [ + 173, + 458, + 830, + 666 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "F WHICH PARAMETERS REALLY MATTER? ", + "text_level": 1, + "bbox": [ + 176, + 690, + 539, + 707 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For each architecture and hyper-parameter we estimate its impact on the final FID. Figure 11 presents heatmaps for hyperparameters, namely the learning rate, $\\beta _ { 1 }$ , $\\beta _ { 2 }$ , $n _ { d i s c }$ , and $\\lambda$ for each combination of neural architecture and data set. ", + "bbox": [ + 174, + 722, + 825, + 760 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "G VARIATIONS OF MS-SSIM ", + "text_level": 1, + "bbox": [ + 176, + 780, + 433, + 796 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We used the MS-SSIM scorer from TensorFlow with default power factors (Wang et al., 2003). Note that the default filter size for each scale layer is 11, the minimum image edge is $1 1 \\times 2 ^ { 4 } = 1 7 6$ . To adapt it to CELEBA-HQ-128 data set with size $1 2 8 \\times 1 2 8$ , we used the minimum of filter size 11 and image size in last scale layer to allow the computation followed the previous work (Fedus et al., 2018). ", + "bbox": [ + 174, + 810, + 825, + 861 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/a620c819b77783ecdf835e2bca26b7daa21ab98c620a817c509721f93bec312c.jpg", + "table_caption": [ + "Table 9: ResNet CIFAR parameters " + ], + "table_footnote": [], + "table_body": "
DATA SETMEDIANBESTLR(×10-3)β1ndiscNORM
CIFAR1031.4028.120.2000.5000.9995==
CIFAR1033.7930.080.1000.5000.9995=1
CIFAR1023.5722.910.2000.5000.9995=SN
CIFAR1025.5024.210.1000.5000.99951SN
CIFAR1022.9822.730.2000.5000.99911SN+GP
CIFAR1023.5722.910.2000.5000.9995-SN
", + "bbox": [ + 199, + 128, + 794, + 253 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/8c414c042d882f1159a23063a0813130967a1b2a1edd717e9194cf65a2038b5d.jpg", + "image_caption": [ + "Figure 8: Examples generated by GANs on CELEBA-HQ-128 data set. " + ], + "image_footnote": [], + "bbox": [ + 183, + 266, + 815, + 449 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/786ca8fc171e60cd0ce2ba0004d5703869c528cf8d62a05307aaaa0a46d3dac5.jpg", + "image_caption": [ + "Figure 9: Examples generated by GANs on LSUN-BEDROOM data set. " + ], + "image_footnote": [], + "bbox": [ + 183, + 488, + 815, + 670 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/f1aa1099a3ce5eda2019dddd846b6c2bcea9f181181c9afb1322704faf348863.jpg", + "image_caption": [ + "Figure 10: Examples generated by GANs on CIFAR10 data set. " + ], + "image_footnote": [], + "bbox": [ + 183, + 709, + 815, + 892 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/d088858e2c8a8cdce82899931934b317604f9bbc30cf7186dc9ab1f5de9f6026.jpg", + "image_caption": [ + "(a) FID score of SNDCGAN on CIFAR10 " + ], + "image_footnote": [], + "bbox": [ + 171, + 156, + 826, + 253 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/7a4b30b761160941966aad9cf0ab6d3e235aa2b161986758303f170b1a6c47ad.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 272, + 826, + 366 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/6fdffed4172209843481fb9fb7c89d573d4d072037af4106b0d06c88c8ffef4a.jpg", + "image_caption": [ + "(b) FID score of SNDCGAN on CELEBA-HQ-128 " + ], + "image_footnote": [], + "bbox": [ + 171, + 385, + 826, + 478 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/caca60a47d429ab4c4922f440ad3bcacb75f73720679a37c1f0fc45fed5e22fe.jpg", + "image_caption": [ + "(c) FID score of SNDCGAN on LSUN-BEDROOM " + ], + "image_footnote": [], + "bbox": [ + 171, + 498, + 825, + 593 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/ab454109195ada56fe60611674239d53e1ad36fe16717cd09a8e2e4b60b42140.jpg", + "image_caption": [ + "(d) FID score of ResNet CIFAR on CIFAR10 " + ], + "image_footnote": [], + "bbox": [ + 171, + 612, + 826, + 705 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/ccd750f16de1b8efe3bdfea4b323d33e40ae824119fbb2a87ae4ec00eee859d8.jpg", + "image_caption": [ + "(e) FID score of ResNet19 on CELEBA-HQ-128 ", + "Figure 11: Heat plots for hyper-parameters on each architecture and dataset combination. " + ], + "image_footnote": [], + "bbox": [ + 171, + 724, + 826, + 838 + ], + "page_idx": 16 + } +] \ No newline at end of file diff --git a/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_middle.json b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e431508b630b1eef589ef8ebeae292dffdcc9f2a --- /dev/null +++ b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_middle.json @@ -0,0 +1,37229 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 449, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 285, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 285, + 97 + ], + "score": 1.0, + "content": "THE GAN LANDSCAPE:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 450, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 450, + 118 + ], + "score": 1.0, + "content": "LOSSES, ARCHITECTURES, REGULARIZATION,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 119, + 273, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 273, + 138 + ], + "score": 1.0, + "content": "AND NORMALIZATION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 155, + 244, + 177 + ], + "lines": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 166, + 245, + 178 + ], + "spans": [ + { + "bbox": [ + 112, + 166, + 245, + 178 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 278, + 207, + 333, + 218 + ], + "lines": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "spans": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 232, + 468, + 363 + ], + "lines": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "Generative adversarial networks (GANs) are a class of deep generative models", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 241, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 241, + 469, + 257 + ], + "score": 1.0, + "content": "which aim to learn a target distribution in an unsupervised fashion. While they were", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "score": 1.0, + "content": "successfully applied to many problems, training a GAN is a notoriously challenging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "score": 1.0, + "content": "task and requires a significant amount of hyperparameter tuning, neural architecture", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "score": 1.0, + "content": "engineering, and a non-trivial amount of “tricks”. The success in many practical", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "score": 1.0, + "content": "applications coupled with the lack of a measure to quantify the failure modes of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "score": 1.0, + "content": "GANs resulted in a plethora of proposed losses, regularization and normalization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 310, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 469, + 320 + ], + "score": 1.0, + "content": "schemes, and neural architectures. In this work we take a sober view of the current", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 321, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 332 + ], + "score": 1.0, + "content": "state of GANs from a practical perspective. We reproduce the current state of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "the art and go beyond fairly exploring the GAN landscape. We discuss common", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "score": 1.0, + "content": "pitfalls and reproducibility issues, open-source our code on Github, and provide", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 353, + 303, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 303, + 364 + ], + "score": 1.0, + "content": "pre-trained models on TensorFlow Hub.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 206, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 208, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 208, + 403 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "Deep generative models are a powerful class of unsupervised machine learning models. The power of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "these models was recently harnessed in a variety of applications, including image generation, learned", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 446 + ], + "score": 1.0, + "content": "compression, and domain transfer (Isola et al., 2017; Radford et al., 2016; Agustsson et al., 2018;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "Tschannen et al., 2018). Generative adversarial networks (Goodfellow et al., 2014) are one of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "main approaches to learning such models in a fully unsupervised fashion. The GAN framework can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "be viewed as a two-player game where the first player, the generator, is learning to transform some", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "simple input distribution (usually a standard multivariate Normal or uniform) to a distribution on", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "the space of images, such that the second player, the discriminator, cannot tell whether the samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "belong to the true distribution or were synthesized. Both players aim to minimize their own loss", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 512, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 523 + ], + "score": 1.0, + "content": "and the solution to the game is the Nash equilibrium where neither player can improve their loss", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "unilaterally. This powerful framework can also be derived by minimizing a divergence between the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 462, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 462, + 546 + ], + "score": 1.0, + "content": "model distribution and the true distribution (Nowozin et al., 2016; Arjovsky et al., 2017).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Training GANs involves solving a minimax problem over the parameters of the generator and the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "discriminator which are usually parameterized as deep convolutional neural networks. Consequently,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 507, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 507, + 585 + ], + "score": 1.0, + "content": "this minimax problem is notoriously hard to solve in practice. As a result, a plethora of loss functions,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "regularization and normalization schemes, coupled with neural architecture choices, have been", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "proposed (Goodfellow et al., 2014; Salimans et al., 2016; Miyato et al., 2018; Gulrajani et al., 2017;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 268, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 268, + 617 + ], + "score": 1.0, + "content": "Arjovsky et al., 2017; Mao et al., 2016).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Our contributions. In this work we provide a thorough empirical analysis of these competing", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "approaches, and help the researchers and practitioners navigate this space. We first define the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "GAN landscape – the set of loss functions, normalization and regularization schemes, and the most", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "commonly used architectures. We explore this search space on several modern large-scale data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "sets by means of hyperparameter optimization, considering both “good” sets of hyperparameters", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "reported in the literature, as well as ones obtained by Gaussian Process regression. By analyzing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the impact of the loss function, we conclude that the non-saturating loss is sufficiently stable across", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "data sets, architectures and hyperparameters. We then proceed to decompose the effect of various", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "normalization and regularization schemes, as well as varying architectures. We show that both", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "gradient penalty (Gulrajani et al., 2017) as well as spectral normalization (Miyato et al., 2018) are", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 449, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 285, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 285, + 97 + ], + "score": 1.0, + "content": "THE GAN LANDSCAPE:", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 450, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 450, + 118 + ], + "score": 1.0, + "content": "LOSSES, ARCHITECTURES, REGULARIZATION,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 119, + 273, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 273, + 138 + ], + "score": 1.0, + "content": "AND NORMALIZATION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 155, + 244, + 177 + ], + "lines": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "spans": [ + { + "bbox": [ + 113, + 156, + 201, + 167 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 166, + 245, + 178 + ], + "spans": [ + { + "bbox": [ + 112, + 166, + 245, + 178 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 112, + 156, + 245, + 178 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 207, + 333, + 218 + ], + "lines": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "spans": [ + { + "bbox": [ + 276, + 206, + 335, + 219 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 143, + 232, + 468, + 363 + ], + "lines": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "spans": [ + { + "bbox": [ + 142, + 232, + 469, + 244 + ], + "score": 1.0, + "content": "Generative adversarial networks (GANs) are a class of deep generative models", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 241, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 241, + 469, + 257 + ], + "score": 1.0, + "content": "which aim to learn a target distribution in an unsupervised fashion. While they were", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 469, + 267 + ], + "score": 1.0, + "content": "successfully applied to many problems, training a GAN is a notoriously challenging", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "score": 1.0, + "content": "task and requires a significant amount of hyperparameter tuning, neural architecture", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 470, + 288 + ], + "score": 1.0, + "content": "engineering, and a non-trivial amount of “tricks”. The success in many practical", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 287, + 470, + 299 + ], + "score": 1.0, + "content": "applications coupled with the lack of a measure to quantify the failure modes of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 298, + 470, + 310 + ], + "score": 1.0, + "content": "GANs resulted in a plethora of proposed losses, regularization and normalization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 310, + 469, + 320 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 469, + 320 + ], + "score": 1.0, + "content": "schemes, and neural architectures. In this work we take a sober view of the current", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 321, + 470, + 332 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 470, + 332 + ], + "score": 1.0, + "content": "state of GANs from a practical perspective. We reproduce the current state of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "the art and go beyond fairly exploring the GAN landscape. We discuss common", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "score": 1.0, + "content": "pitfalls and reproducibility issues, open-source our code on Github, and provide", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 353, + 303, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 303, + 364 + ], + "score": 1.0, + "content": "pre-trained models on TensorFlow Hub.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5, + "bbox_fs": [ + 141, + 232, + 470, + 364 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 206, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 208, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 208, + 403 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 412, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 425 + ], + "score": 1.0, + "content": "Deep generative models are a powerful class of unsupervised machine learning models. The power of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 437 + ], + "score": 1.0, + "content": "these models was recently harnessed in a variety of applications, including image generation, learned", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 435, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 446 + ], + "score": 1.0, + "content": "compression, and domain transfer (Isola et al., 2017; Radford et al., 2016; Agustsson et al., 2018;", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "Tschannen et al., 2018). Generative adversarial networks (Goodfellow et al., 2014) are one of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "main approaches to learning such models in a fully unsupervised fashion. The GAN framework can", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "be viewed as a two-player game where the first player, the generator, is learning to transform some", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "simple input distribution (usually a standard multivariate Normal or uniform) to a distribution on", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "the space of images, such that the second player, the discriminator, cannot tell whether the samples", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 505, + 512 + ], + "score": 1.0, + "content": "belong to the true distribution or were synthesized. Both players aim to minimize their own loss", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 512, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 523 + ], + "score": 1.0, + "content": "and the solution to the game is the Nash equilibrium where neither player can improve their loss", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "unilaterally. This powerful framework can also be derived by minimizing a divergence between the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 462, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 462, + 546 + ], + "score": 1.0, + "content": "model distribution and the true distribution (Nowozin et al., 2016; Arjovsky et al., 2017).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 413, + 506, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "Training GANs involves solving a minimax problem over the parameters of the generator and the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "discriminator which are usually parameterized as deep convolutional neural networks. Consequently,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 571, + 507, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 507, + 585 + ], + "score": 1.0, + "content": "this minimax problem is notoriously hard to solve in practice. As a result, a plethora of loss functions,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "regularization and normalization schemes, coupled with neural architecture choices, have been", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "proposed (Goodfellow et al., 2014; Salimans et al., 2016; Miyato et al., 2018; Gulrajani et al., 2017;", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 604, + 268, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 268, + 617 + ], + "score": 1.0, + "content": "Arjovsky et al., 2017; Mao et al., 2016).", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 550, + 507, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "Our contributions. In this work we provide a thorough empirical analysis of these competing", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "approaches, and help the researchers and practitioners navigate this space. We first define the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 656 + ], + "score": 1.0, + "content": "GAN landscape – the set of loss functions, normalization and regularization schemes, and the most", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "commonly used architectures. We explore this search space on several modern large-scale data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "sets by means of hyperparameter optimization, considering both “good” sets of hyperparameters", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "reported in the literature, as well as ones obtained by Gaussian Process regression. By analyzing", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "the impact of the loss function, we conclude that the non-saturating loss is sufficiently stable across", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "data sets, architectures and hyperparameters. We then proceed to decompose the effect of various", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "normalization and regularization schemes, as well as varying architectures. We show that both", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "gradient penalty (Gulrajani et al., 2017) as well as spectral normalization (Miyato et al., 2018) are", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "useful in the context of high-capacity architectures. Finally, we discuss some common pitfalls,", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "reproducibility issues, and practical considerations. We provide reference implementations, including", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 484, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 484, + 116 + ], + "score": 1.0, + "content": "training and evaluation code on Github1 and provide pre-trained models on TensorFlow Hub.2", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 621, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "useful in the context of high-capacity architectures. Finally, we discuss some common pitfalls,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "reproducibility issues, and practical considerations. We provide reference implementations, including", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 484, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 484, + 116 + ], + "score": 1.0, + "content": "training and evaluation code on Github1 and provide pre-trained models on TensorFlow Hub.2", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 108, + 134, + 245, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 247, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 247, + 149 + ], + "score": 1.0, + "content": "2 THE GAN LANDSCAPE", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 161, + 207, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 209, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 209, + 175 + ], + "score": 1.0, + "content": "2.1 LOSS FUNCTIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 122, + 195 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 184, + 132, + 193 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 183, + 295, + 195 + ], + "score": 1.0, + "content": "denote the target (true) distribution and", + "type": "text" + }, + { + "bbox": [ + 296, + 184, + 305, + 195 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "the model distribution. Goodfellow et al. (2014)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "suggest two loss functions: the minimax GAN and the non-saturating (NS) GAN. In the former the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "discriminator minimizes the negative log-likelihood for the binary classification task. In the latter", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "the generator maximizes the probability of generated samples being real. In this work we consider", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "the non-saturating loss as it is known to outperform the minimax variant. The corresponding loss", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 498, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 160, + 252 + ], + "score": 1.0, + "content": "functions are", + "type": "text" + }, + { + "bbox": [ + 160, + 238, + 369, + 251 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { { D } } } = - \\mathbb { E } _ { \\boldsymbol { x } \\sim P } [ \\log ( D ( \\boldsymbol { x } ) ) ] - \\mathbb { E } _ { \\hat { \\boldsymbol { x } } \\sim Q } [ \\log ( 1 - D ( \\boldsymbol { \\hat { x } } ) ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 237, + 387, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 238, + 494, + 251 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ \\bar { \\log ( D ( \\hat { x } ) ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 237, + 498, + 252 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "In Wasserstein GAN (WGAN) (Arjovsky et al., 2017) the authors propose to consider the Wasserstein", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "divergence instead of the original Jensen-Shannon (JS). In particular, under the optimal discriminator,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "minimizing the proposed value function with respect to the generator minimizes the Wasserstein", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 287, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 180, + 300 + ], + "score": 1.0, + "content": "distance between", + "type": "text" + }, + { + "bbox": [ + 180, + 289, + 190, + 298 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 287, + 209, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 209, + 289, + 218, + 299 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 287, + 506, + 300 + ], + "score": 1.0, + "content": ". The drawback is that one has to ensure a 1-Lipschitz discriminator", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 478, + 312 + ], + "score": 1.0, + "content": "due to exploited Kantorovich-Rubenstein duality. The corresponding loss functions are", + "type": "text" + }, + { + "bbox": [ + 478, + 299, + 505, + 311 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { D } } ~ =", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 308, + 340, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 231, + 322 + ], + "score": 0.91, + "content": "- \\mathbb { E } _ { x \\sim P } [ D ( x ) ] + \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 308, + 249, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 310, + 335, + 322 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 308, + 340, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 492, + 340 + ], + "score": 1.0, + "content": "Finally, we consider the least-squares loss (LS) which corresponds to minimizing the Pearson", + "type": "text" + }, + { + "bbox": [ + 492, + 327, + 504, + 340 + ], + "score": 0.87, + "content": "\\chi ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 186, + 351 + ], + "score": 1.0, + "content": "divergence between", + "type": "text" + }, + { + "bbox": [ + 186, + 339, + 195, + 349 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 339, + 213, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 339, + 222, + 350 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "(Mao et al., 2016). The intuition is that this loss function is smooth and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 350, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 362 + ], + "score": 1.0, + "content": "saturates slower than the sigmoid cross-entropy loss of the JS formulation. The corresponding loss", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 482, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 160, + 374 + ], + "score": 1.0, + "content": "functions are", + "type": "text" + }, + { + "bbox": [ + 160, + 360, + 344, + 373 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { D } } = - \\mathbb { E } _ { x \\sim P } \\overline { { [ ( D ( x ) - 1 ) ^ { 2 } ] } } + \\tilde { \\mathbb { E } } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 360, + 362, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 362, + 361, + 477, + 373 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ ( D ( \\hat { x } ) { \\bar { - } } 1 ) ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 360, + 482, + 374 + ], + "score": 1.0, + "content": "].", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 411, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 414, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 414, + 402 + ], + "score": 1.0, + "content": "2.2 REGULARIZATION AND NORMALIZATION OF THE DISCRIMINATOR", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 422 + ], + "score": 1.0, + "content": "Gradient norm penalty. In the context of Wasserstein GANs this penalty can be interpreted as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 420, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 507, + 435 + ], + "score": 1.0, + "content": "a soft penalty for the violation of 1-Lipschitzness (WGAN GP) (Gulrajani et al., 2017). Hereby,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "the gradient is evaluated on a linear interpolation between training points and generated samples", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "as a proxy to the optimal coupling. The gradient penalty can also be evaluated around the data", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "manifold which encourages the discriminator to be piece-wise linear in that region (Dragan) (Kodali", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "et al., 2017). However, the gradient norm penalty can be considered purely as a regularizer for the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "discriminator and it was shown that it can improve the performance for other losses (Fedus et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "2018). Furthermore, the penalty can be scaled by the “confidence” of the discriminator in the context", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "of f-divergences (Roth et al., 2017). A drawback of gradient penalty (GP) regularization scheme", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 509, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 294, + 521 + ], + "score": 1.0, + "content": "is that it can depend on the model distribution", + "type": "text" + }, + { + "bbox": [ + 294, + 509, + 303, + 520 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 509, + 506, + 521 + ], + "score": 1.0, + "content": "which changes during training. One drawback of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "Dragan is that it is unclear to which extent the Gaussian assumption for the manifold holds. Finally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "computing the gradient norms implies a non-trivial running time penalty – essentially doubling the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "running time. We also investigate the impact of a regularizer ubiquitous in supervised learning – the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 553, + 288, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 119, + 564 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 553, + 288, + 565 + ], + "score": 1.0, + "content": "penalty on all the weights of the network.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "Discriminator normalization. Normalizing the discriminator can be useful from both the opti-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "score": 1.0, + "content": "mization perspective (more efficient gradient flow, a more stable optimization), as well as from the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 604 + ], + "score": 1.0, + "content": "representation perspective – the representation richness of the layers in a neural network depends on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 430, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 430, + 615 + ], + "score": 1.0, + "content": "the spectral structure of the corresponding weight matrices (Miyato et al., 2018).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 506, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "From the optimization point of view, several techniques have found their way into the GAN literature,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "namely batch normalization (BN) (Ioffe and Szegedy, 2015) and layer normalization (LN) (Ba et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 641, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 506, + 654 + ], + "score": 1.0, + "content": "2016). Batch normalization in the context of GANs was suggested by Denton et al. (2015) and further", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "popularized by Radford et al. (2016). It normalizes the pre-activations of nodes in a layer to mean", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 114, + 675 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 663, + 209, + 676 + ], + "score": 1.0, + "content": "and standard deviation", + "type": "text" + }, + { + "bbox": [ + 210, + 666, + 217, + 675 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 663, + 268, + 676 + ], + "score": 1.0, + "content": ", where both", + "type": "text" + }, + { + "bbox": [ + 269, + 664, + 276, + 675 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 663, + 294, + 676 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 665, + 303, + 675 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "are parameters learned for each node in the layer.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "The normalization is done on the batch level and for each node separately. In contrast, with Layer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 686, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 419, + 697 + ], + "score": 1.0, + "content": "normalization, all the hidden units in a layer share the same normalization terms", + "type": "text" + }, + { + "bbox": [ + 420, + 686, + 427, + 697 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 686, + 444, + 697 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 444, + 687, + 451, + 697 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 686, + 505, + 697 + ], + "score": 1.0, + "content": ", but different", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 121, + 710, + 260, + 732 + ], + "lines": [ + { + "bbox": [ + 121, + 708, + 261, + 723 + ], + "spans": [ + { + "bbox": [ + 121, + 708, + 261, + 723 + ], + "score": 1.0, + "content": "1Link removed to preserve anonymity.", + "type": "text" + } + ] + }, + { + "bbox": [ + 120, + 719, + 261, + 734 + ], + "spans": [ + { + "bbox": [ + 120, + 719, + 261, + 734 + ], + "score": 1.0, + "content": "2Link removed to preserve anonymity.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 116 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 134, + 245, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 134, + 247, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 247, + 149 + ], + "score": 1.0, + "content": "2 THE GAN LANDSCAPE", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 161, + 207, + 173 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 209, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 209, + 175 + ], + "score": 1.0, + "content": "2.1 LOSS FUNCTIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 122, + 195 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 184, + 132, + 193 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 183, + 295, + 195 + ], + "score": 1.0, + "content": "denote the target (true) distribution and", + "type": "text" + }, + { + "bbox": [ + 296, + 184, + 305, + 195 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "the model distribution. Goodfellow et al. (2014)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "suggest two loss functions: the minimax GAN and the non-saturating (NS) GAN. In the former the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 205, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 506, + 217 + ], + "score": 1.0, + "content": "discriminator minimizes the negative log-likelihood for the binary classification task. In the latter", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "the generator maximizes the probability of generated samples being real. In this work we consider", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "the non-saturating loss as it is known to outperform the minimax variant. The corresponding loss", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 237, + 498, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 160, + 252 + ], + "score": 1.0, + "content": "functions are", + "type": "text" + }, + { + "bbox": [ + 160, + 238, + 369, + 251 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { { D } } } = - \\mathbb { E } _ { \\boldsymbol { x } \\sim P } [ \\log ( D ( \\boldsymbol { x } ) ) ] - \\mathbb { E } _ { \\hat { \\boldsymbol { x } } \\sim Q } [ \\log ( 1 - D ( \\boldsymbol { \\hat { x } } ) ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 237, + 387, + 252 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 387, + 238, + 494, + 251 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ \\bar { \\log ( D ( \\hat { x } ) ) } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 237, + 498, + 252 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 183, + 506, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 255, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 506, + 268 + ], + "score": 1.0, + "content": "In Wasserstein GAN (WGAN) (Arjovsky et al., 2017) the authors propose to consider the Wasserstein", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "divergence instead of the original Jensen-Shannon (JS). In particular, under the optimal discriminator,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "minimizing the proposed value function with respect to the generator minimizes the Wasserstein", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 287, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 180, + 300 + ], + "score": 1.0, + "content": "distance between", + "type": "text" + }, + { + "bbox": [ + 180, + 289, + 190, + 298 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 287, + 209, + 300 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 209, + 289, + 218, + 299 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 287, + 506, + 300 + ], + "score": 1.0, + "content": ". The drawback is that one has to ensure a 1-Lipschitz discriminator", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 478, + 312 + ], + "score": 1.0, + "content": "due to exploited Kantorovich-Rubenstein duality. The corresponding loss functions are", + "type": "text" + }, + { + "bbox": [ + 478, + 299, + 505, + 311 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathrm { D } } ~ =", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 308, + 340, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 231, + 322 + ], + "score": 0.91, + "content": "- \\mathbb { E } _ { x \\sim P } [ D ( x ) ] + \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 308, + 249, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 310, + 335, + 322 + ], + "score": 0.93, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 308, + 340, + 324 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 255, + 506, + 324 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 504, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 492, + 340 + ], + "score": 1.0, + "content": "Finally, we consider the least-squares loss (LS) which corresponds to minimizing the Pearson", + "type": "text" + }, + { + "bbox": [ + 492, + 327, + 504, + 340 + ], + "score": 0.87, + "content": "\\chi ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 186, + 351 + ], + "score": 1.0, + "content": "divergence between", + "type": "text" + }, + { + "bbox": [ + 186, + 339, + 195, + 349 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 339, + 213, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 213, + 339, + 222, + 350 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "(Mao et al., 2016). The intuition is that this loss function is smooth and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 350, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 505, + 362 + ], + "score": 1.0, + "content": "saturates slower than the sigmoid cross-entropy loss of the JS formulation. The corresponding loss", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 482, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 160, + 374 + ], + "score": 1.0, + "content": "functions are", + "type": "text" + }, + { + "bbox": [ + 160, + 360, + 344, + 373 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { D } } = - \\mathbb { E } _ { x \\sim P } \\overline { { [ ( D ( x ) - 1 ) ^ { 2 } ] } } + \\tilde { \\mathbb { E } } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 360, + 362, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 362, + 361, + 477, + 373 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ ( D ( \\hat { x } ) { \\bar { - } } 1 ) ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 360, + 482, + 374 + ], + "score": 1.0, + "content": "].", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 327, + 505, + 374 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 411, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 414, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 414, + 402 + ], + "score": 1.0, + "content": "2.2 REGULARIZATION AND NORMALIZATION OF THE DISCRIMINATOR", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 410, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 422 + ], + "score": 1.0, + "content": "Gradient norm penalty. In the context of Wasserstein GANs this penalty can be interpreted as", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 420, + 507, + 435 + ], + "spans": [ + { + "bbox": [ + 104, + 420, + 507, + 435 + ], + "score": 1.0, + "content": "a soft penalty for the violation of 1-Lipschitzness (WGAN GP) (Gulrajani et al., 2017). Hereby,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "score": 1.0, + "content": "the gradient is evaluated on a linear interpolation between training points and generated samples", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "as a proxy to the optimal coupling. The gradient penalty can also be evaluated around the data", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "manifold which encourages the discriminator to be piece-wise linear in that region (Dragan) (Kodali", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 478 + ], + "score": 1.0, + "content": "et al., 2017). However, the gradient norm penalty can be considered purely as a regularizer for the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 488 + ], + "score": 1.0, + "content": "discriminator and it was shown that it can improve the performance for other losses (Fedus et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "2018). Furthermore, the penalty can be scaled by the “confidence” of the discriminator in the context", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "score": 1.0, + "content": "of f-divergences (Roth et al., 2017). A drawback of gradient penalty (GP) regularization scheme", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 509, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 294, + 521 + ], + "score": 1.0, + "content": "is that it can depend on the model distribution", + "type": "text" + }, + { + "bbox": [ + 294, + 509, + 303, + 520 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 509, + 506, + 521 + ], + "score": 1.0, + "content": "which changes during training. One drawback of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "Dragan is that it is unclear to which extent the Gaussian assumption for the manifold holds. Finally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "computing the gradient norms implies a non-trivial running time penalty – essentially doubling the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "running time. We also investigate the impact of a regularizer ubiquitous in supervised learning – the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 553, + 288, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 119, + 564 + ], + "score": 0.85, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 553, + 288, + 565 + ], + "score": 1.0, + "content": "penalty on all the weights of the network.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 411, + 507, + 565 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "Discriminator normalization. Normalizing the discriminator can be useful from both the opti-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 593 + ], + "score": 1.0, + "content": "mization perspective (more efficient gradient flow, a more stable optimization), as well as from the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 593, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 604 + ], + "score": 1.0, + "content": "representation perspective – the representation richness of the layers in a neural network depends on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 430, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 430, + 615 + ], + "score": 1.0, + "content": "the spectral structure of the corresponding weight matrices (Miyato et al., 2018).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 570, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 506, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "From the optimization point of view, several techniques have found their way into the GAN literature,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "namely batch normalization (BN) (Ioffe and Szegedy, 2015) and layer normalization (LN) (Ba et al.,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 641, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 506, + 654 + ], + "score": 1.0, + "content": "2016). Batch normalization in the context of GANs was suggested by Denton et al. (2015) and further", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "popularized by Radford et al. (2016). It normalizes the pre-activations of nodes in a layer to mean", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 114, + 675 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 663, + 209, + 676 + ], + "score": 1.0, + "content": "and standard deviation", + "type": "text" + }, + { + "bbox": [ + 210, + 666, + 217, + 675 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 663, + 268, + 676 + ], + "score": 1.0, + "content": ", where both", + "type": "text" + }, + { + "bbox": [ + 269, + 664, + 276, + 675 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 663, + 294, + 676 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 295, + 665, + 303, + 675 + ], + "score": 0.83, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "are parameters learned for each node in the layer.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "The normalization is done on the batch level and for each node separately. In contrast, with Layer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 686, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 419, + 697 + ], + "score": 1.0, + "content": "normalization, all the hidden units in a layer share the same normalization terms", + "type": "text" + }, + { + "bbox": [ + 420, + 686, + 427, + 697 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 686, + 444, + 697 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 444, + 687, + 451, + 697 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 686, + 505, + 697 + ], + "score": 1.0, + "content": ", but different", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "samples are normalized differently (Ba et al., 2016). Layer normalization was first applied in the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 280, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 280, + 105 + ], + "score": 1.0, + "content": "context of GANs in Gulrajani et al. (2017).", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 619, + 506, + 697 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "samples are normalized differently (Ba et al., 2016). Layer normalization was first applied in the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 280, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 280, + 105 + ], + "score": 1.0, + "content": "context of GANs in Gulrajani et al. (2017).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "From the representation point of view, one has to consider the neural network as a composition of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 507, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 507, + 134 + ], + "score": 1.0, + "content": "(possibly non-linear) mappings and analyze their spectral properties. In particular, for the discrimina-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "tor to be a bounded linear operator it suffices to control the maximum singular value. This approach", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "is followed in Miyato et al. (2018) where the authors suggest dividing each weight matrix, including", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "the matrices representing convolutional kernels, by their spectral norm. Furthermore, the authors", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "argue that a key advantage of spectral normalization over competing approaches is that it results in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 228, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 228, + 189 + ], + "score": 1.0, + "content": "discriminators of higher rank.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 107, + 201, + 346, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 348, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 348, + 214 + ], + "score": 1.0, + "content": "2.3 GENERATOR AND DISCRIMINATOR ARCHITECTURE", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "We explore two classes of architectures in this study: deep convolutional generative adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "networks (DCGAN) (Radford et al., 2016) and residual networks (ResNet) (He et al., 2016), both of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "which are ubiquitous in GAN research. Recently, Miyato et al. (2018) defined a variation of DCGAN,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "so called SNDCGAN. Apart from minor updates (cf. Section 4) the main difference to DCGAN is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "score": 1.0, + "content": "the use of an eight-layer discriminator network. The details of both networks are summarized in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "Table 3. The other architecture, ResNet19, is an architecture with five ResNet blocks in the generator", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 365, + 301 + ], + "score": 1.0, + "content": "and six ResNet blocks in the discriminator, that can operate on", + "type": "text" + }, + { + "bbox": [ + 365, + 289, + 409, + 299 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "images. We follow the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "ResNet setup from Miyato et al. (2018), with the small difference that we simplified the design of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "discriminator. The detailed parameters of discriminator and generator are summarized in Table 4a and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "Table 4b. With this setup we were able to reproduce the current state of the art results. An ablation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 331, + 379, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 379, + 344 + ], + "score": 1.0, + "content": "study on various ResNet modifications is available in the Appendix.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 357, + 230, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 230, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 230, + 370 + ], + "score": 1.0, + "content": "2.4 EVALUATION METRICS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "We focus on several recently proposed metrics well suited to the image domain. For an in-depth", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 390, + 381, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 381, + 401 + ], + "score": 1.0, + "content": "overview of quantitative metrics we refer the reader to (Borji, 2018).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "Inception Score (IS). Proposed by Salimans et al. (2016), IS offers a way to quantitatively evaluate", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "the quality of generated samples. Intuitively, the conditional label distribution of samples containing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "meaningful objects should have low entropy, and the variability of the samples should be high. which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 190, + 453 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + }, + { + "bbox": [ + 191, + 439, + 352, + 451 + ], + "score": 0.92, + "content": "\\scriptstyle \\mathtt { I S } = \\exp ( \\mathbb { E } _ { x \\sim Q } [ d _ { K L } ^ { \\sim } ( p ( y \\mid x ) , p ( y ) ) ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 439, + 506, + 453 + ], + "score": 1.0, + "content": ". The authors found that this score is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "well-correlated with scores from human annotators. Drawbacks include insensitivity to the prior", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 331, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 331, + 474 + ], + "score": 1.0, + "content": "distribution over labels and not being a proper distance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "As an alternative Heusel et al. (2017) proposed the Frechet Inception Distance (FID). Samples from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 487, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 107, + 489, + 115, + 500 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 487, + 133, + 503 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 489, + 143, + 501 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 487, + 506, + 503 + ], + "score": 1.0, + "content": "are first embedded into a feature space (a specific layer of InceptionNet). Then, assuming", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "that the embedded data follows a multivariate Gaussian distribution, the mean and covariance are", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 452, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 452, + 523 + ], + "score": 1.0, + "content": "estimated. Finally, the Frechet distance between these two Gaussians is computed, i.e. ´", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 528, + 409, + 545 + ], + "lines": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "spans": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathtt { F I D } = | | \\mu _ { x } - \\mu _ { y } | | _ { 2 } ^ { 2 } + \\operatorname { T r } \\big ( \\Sigma _ { x } + \\Sigma _ { y } - 2 \\big ( \\Sigma _ { x } \\Sigma _ { y } \\big ) ^ { \\frac { 1 } { 2 } } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b6f8ed1562991b68fbd061fe2c043b6c232d23ac1a6f53fbb10018323336362d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 506, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 134, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 550, + 170, + 562 + ], + "score": 0.93, + "content": "\\left( \\mu _ { x } , \\Sigma _ { x } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 549, + 192, + 564 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 192, + 550, + 228, + 563 + ], + "score": 0.93, + "content": "( \\mu _ { y } , \\Sigma _ { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 549, + 477, + 564 + ], + "score": 1.0, + "content": "are the mean and covariance of the embedded samples from", + "type": "text" + }, + { + "bbox": [ + 478, + 551, + 487, + 560 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 115, + 573 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 561, + 506, + 575 + ], + "score": 1.0, + "content": ", respectively. The authors argue that FID is consistent with human judgment and more robust", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "to noise than IS. Furthermore, the score is sensitive to the visual quality of generated samples –", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "introducing noise or artifacts in the generated samples will reduce the FID. In contrast to IS, FID", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "can detect intra-class mode dropping, i.e. a model that generates only one image per class can score", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "a perfect IS, but will suffer from have a high FID (Lucic et al., 2018). Binkowski et al. ´ (2018)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 628 + ], + "score": 1.0, + "content": "argued that FID has no unbiased estimator and suggest Kernel Inception distance (KID) instead.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "In Appendix B we empirically compare KID to FID and observe that both metrics are very strongly", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "correlated (Spearman rank-order correlation coefficient of 0.994 for LSUN-BEDROOM and 0.995 for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "CELEBA-HQ-128 datasets). As a result we focus on FID as it is likely to result in the same ranking.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Multi-scale Structural Similarity for Image Quality (MS-SSIM) and Diversity. A critical issue", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "in GANs are mode collapse and mode-dropping – failing to capture a mode, or low-diversity of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "generated samples from a given mode. The MS-SSIM score (Wang et al., 2003) is used for measuring", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the similarity of two images where higher MS-SSIM score indicates more similar images. Several", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "recent works suggest using the average pairwise MS-SSIM score within a given class as a proxy for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "the diversity of generated samples (Odena et al., 2017; Fedus et al., 2018). The drawback of this", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 105 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "From the representation point of view, one has to consider the neural network as a composition of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 507, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 507, + 134 + ], + "score": 1.0, + "content": "(possibly non-linear) mappings and analyze their spectral properties. In particular, for the discrimina-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "tor to be a bounded linear operator it suffices to control the maximum singular value. This approach", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "is followed in Miyato et al. (2018) where the authors suggest dividing each weight matrix, including", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "the matrices representing convolutional kernels, by their spectral norm. Furthermore, the authors", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "argue that a key advantage of spectral normalization over competing approaches is that it results in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 228, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 228, + 189 + ], + "score": 1.0, + "content": "discriminators of higher rank.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 110, + 507, + 189 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 201, + 346, + 213 + ], + "lines": [ + { + "bbox": [ + 106, + 201, + 348, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 348, + 214 + ], + "score": 1.0, + "content": "2.3 GENERATOR AND DISCRIMINATOR ARCHITECTURE", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "We explore two classes of architectures in this study: deep convolutional generative adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 245 + ], + "score": 1.0, + "content": "networks (DCGAN) (Radford et al., 2016) and residual networks (ResNet) (He et al., 2016), both of", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "which are ubiquitous in GAN research. Recently, Miyato et al. (2018) defined a variation of DCGAN,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 255, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 506, + 267 + ], + "score": 1.0, + "content": "so called SNDCGAN. Apart from minor updates (cf. Section 4) the main difference to DCGAN is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 278 + ], + "score": 1.0, + "content": "the use of an eight-layer discriminator network. The details of both networks are summarized in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 290 + ], + "score": 1.0, + "content": "Table 3. The other architecture, ResNet19, is an architecture with five ResNet blocks in the generator", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 288, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 365, + 301 + ], + "score": 1.0, + "content": "and six ResNet blocks in the discriminator, that can operate on", + "type": "text" + }, + { + "bbox": [ + 365, + 289, + 409, + 299 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 288, + 505, + 301 + ], + "score": 1.0, + "content": "images. We follow the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "ResNet setup from Miyato et al. (2018), with the small difference that we simplified the design of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "discriminator. The detailed parameters of discriminator and generator are summarized in Table 4a and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "Table 4b. With this setup we were able to reproduce the current state of the art results. An ablation", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 331, + 379, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 379, + 344 + ], + "score": 1.0, + "content": "study on various ResNet modifications is available in the Appendix.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 222, + 506, + 344 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 357, + 230, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 230, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 230, + 370 + ], + "score": 1.0, + "content": "2.4 EVALUATION METRICS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "We focus on several recently proposed metrics well suited to the image domain. For an in-depth", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 390, + 381, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 381, + 401 + ], + "score": 1.0, + "content": "overview of quantitative metrics we refer the reader to (Borji, 2018).", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 377, + 505, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "Inception Score (IS). Proposed by Salimans et al. (2016), IS offers a way to quantitatively evaluate", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 431 + ], + "score": 1.0, + "content": "the quality of generated samples. Intuitively, the conditional label distribution of samples containing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "meaningful objects should have low entropy, and the variability of the samples should be high. which", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 190, + 453 + ], + "score": 1.0, + "content": "can be expressed as", + "type": "text" + }, + { + "bbox": [ + 191, + 439, + 352, + 451 + ], + "score": 0.92, + "content": "\\scriptstyle \\mathtt { I S } = \\exp ( \\mathbb { E } _ { x \\sim Q } [ d _ { K L } ^ { \\sim } ( p ( y \\mid x ) , p ( y ) ) ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 439, + 506, + 453 + ], + "score": 1.0, + "content": ". The authors found that this score is", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "well-correlated with scores from human annotators. Drawbacks include insensitivity to the prior", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 331, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 331, + 474 + ], + "score": 1.0, + "content": "distribution over labels and not being a proper distance.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 406, + 506, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 505, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "As an alternative Heusel et al. (2017) proposed the Frechet Inception Distance (FID). Samples from", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 487, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 107, + 489, + 115, + 500 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 487, + 133, + 503 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 489, + 143, + 501 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 487, + 506, + 503 + ], + "score": 1.0, + "content": "are first embedded into a feature space (a specific layer of InceptionNet). Then, assuming", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "that the embedded data follows a multivariate Gaussian distribution, the mean and covariance are", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 511, + 452, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 452, + 523 + ], + "score": 1.0, + "content": "estimated. Finally, the Frechet distance between these two Gaussians is computed, i.e. ´", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 477, + 506, + 523 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 528, + 409, + 545 + ], + "lines": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "spans": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathtt { F I D } = | | \\mu _ { x } - \\mu _ { y } | | _ { 2 } ^ { 2 } + \\operatorname { T r } \\big ( \\Sigma _ { x } + \\Sigma _ { y } - 2 \\big ( \\Sigma _ { x } \\Sigma _ { y } \\big ) ^ { \\frac { 1 } { 2 } } \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "b6f8ed1562991b68fbd061fe2c043b6c232d23ac1a6f53fbb10018323336362d.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 200, + 528, + 409, + 545 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 506, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 134, + 564 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 550, + 170, + 562 + ], + "score": 0.93, + "content": "\\left( \\mu _ { x } , \\Sigma _ { x } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 549, + 192, + 564 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 192, + 550, + 228, + 563 + ], + "score": 0.93, + "content": "( \\mu _ { y } , \\Sigma _ { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 549, + 477, + 564 + ], + "score": 1.0, + "content": "are the mean and covariance of the embedded samples from", + "type": "text" + }, + { + "bbox": [ + 478, + 551, + 487, + 560 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 115, + 573 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 561, + 506, + 575 + ], + "score": 1.0, + "content": ", respectively. The authors argue that FID is consistent with human judgment and more robust", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "to noise than IS. Furthermore, the score is sensitive to the visual quality of generated samples –", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "introducing noise or artifacts in the generated samples will reduce the FID. In contrast to IS, FID", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "can detect intra-class mode dropping, i.e. a model that generates only one image per class can score", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 617 + ], + "score": 1.0, + "content": "a perfect IS, but will suffer from have a high FID (Lucic et al., 2018). Binkowski et al. ´ (2018)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 628 + ], + "score": 1.0, + "content": "argued that FID has no unbiased estimator and suggest Kernel Inception distance (KID) instead.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "In Appendix B we empirically compare KID to FID and observe that both metrics are very strongly", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "correlated (Spearman rank-order correlation coefficient of 0.994 for LSUN-BEDROOM and 0.995 for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "CELEBA-HQ-128 datasets). As a result we focus on FID as it is likely to result in the same ranking.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 549, + 507, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "Multi-scale Structural Similarity for Image Quality (MS-SSIM) and Diversity. A critical issue", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "in GANs are mode collapse and mode-dropping – failing to capture a mode, or low-diversity of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "generated samples from a given mode. The MS-SSIM score (Wang et al., 2003) is used for measuring", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the similarity of two images where higher MS-SSIM score indicates more similar images. Several", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "recent works suggest using the average pairwise MS-SSIM score within a given class as a proxy for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "the diversity of generated samples (Odena et al., 2017; Fedus et al., 2018). The drawback of this", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "approach is that we do not know the class corresponding to the generated sample, so it is usually", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "applied on one-class data sets, such as CELEBA-HQ-128. In this work we use the same setup as", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 320, + 268 + ], + "score": 1.0, + "content": "in Fedus et al. (2018). In particular, given a batch size", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 320, + 256, + 326, + 266 + ], + "score": 0.61, + "content": "b", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 326, + 254, + 506, + 268 + ], + "score": 1.0, + "content": ", we compute the average pairwise MS-SSIM", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 194, + 279 + ], + "score": 1.0, + "content": "score on 5 batches, of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 195, + 266, + 268, + 278 + ], + "score": 0.92, + "content": "5 \\times b \\times ( b - 1 ) / 2", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 268, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "image pairs in total. We stress that the diversity should only", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 277, + 345, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 299, + 289 + ], + "score": 1.0, + "content": "be taken into account together with the FID and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 300, + 278, + 311, + 288 + ], + "score": 0.35, + "content": "I S", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 311, + 277, + 345, + 289 + ], + "score": 1.0, + "content": "metrics.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 666, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 138, + 307, + 210 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Hyperparameter ranges used in this study. The Cartesian product of the fixed values suffices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "score": 1.0, + "content": "to uncover the existing results. Gaussian Process optimization in the bandit setting (Srinivas et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 101, + 424, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 424, + 116 + ], + "score": 1.0, + "content": "2010) is used to select good hyperparameter settings from the specified ranges.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_caption", + "bbox": [ + 167, + 123, + 226, + 134 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 123, + 227, + 134 + ], + "spans": [ + { + "bbox": [ + 165, + 123, + 227, + 134 + ], + "score": 1.0, + "content": "(a) Fixed values", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 106, + 138, + 307, + 210 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 138, + 307, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 307, + 210 + ], + "score": 0.97, + "html": "
PARAMETERDISCRETE VALUE
Learning rate α{0.0002,0.0001,0.001}
Reg. strength 入{1,10}
(β1,β2,ndis){(0.5,0.900,5), (0.5,0.999,1), (0.5,0.999,5), (0.9,0.999,5)}
", + "type": "table", + "image_path": "5b538da34a3ed222dafa89ec8eb797b9aceb13eabaf767453d4ccb5b8d38cf29.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 138, + 307, + 152.4 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 152.4, + 307, + 166.8 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 166.8, + 307, + 181.20000000000002 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 181.20000000000002, + 307, + 195.60000000000002 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 195.60000000000002, + 307, + 210.00000000000003 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 3 + }, + { + "type": "table", + "bbox": [ + 333, + 138, + 493, + 212 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 343, + 123, + 485, + 134 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 342, + 122, + 486, + 136 + ], + "spans": [ + { + "bbox": [ + 342, + 122, + 486, + 136 + ], + "score": 1.0, + "content": "(b) Gaussian Process regression ranges", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 333, + 138, + 493, + 212 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 333, + 138, + 493, + 212 + ], + "spans": [ + { + "bbox": [ + 333, + 138, + 493, + 212 + ], + "score": 0.926, + "html": "
PARAMETERRANGELOG
Learning rate α[10-5,10-2]Yes
入 for L2[10-4,101]Yes
入 for non-L2[10-1,102]Yes
β1×β[0,1] × [0,1]No
", + "type": "table", + "image_path": "4d1f194fba1fef258921265d4927c729e33c5909fbd7dc85dc8411aace932d66.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 333, + 138, + 493, + 152.8 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 333, + 152.8, + 493, + 167.60000000000002 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 333, + 167.60000000000002, + 493, + 182.40000000000003 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 333, + 182.40000000000003, + 493, + 197.20000000000005 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 333, + 197.20000000000005, + 493, + 212.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "approach is that we do not know the class corresponding to the generated sample, so it is usually", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 506, + 257 + ], + "score": 1.0, + "content": "applied on one-class data sets, such as CELEBA-HQ-128. In this work we use the same setup as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 254, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 320, + 268 + ], + "score": 1.0, + "content": "in Fedus et al. (2018). In particular, given a batch size", + "type": "text" + }, + { + "bbox": [ + 320, + 256, + 326, + 266 + ], + "score": 0.61, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 254, + 506, + 268 + ], + "score": 1.0, + "content": ", we compute the average pairwise MS-SSIM", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 194, + 279 + ], + "score": 1.0, + "content": "score on 5 batches, of", + "type": "text" + }, + { + "bbox": [ + 195, + 266, + 268, + 278 + ], + "score": 0.92, + "content": "5 \\times b \\times ( b - 1 ) / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "image pairs in total. We stress that the diversity should only", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 277, + 345, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 277, + 299, + 289 + ], + "score": 1.0, + "content": "be taken into account together with the FID and", + "type": "text" + }, + { + "bbox": [ + 300, + 278, + 311, + 288 + ], + "score": 0.35, + "content": "I S", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 277, + 345, + 289 + ], + "score": 1.0, + "content": "metrics.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 107, + 303, + 179, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 181, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 181, + 316 + ], + "score": 1.0, + "content": "2.5 DATA SETS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 481, + 335 + ], + "score": 1.0, + "content": "We consider three data sets, namely CIFAR10, CELEBA-HQ-128, and LSUN-BEDROOM.", + "type": "text" + }, + { + "bbox": [ + 486, + 325, + 505, + 335 + ], + "score": 1.0, + "content": "The", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 103, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 103, + 334, + 485, + 348 + ], + "score": 1.0, + "content": "LSUN-BEDROOM data set (Yu et al., 2015) contains slightly more than 3 million images3.", + "type": "text" + }, + { + "bbox": [ + 488, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 346, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 357 + ], + "score": 1.0, + "content": "randomly partition the images into a train and test set whereby we use 30588 images as the test", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "set. Secondly, we use the CELEBA-HQ data set of 30k images (Karras et al., 2018). We use the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 164, + 378 + ], + "score": 0.92, + "content": "1 2 8 \\times 1 2 8 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "version obtained by running the code provided by the authors.4 We use 3000 examples", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "as the test set and the remaining examples as the training set. Finally, we also include the CIFAR10", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 253, + 402 + ], + "score": 1.0, + "content": "data set which contains 70K images", + "type": "text" + }, + { + "bbox": [ + 253, + 390, + 293, + 401 + ], + "score": 0.69, + "content": "\\left( 3 2 \\mathbf { x } 3 2 \\mathbf { x } 3 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 390, + 505, + 402 + ], + "score": 1.0, + "content": ", partitioned into 60000 training instances and 10000", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 399, + 507, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 507, + 414 + ], + "score": 1.0, + "content": "testing instances. The baseline FID scores are 12.6 for CELEBA-HQ-128, 3.8 for LSUN-BEDROOM,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 411, + 421, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 421, + 424 + ], + "score": 1.0, + "content": "and 5.19 for CIFAR10. Details on FID computation are presented in Section 4.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 283, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 284, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 284, + 450 + ], + "score": 1.0, + "content": "2.6 EXPLORING THE GAN LANDSCAPE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 507, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 507, + 471 + ], + "score": 1.0, + "content": "The search space for GANs is prohibitively expensive: exploring all combinations of all losses,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "normalization and regularization schemes, and architectures is outside of the practical realm. Instead,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "in this study we analyze several slices of this tensor for each data set. In particular, to ensure that we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "can reproduce existing results, we perform a study over the subset of this tensor on CIFAR10. We then", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "proceed to analyze the performance of these models across CELEBA-HQ-128 and LSUN-BEDROOM.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "In Section 3.1 we fix everything but the loss. In Section 3.2 we fix everything but the regularization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "and normalization scheme. Finally, in Section 3.3 we fix everything but the architecture. This allows", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 536, + 478, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 478, + 547 + ], + "score": 1.0, + "content": "us to decouple some of these design choices and provide some insight on what matters most.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "As noted in Lucic et al. (2018), one major issue preventing further progress is the hyperparameter", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "tuning – currently, the community has converged to a small set of parameter values which work on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "some data sets, and may completely fail on others. In this study we combine the best hyperparameter", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "settings found in the literature (Miyato et al., 2018), and perform Gaussian Process regression in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "bandit setting (Srinivas et al., 2010) to possibly uncover better hyperparameter settings. We then", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 460, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 460, + 619 + ], + "score": 1.0, + "content": "consider the top performing models and discuss the impact of the computational budget.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "We summarize the fixed hyperparameter settings in Table 1a which contains the “good” parameters", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "reported in recent publications (Fedus et al., 2018; Miyato et al., 2018; Gulrajani et al., 2017). In", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "particular, we consider the cross product of these parameters to obtain 24 hyperparameter settings to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "reduce the bias. Finally, to provide a fair comparison, we perform Gaussian Process optimization", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "in the bandit setting (Srinivas et al., 2010) on the parameter ranges provided in Table 1b. We run", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "12 rounds (i.e. we communicate with the oracle 12 times) of the optimization, each with a batch of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 689, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 507, + 702 + ], + "score": 1.0, + "content": "10 hyperparameter sets selected based on the FID scores from the results of the previous iterations.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 710, + 487, + 732 + ], + "lines": [ + { + "bbox": [ + 120, + 707, + 479, + 723 + ], + "spans": [ + { + "bbox": [ + 120, + 707, + 240, + 723 + ], + "score": 1.0, + "content": "3The images are preprocessed to", + "type": "text" + }, + { + "bbox": [ + 240, + 711, + 296, + 720 + ], + "score": 0.94, + "content": "1 2 8 \\times 1 2 8 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 707, + 479, + 723 + ], + "score": 1.0, + "content": "using TensorFlow resize image with crop or pad.", + "type": "text" + } + ] + }, + { + "bbox": [ + 120, + 719, + 488, + 734 + ], + "spans": [ + { + "bbox": [ + 120, + 719, + 488, + 734 + ], + "score": 1.0, + "content": "4Available online at https://github.com/tkarras/progressive_growing_of_gans.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 138, + 307, + 210 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Hyperparameter ranges used in this study. The Cartesian product of the fixed values suffices", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "score": 1.0, + "content": "to uncover the existing results. Gaussian Process optimization in the bandit setting (Srinivas et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 101, + 424, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 424, + 116 + ], + "score": 1.0, + "content": "2010) is used to select good hyperparameter settings from the specified ranges.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_caption", + "bbox": [ + 167, + 123, + 226, + 134 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 123, + 227, + 134 + ], + "spans": [ + { + "bbox": [ + 165, + 123, + 227, + 134 + ], + "score": 1.0, + "content": "(a) Fixed values", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 106, + 138, + 307, + 210 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 138, + 307, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 307, + 210 + ], + "score": 0.97, + "html": "
PARAMETERDISCRETE VALUE
Learning rate α{0.0002,0.0001,0.001}
Reg. strength 入{1,10}
(β1,β2,ndis){(0.5,0.900,5), (0.5,0.999,1), (0.5,0.999,5), (0.9,0.999,5)}
", + "type": "table", + "image_path": "5b538da34a3ed222dafa89ec8eb797b9aceb13eabaf767453d4ccb5b8d38cf29.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 138, + 307, + 152.4 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 152.4, + 307, + 166.8 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 166.8, + 307, + 181.20000000000002 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 181.20000000000002, + 307, + 195.60000000000002 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 195.60000000000002, + 307, + 210.00000000000003 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 3 + }, + { + "type": "table", + "bbox": [ + 333, + 138, + 493, + 212 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 343, + 123, + 485, + 134 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 342, + 122, + 486, + 136 + ], + "spans": [ + { + "bbox": [ + 342, + 122, + 486, + 136 + ], + "score": 1.0, + "content": "(b) Gaussian Process regression ranges", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 333, + 138, + 493, + 212 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 333, + 138, + 493, + 212 + ], + "spans": [ + { + "bbox": [ + 333, + 138, + 493, + 212 + ], + "score": 0.926, + "html": "
PARAMETERRANGELOG
Learning rate α[10-5,10-2]Yes
入 for L2[10-4,101]Yes
入 for non-L2[10-1,102]Yes
β1×β[0,1] × [0,1]No
", + "type": "table", + "image_path": "4d1f194fba1fef258921265d4927c729e33c5909fbd7dc85dc8411aace932d66.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 333, + 138, + 493, + 152.8 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 333, + 152.8, + 493, + 167.60000000000002 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 333, + 167.60000000000002, + 493, + 182.40000000000003 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 333, + 182.40000000000003, + 493, + 197.20000000000005 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 333, + 197.20000000000005, + 493, + 212.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 505, + 288 + ], + "lines": [], + "index": 17, + "bbox_fs": [ + 105, + 233, + 506, + 289 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 303, + 179, + 314 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 181, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 181, + 316 + ], + "score": 1.0, + "content": "2.5 DATA SETS", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 324, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 481, + 335 + ], + "score": 1.0, + "content": "We consider three data sets, namely CIFAR10, CELEBA-HQ-128, and LSUN-BEDROOM.", + "type": "text" + }, + { + "bbox": [ + 486, + 325, + 505, + 335 + ], + "score": 1.0, + "content": "The", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 103, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 103, + 334, + 485, + 348 + ], + "score": 1.0, + "content": "LSUN-BEDROOM data set (Yu et al., 2015) contains slightly more than 3 million images3.", + "type": "text" + }, + { + "bbox": [ + 488, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 346, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 357 + ], + "score": 1.0, + "content": "randomly partition the images into a train and test set whereby we use 30588 images as the test", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 369 + ], + "score": 1.0, + "content": "set. Secondly, we use the CELEBA-HQ data set of 30k images (Karras et al., 2018). We use the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 164, + 378 + ], + "score": 0.92, + "content": "1 2 8 \\times 1 2 8 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "version obtained by running the code provided by the authors.4 We use 3000 examples", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "as the test set and the remaining examples as the training set. Finally, we also include the CIFAR10", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 253, + 402 + ], + "score": 1.0, + "content": "data set which contains 70K images", + "type": "text" + }, + { + "bbox": [ + 253, + 390, + 293, + 401 + ], + "score": 0.69, + "content": "\\left( 3 2 \\mathbf { x } 3 2 \\mathbf { x } 3 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 390, + 505, + 402 + ], + "score": 1.0, + "content": ", partitioned into 60000 training instances and 10000", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 399, + 507, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 507, + 414 + ], + "score": 1.0, + "content": "testing instances. The baseline FID scores are 12.6 for CELEBA-HQ-128, 3.8 for LSUN-BEDROOM,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 411, + 421, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 421, + 424 + ], + "score": 1.0, + "content": "and 5.19 for CIFAR10. Details on FID computation are presented in Section 4.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 103, + 324, + 507, + 424 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 437, + 283, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 284, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 284, + 450 + ], + "score": 1.0, + "content": "2.6 EXPLORING THE GAN LANDSCAPE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 458, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 507, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 507, + 471 + ], + "score": 1.0, + "content": "The search space for GANs is prohibitively expensive: exploring all combinations of all losses,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "normalization and regularization schemes, and architectures is outside of the practical realm. Instead,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "in this study we analyze several slices of this tensor for each data set. In particular, to ensure that we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "can reproduce existing results, we perform a study over the subset of this tensor on CIFAR10. We then", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "proceed to analyze the performance of these models across CELEBA-HQ-128 and LSUN-BEDROOM.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "In Section 3.1 we fix everything but the loss. In Section 3.2 we fix everything but the regularization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "and normalization scheme. Finally, in Section 3.3 we fix everything but the architecture. This allows", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 536, + 478, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 478, + 547 + ], + "score": 1.0, + "content": "us to decouple some of these design choices and provide some insight on what matters most.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 457, + 507, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "As noted in Lucic et al. (2018), one major issue preventing further progress is the hyperparameter", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "tuning – currently, the community has converged to a small set of parameter values which work on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "some data sets, and may completely fail on others. In this study we combine the best hyperparameter", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "settings found in the literature (Miyato et al., 2018), and perform Gaussian Process regression in the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "bandit setting (Srinivas et al., 2010) to possibly uncover better hyperparameter settings. We then", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 607, + 460, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 460, + 619 + ], + "score": 1.0, + "content": "consider the top performing models and discuss the impact of the computational budget.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 551, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 505, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 636 + ], + "score": 1.0, + "content": "We summarize the fixed hyperparameter settings in Table 1a which contains the “good” parameters", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "reported in recent publications (Fedus et al., 2018; Miyato et al., 2018; Gulrajani et al., 2017). In", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "particular, we consider the cross product of these parameters to obtain 24 hyperparameter settings to", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 505, + 668 + ], + "score": 1.0, + "content": "reduce the bias. Finally, to provide a fair comparison, we perform Gaussian Process optimization", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "in the bandit setting (Srinivas et al., 2010) on the parameter ranges provided in Table 1b. We run", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "12 rounds (i.e. we communicate with the oracle 12 times) of the optimization, each with a batch of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 689, + 507, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 507, + 702 + ], + "score": 1.0, + "content": "10 hyperparameter sets selected based on the FID scores from the results of the previous iterations.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 623, + 507, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 79, + 503, + 269 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 503, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 503, + 269 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 503, + 269 + ], + "score": 0.973, + "type": "image", + "image_path": "f7632ddba45f2ade2676217c086988ad49718568456061ecaba4e597982b4dfe.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 503, + 142.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 142.33333333333334, + 503, + 205.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 205.66666666666669, + 503, + 269.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 279, + 505, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 355, + 291 + ], + "score": 1.0, + "content": "Figure 1: Impact of the loss function: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 355, + 279, + 370, + 290 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "models. The non-saturating (NS)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "loss is stable over both data sets. Gradient penalty and spectral normalization improve the sample", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 301, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 313 + ], + "score": 1.0, + "content": "quality. From the computational budget perspective (i.e. how many models one needs to train to reach", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "score": 1.0, + "content": "a certain FID), both spectral normalization and gradient penalty perform better than the baseline, but", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 323, + 220, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 220, + 335 + ], + "score": 1.0, + "content": "the former is more efficient.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "As we explore the number of discriminator updates per generator update (1 or 5), this leads to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "an additional 240 hyperparameter settings which in some cases outperform the previously known", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 383, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 394 + ], + "score": 1.0, + "content": "hyperparameter settings. Batch size is set to 64 for all the experiments. We use a fixed the number of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "discriminator update steps of 100K for LSUN-BEDROOM data set and CELEBA-HQ-128 data set, and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 404, + 441, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 441, + 417 + ], + "score": 1.0, + "content": "200K for CIFAR10 data set. We apply the Adam optimizer (Kingma and Ba, 2015).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 109, + 436, + 264, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 266, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 266, + 452 + ], + "score": 1.0, + "content": "3 RESULTS AND DISCUSSION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Given that there are 4 major components (loss, architecture, regularization, normalization) to analyze", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "for each data set, it is infeasible to explore the whole landscape. Hence, we opt for a more pragmatic", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "solution – we keep some dimensions fixed, and vary the others. For each experiment we highlight", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 282, + 510 + ], + "score": 1.0, + "content": "three aspects: (1) FID distribution of the top", + "type": "text" + }, + { + "bbox": [ + 283, + 498, + 298, + 509 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "of the trained models, (2) the corresponding sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "diversity score, and (3) the tradeoff between the computational budget (i.e. number of models to train)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "and model quality in terms of FID. Each model was retrained 5 times with a different random seed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "and we report the median score. The variance for models obtained by Gaussian Process regression is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 541, + 300, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 300, + 554 + ], + "score": 1.0, + "content": "handled implicitly so we train each model once.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 571, + 270, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 272, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 272, + 583 + ], + "score": 1.0, + "content": "3.1 IMPACT OF THE LOSS FUNCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Here the loss is either the non-saturating loss (NS) (Goodfellow et al., 2014), the least-squares", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "loss (LS) (Mao et al., 2016), or the Wasserstein loss (WGAN) (Arjovsky et al., 2017). We use the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "ResNet19 with generator and discriminator architectures detailed in Table 4a. We consider the most", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "prominent normalization and regularization approaches: gradient penalty (Gulrajani et al., 2017), and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "spectral normalization (Miyato et al., 2018). Both studies were performed on CELEBA-HQ-128 and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 649, + 373, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 373, + 660 + ], + "score": 1.0, + "content": "LSUN-BEDROOM with hyperparameter settings shown in Table 1a.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "The results are presented in Figure 1. We observe that the non-saturating loss is stable over both", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "data sets. Spectral normalization improves the quality of the model on both data sets. Similarly,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "the gradient penalty can help improve the quality of the model, but finding a good regularization", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "tradeoff is non-trivial and requires a high computational budget. Models using the GP penalty benefit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "from 5:1 ratio of discriminator to generator updates as suggested by (Gulrajani et al., 2017). We also", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 720, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 447, + 733 + ], + "score": 1.0, + "content": "performed a study on hinge loss (Miyato et al., 2018) and present it in the Appendix.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 309, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 79, + 503, + 269 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 503, + 269 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 503, + 269 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 503, + 269 + ], + "score": 0.973, + "type": "image", + "image_path": "f7632ddba45f2ade2676217c086988ad49718568456061ecaba4e597982b4dfe.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 503, + 142.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 142.33333333333334, + 503, + 205.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 205.66666666666669, + 503, + 269.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 279, + 505, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 355, + 291 + ], + "score": 1.0, + "content": "Figure 1: Impact of the loss function: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 355, + 279, + 370, + 290 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "models. The non-saturating (NS)", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 302 + ], + "score": 1.0, + "content": "loss is stable over both data sets. Gradient penalty and spectral normalization improve the sample", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 301, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 506, + 313 + ], + "score": 1.0, + "content": "quality. From the computational budget perspective (i.e. how many models one needs to train to reach", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 325 + ], + "score": 1.0, + "content": "a certain FID), both spectral normalization and gradient penalty perform better than the baseline, but", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 323, + 220, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 220, + 335 + ], + "score": 1.0, + "content": "the former is more efficient.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 360, + 505, + 416 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "score": 1.0, + "content": "As we explore the number of discriminator updates per generator update (1 or 5), this leads to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 372, + 505, + 384 + ], + "score": 1.0, + "content": "an additional 240 hyperparameter settings which in some cases outperform the previously known", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 383, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 394 + ], + "score": 1.0, + "content": "hyperparameter settings. Batch size is set to 64 for all the experiments. We use a fixed the number of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "discriminator update steps of 100K for LSUN-BEDROOM data set and CELEBA-HQ-128 data set, and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 404, + 441, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 441, + 417 + ], + "score": 1.0, + "content": "200K for CIFAR10 data set. We apply the Adam optimizer (Kingma and Ba, 2015).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 360, + 506, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 436, + 264, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 266, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 266, + 452 + ], + "score": 1.0, + "content": "3 RESULTS AND DISCUSSION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Given that there are 4 major components (loss, architecture, regularization, normalization) to analyze", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "for each data set, it is infeasible to explore the whole landscape. Hence, we opt for a more pragmatic", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 499 + ], + "score": 1.0, + "content": "solution – we keep some dimensions fixed, and vary the others. For each experiment we highlight", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 282, + 510 + ], + "score": 1.0, + "content": "three aspects: (1) FID distribution of the top", + "type": "text" + }, + { + "bbox": [ + 283, + 498, + 298, + 509 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "of the trained models, (2) the corresponding sample", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "diversity score, and (3) the tradeoff between the computational budget (i.e. number of models to train)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "and model quality in terms of FID. Each model was retrained 5 times with a different random seed", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "and we report the median score. The variance for models obtained by Gaussian Process regression is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 541, + 300, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 300, + 554 + ], + "score": 1.0, + "content": "handled implicitly so we train each model once.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 464, + 506, + 554 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 571, + 270, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 272, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 272, + 583 + ], + "score": 1.0, + "content": "3.1 IMPACT OF THE LOSS FUNCTION", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 594, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "Here the loss is either the non-saturating loss (NS) (Goodfellow et al., 2014), the least-squares", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "loss (LS) (Mao et al., 2016), or the Wasserstein loss (WGAN) (Arjovsky et al., 2017). We use the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 628 + ], + "score": 1.0, + "content": "ResNet19 with generator and discriminator architectures detailed in Table 4a. We consider the most", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "prominent normalization and regularization approaches: gradient penalty (Gulrajani et al., 2017), and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "spectral normalization (Miyato et al., 2018). Both studies were performed on CELEBA-HQ-128 and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 649, + 373, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 373, + 660 + ], + "score": 1.0, + "content": "LSUN-BEDROOM with hyperparameter settings shown in Table 1a.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 594, + 506, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "The results are presented in Figure 1. We observe that the non-saturating loss is stable over both", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "data sets. Spectral normalization improves the quality of the model on both data sets. Similarly,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "the gradient penalty can help improve the quality of the model, but finding a good regularization", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "tradeoff is non-trivial and requires a high computational budget. Models using the GP penalty benefit", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "from 5:1 ratio of discriminator to generator updates as suggested by (Gulrajani et al., 2017). We also", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 720, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 104, + 720, + 447, + 733 + ], + "score": 1.0, + "content": "performed a study on hinge loss (Miyato et al., 2018) and present it in the Appendix.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 666, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 79, + 503, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 503, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 503, + 263 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 503, + 263 + ], + "score": 0.971, + "type": "image", + "image_path": "82e848101388335cba5420ecc90eab32f9659adccd2f642efa36a986d2c1d407.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 503, + 140.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 140.33333333333334, + 503, + 201.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 201.66666666666669, + 503, + 263.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 274, + 505, + 318 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 274, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 430, + 286 + ], + "score": 1.0, + "content": "Figure 2: Impact of regularization and normalization: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 430, + 274, + 445, + 285 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 274, + 506, + 286 + ], + "score": 1.0, + "content": "models. Both", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "gradient penalty (GP) and spectral normalization (SN) outperform the baseline and should be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "considered, while former being more computationally expensive. Unfortunately none fully address", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 306, + 185, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 185, + 320 + ], + "score": 1.0, + "content": "the stability issues.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 107, + 343, + 355, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 357, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 357, + 356 + ], + "score": 1.0, + "content": "3.2 IMPACT OF REGULARIZATION AND NORMALIZATION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 377 + ], + "score": 1.0, + "content": "The goal of this study is to compare the relative performance of various regularization and normaliza-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 376, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 387 + ], + "score": 1.0, + "content": "tion methods presented in the literature. To this end, and based on the loss study, we fix the loss to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "non-saturating loss (Goodfellow et al., 2014). We use the ResNet19 with generator and discriminator", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "architectures described in Table 4a. Finally, we consider batch normalization (BN) (Ioffe and Szegedy,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "2015), layer normalization (LN) (Ba et al., 2016), spectral normalization (SN), gradient penalty", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 412, + 431 + ], + "score": 1.0, + "content": "(GP) (Gulrajani et al., 2017), dragan penalty (DR) (Kodali et al., 2017), or", + "type": "text" + }, + { + "bbox": [ + 413, + 420, + 425, + 431 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "regularization. We", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "consider both CELEBA-HQ-128 and LSUN-BEDROOM with the hyperparameter settings shown in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "score": 1.0, + "content": "Table 1a and Table 1b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "The results are presented in Figure 2. We observe that adding batch norm to the discriminator hurts", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "the performance. Secondly, gradient penalty can help, but it doesn’t stabilize the training. In fact,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "it is non-trivial to strike a balance of the loss and regularization strength. Spectral normalization", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "helps improve the model quality and is more computationally efficient than gradient penalty. This", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 501, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 104, + 501, + 506, + 516 + ], + "score": 1.0, + "content": "is consistent with recent results in Zhang et al. (2018). Similarly to the loss study, models using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "GP penalty benefit from 5:1 ratio of discriminator to generator updates. Furthermore, in a separate", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "ablation study we observed that running the optimization procedure for an additional 100K steps is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 535, + 370, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 370, + 549 + ], + "score": 1.0, + "content": "likely to increase the performance of the models with GP penalty.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Impact of Simultaneous Regularization and Normalization. Given the folklore that the Lips-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "chitz constant of the discriminator is critical for the performance, one may expect simultaneous", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "image", + "bbox": [ + 108, + 596, + 504, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 596, + 504, + 686 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 596, + 504, + 686 + ], + "spans": [ + { + "bbox": [ + 108, + 596, + 504, + 686 + ], + "score": 0.957, + "type": "image", + "image_path": "46e4df44d5fbb143416866b4220f7afea497ffb5bb5691af926e9d009ed5d8ec.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 108, + 596, + 504, + 626.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 626.0, + 504, + 656.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 656.0, + 504, + 686.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 695, + 504, + 729 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 489, + 707 + ], + "score": 1.0, + "content": "Figure 3: Impact of simultaneous normalization and regularization: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 489, + 695, + 505, + 706 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 707, + 505, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 719 + ], + "score": 1.0, + "content": "models. Gradient penalty coupled with spectral normalization (SN) or layer normalization (LN)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 717, + 321, + 730 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 321, + 730 + ], + "score": 1.0, + "content": "strongly improves the performance over the baseline.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + } + ], + "index": 28.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 79, + 503, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 79, + 503, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 79, + 503, + 263 + ], + "spans": [ + { + "bbox": [ + 108, + 79, + 503, + 263 + ], + "score": 0.971, + "type": "image", + "image_path": "82e848101388335cba5420ecc90eab32f9659adccd2f642efa36a986d2c1d407.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 79, + 503, + 140.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 140.33333333333334, + 503, + 201.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 201.66666666666669, + 503, + 263.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 274, + 505, + 318 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 274, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 430, + 286 + ], + "score": 1.0, + "content": "Figure 2: Impact of regularization and normalization: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 430, + 274, + 445, + 285 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 274, + 506, + 286 + ], + "score": 1.0, + "content": "models. Both", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 104, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "gradient penalty (GP) and spectral normalization (SN) outperform the baseline and should be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 308 + ], + "score": 1.0, + "content": "considered, while former being more computationally expensive. Unfortunately none fully address", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 306, + 185, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 185, + 320 + ], + "score": 1.0, + "content": "the stability issues.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "title", + "bbox": [ + 107, + 343, + 355, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 357, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 357, + 356 + ], + "score": 1.0, + "content": "3.2 IMPACT OF REGULARIZATION AND NORMALIZATION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 506, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 377 + ], + "score": 1.0, + "content": "The goal of this study is to compare the relative performance of various regularization and normaliza-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 376, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 387 + ], + "score": 1.0, + "content": "tion methods presented in the literature. To this end, and based on the loss study, we fix the loss to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 386, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 399 + ], + "score": 1.0, + "content": "non-saturating loss (Goodfellow et al., 2014). We use the ResNet19 with generator and discriminator", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "architectures described in Table 4a. Finally, we consider batch normalization (BN) (Ioffe and Szegedy,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "2015), layer normalization (LN) (Ba et al., 2016), spectral normalization (SN), gradient penalty", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 412, + 431 + ], + "score": 1.0, + "content": "(GP) (Gulrajani et al., 2017), dragan penalty (DR) (Kodali et al., 2017), or", + "type": "text" + }, + { + "bbox": [ + 413, + 420, + 425, + 431 + ], + "score": 0.88, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "regularization. We", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "consider both CELEBA-HQ-128 and LSUN-BEDROOM with the hyperparameter settings shown in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "score": 1.0, + "content": "Table 1a and Table 1b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 365, + 506, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 458, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "The results are presented in Figure 2. We observe that adding batch norm to the discriminator hurts", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "the performance. Secondly, gradient penalty can help, but it doesn’t stabilize the training. In fact,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 480, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 505, + 493 + ], + "score": 1.0, + "content": "it is non-trivial to strike a balance of the loss and regularization strength. Spectral normalization", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "helps improve the model quality and is more computationally efficient than gradient penalty. This", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 501, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 104, + 501, + 506, + 516 + ], + "score": 1.0, + "content": "is consistent with recent results in Zhang et al. (2018). Similarly to the loss study, models using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "GP penalty benefit from 5:1 ratio of discriminator to generator updates. Furthermore, in a separate", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "ablation study we observed that running the optimization procedure for an additional 100K steps is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 535, + 370, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 535, + 370, + 549 + ], + "score": 1.0, + "content": "likely to increase the performance of the models with GP penalty.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 458, + 506, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 505, + 575 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 506, + 565 + ], + "score": 1.0, + "content": "Impact of Simultaneous Regularization and Normalization. Given the folklore that the Lips-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 562, + 506, + 576 + ], + "score": 1.0, + "content": "chitz constant of the discriminator is critical for the performance, one may expect simultaneous", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "regularization and normalization could improve model quality. To quantify this effect, we fix the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 504, + 105 + ], + "score": 1.0, + "content": "loss to non-saturating loss (Goodfellow et al., 2014), use the Resnet19 architecture (as above), and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "combine several normalization and regularization schemes, with hyperparameter settings shown in", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Table 1a coupled with 24 randomly selected parameters. The results are presented in Figure 3. We", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "observe that one may benefit from additional regularization and normalization. However, a lot of", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "computational effort has to be invested for somewhat marginal gains in FID. Nevertheless, given", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "enough computational budget we advocate simultaneous regularization and normalization – spectral", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 396, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 396, + 171 + ], + "score": 1.0, + "content": "normalization and layer normalization seem to perform well in practice.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 551, + 506, + 576 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 596, + 504, + 686 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 596, + 504, + 686 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 596, + 504, + 686 + ], + "spans": [ + { + "bbox": [ + 108, + 596, + 504, + 686 + ], + "score": 0.957, + "type": "image", + "image_path": "46e4df44d5fbb143416866b4220f7afea497ffb5bb5691af926e9d009ed5d8ec.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 108, + 596, + 504, + 626.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 626.0, + 504, + 656.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 656.0, + 504, + 686.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 695, + 504, + 729 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 695, + 505, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 489, + 707 + ], + "score": 1.0, + "content": "Figure 3: Impact of simultaneous normalization and regularization: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 489, + 695, + 505, + 706 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 707, + 505, + 719 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 719 + ], + "score": 1.0, + "content": "models. Gradient penalty coupled with spectral normalization (SN) or layer normalization (LN)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 717, + 321, + 730 + ], + "spans": [ + { + "bbox": [ + 106, + 717, + 321, + 730 + ], + "score": 1.0, + "content": "strongly improves the performance over the baseline.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + } + ], + "index": 28.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "regularization and normalization could improve model quality. To quantify this effect, we fix the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 504, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 504, + 105 + ], + "score": 1.0, + "content": "loss to non-saturating loss (Goodfellow et al., 2014), use the Resnet19 architecture (as above), and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "combine several normalization and regularization schemes, with hyperparameter settings shown in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Table 1a coupled with 24 randomly selected parameters. The results are presented in Figure 3. We", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "observe that one may benefit from additional regularization and normalization. However, a lot of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "computational effort has to be invested for somewhat marginal gains in FID. Nevertheless, given", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "enough computational budget we advocate simultaneous regularization and normalization – spectral", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 396, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 396, + 171 + ], + "score": 1.0, + "content": "normalization and layer normalization seem to perform well in practice.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 185, + 403, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 404, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 404, + 198 + ], + "score": 1.0, + "content": "3.3 IMPACT OF GENERATOR AND DISCRIMINATOR ARCHITECTURES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 206, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 506, + 219 + ], + "score": 1.0, + "content": "An interesting practical question is whether our findings also hold for a different model capacity.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "To this end, we also perform a study on SNDCGAN from Miyato et al. (2018). We consider the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "non-saturating GAN loss, gradient penalty and spectral normalization. While for smaller architectures", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "regularization is not essential (Lucic et al., 2018), the regularization and normalization effects might", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 439, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 439, + 263 + ], + "score": 1.0, + "content": "become more relevant due to deeper architectures and optimization considerations.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "image", + "bbox": [ + 108, + 273, + 503, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 273, + 503, + 461 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 273, + 503, + 461 + ], + "spans": [ + { + "bbox": [ + 108, + 273, + 503, + 461 + ], + "score": 0.97, + "type": "image", + "image_path": "3e965e3c9706e0a9c32f50c8a17e42a830c7fba8c8e37ec83f2e9451c076d310.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 273, + 503, + 335.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 108, + 335.6666666666667, + 503, + 398.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 398.33333333333337, + 503, + 461.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 471, + 505, + 494 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 394, + 483 + ], + "score": 1.0, + "content": "Figure 4: Impact of the neural architectures: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 394, + 471, + 410, + 482 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "models. Both spectral", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 482, + 459, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 459, + 496 + ], + "score": 1.0, + "content": "normalization and gradient penalty can help improve upon the non-regularized baseline.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 16.25 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 503, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "The results are presented in Figure 4. We observe that both architectures achieve comparable results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "and benefit from regularization and normalization. Spectral normalization strongly outperforms the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 529, + 232, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 232, + 541 + ], + "score": 1.0, + "content": "baseline for both architectures.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 557, + 227, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 229, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 229, + 572 + ], + "score": 1.0, + "content": "4 COMMON PITFALLS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 504, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "In this section we focus on several pitfalls we encountered while trying to reproduce existing results", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 594, + 291, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 291, + 607 + ], + "score": 1.0, + "content": "and provide a fairly and accurate comparison.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Metrics. There already seems to be a divergence in how the FID score is computed: (1) Some", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 444, + 634 + ], + "score": 1.0, + "content": "authors report the score on training data, yielding a FID between 50k training and", + "type": "text" + }, + { + "bbox": [ + 445, + 622, + 462, + 632 + ], + "score": 0.31, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "generated", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 492, + 645 + ], + "score": 1.0, + "content": "samples (Unterthiner et al., 2018). Some opt to report the FID based on 10k test samples and", + "type": "text" + }, + { + "bbox": [ + 493, + 633, + 505, + 643 + ], + "score": 0.51, + "content": "5 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "generated samples and use a custom implementation (Miyato et al., 2018). Finally, Lucic et al. (2018)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "report the score with respect to the test data, in particular FID between 10k test samples, and 10k", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "generated samples. The subtle differences will result in a mismatch between the reported FIDs, in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 204, + 689 + ], + "score": 1.0, + "content": "some cases of more than", + "type": "text" + }, + { + "bbox": [ + 204, + 677, + 224, + 687 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 677, + 506, + 689 + ], + "score": 1.0, + "content": ". We argue that FID should be computed with respect to the test data set", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "as and use 10k test samples and 10k generated samples on CIFAR10 and LSUN-BEDROOM, and 3k vs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "3k on CELEBA-HQ-128 as in in Lucic et al. (2018). Similarly, there are several ways to compute a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "diversity score using MS-SSIM and we follow the approach from Fedus et al. (2018). We provide the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 720, + 322, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 322, + 733 + ], + "score": 1.0, + "content": "implementation details in Section G of the Appendix.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 105, + 82, + 506, + 171 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 185, + 403, + 196 + ], + "lines": [ + { + "bbox": [ + 105, + 184, + 404, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 404, + 198 + ], + "score": 1.0, + "content": "3.3 IMPACT OF GENERATOR AND DISCRIMINATOR ARCHITECTURES", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 206, + 505, + 261 + ], + "lines": [ + { + "bbox": [ + 106, + 205, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 205, + 506, + 219 + ], + "score": 1.0, + "content": "An interesting practical question is whether our findings also hold for a different model capacity.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "To this end, we also perform a study on SNDCGAN from Miyato et al. (2018). We consider the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "non-saturating GAN loss, gradient penalty and spectral normalization. While for smaller architectures", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "regularization is not essential (Lucic et al., 2018), the regularization and normalization effects might", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 439, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 439, + 263 + ], + "score": 1.0, + "content": "become more relevant due to deeper architectures and optimization considerations.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 205, + 506, + 263 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 273, + 503, + 461 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 273, + 503, + 461 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 273, + 503, + 461 + ], + "spans": [ + { + "bbox": [ + 108, + 273, + 503, + 461 + ], + "score": 0.97, + "type": "image", + "image_path": "3e965e3c9706e0a9c32f50c8a17e42a830c7fba8c8e37ec83f2e9451c076d310.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 273, + 503, + 335.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 108, + 335.6666666666667, + 503, + 398.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 398.33333333333337, + 503, + 461.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 471, + 505, + 494 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 471, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 394, + 483 + ], + "score": 1.0, + "content": "Figure 4: Impact of the neural architectures: FID distribution for top", + "type": "text" + }, + { + "bbox": [ + 394, + 471, + 410, + 482 + ], + "score": 0.85, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 471, + 505, + 483 + ], + "score": 1.0, + "content": "models. Both spectral", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 482, + 459, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 459, + 496 + ], + "score": 1.0, + "content": "normalization and gradient penalty can help improve upon the non-regularized baseline.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + } + ], + "index": 16.25 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 503, + 540 + ], + "lines": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 505, + 519 + ], + "score": 1.0, + "content": "The results are presented in Figure 4. We observe that both architectures achieve comparable results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "and benefit from regularization and normalization. Spectral normalization strongly outperforms the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 529, + 232, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 232, + 541 + ], + "score": 1.0, + "content": "baseline for both architectures.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 507, + 505, + 541 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 557, + 227, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 229, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 229, + 572 + ], + "score": 1.0, + "content": "4 COMMON PITFALLS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 583, + 504, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 596 + ], + "score": 1.0, + "content": "In this section we focus on several pitfalls we encountered while trying to reproduce existing results", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 594, + 291, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 291, + 607 + ], + "score": 1.0, + "content": "and provide a fairly and accurate comparison.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 582, + 505, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 611, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Metrics. There already seems to be a divergence in how the FID score is computed: (1) Some", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 444, + 634 + ], + "score": 1.0, + "content": "authors report the score on training data, yielding a FID between 50k training and", + "type": "text" + }, + { + "bbox": [ + 445, + 622, + 462, + 632 + ], + "score": 0.31, + "content": "5 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "generated", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 492, + 645 + ], + "score": 1.0, + "content": "samples (Unterthiner et al., 2018). Some opt to report the FID based on 10k test samples and", + "type": "text" + }, + { + "bbox": [ + 493, + 633, + 505, + 643 + ], + "score": 0.51, + "content": "5 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "generated samples and use a custom implementation (Miyato et al., 2018). Finally, Lucic et al. (2018)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "report the score with respect to the test data, in particular FID between 10k test samples, and 10k", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "generated samples. The subtle differences will result in a mismatch between the reported FIDs, in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 204, + 689 + ], + "score": 1.0, + "content": "some cases of more than", + "type": "text" + }, + { + "bbox": [ + 204, + 677, + 224, + 687 + ], + "score": 0.89, + "content": "1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 677, + 506, + 689 + ], + "score": 1.0, + "content": ". We argue that FID should be computed with respect to the test data set", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "as and use 10k test samples and 10k generated samples on CIFAR10 and LSUN-BEDROOM, and 3k vs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "3k on CELEBA-HQ-128 as in in Lucic et al. (2018). Similarly, there are several ways to compute a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "diversity score using MS-SSIM and we follow the approach from Fedus et al. (2018). We provide the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 720, + 322, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 322, + 733 + ], + "score": 1.0, + "content": "implementation details in Section G of the Appendix.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 611, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "Details of neural architectures. Even in popular architectures, like ResNet, there is still a number", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "of design decision one needs to make, that are often omitted from the reported results. Those include", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "the exact design of the ResNet cell (order of layers, when is ReLu applied, when to upsample and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "downsample, how many filters to use). Some of these differences might lead to potentially unfair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "comparison. As a result, we suggest to use the architectures presented within this work as a solid", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 466, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 466, + 149 + ], + "score": 1.0, + "content": "baseline. An ablation study on various ResNet modifications is available in the Appendix.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Data sets. A common issue is related to data set processing – does LSUN-BEDROOM always", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "correspond to the same data set? In most cases the precise algorithm for upscaling or cropping is not", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 420, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 420, + 188 + ], + "score": 1.0, + "content": "clear which introduces inconsistencies between results on the “same” data set.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 206 + ], + "score": 1.0, + "content": "Implementation details and non-determinism. One major issue is the mismatch between the algo-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "rithm presented in a paper and the code provided online. We are aware that there is an embarrassingly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "large gap between a good implementation and a bad implementation of a given model. Hence, when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "no code is available, one is forced to guess which modifications were done. Another particularly", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "tricky issue is removing randomness from the training process. After one fixes the data ordering and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "the initial weights, obtaining the same score by training the same model twice is non-trivial due to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "randomness present in certain GPU operations (Chetlur et al., 2014). Disabling the optimizations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 465, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 465, + 283 + ], + "score": 1.0, + "content": "causing the non-determinism often results in an order of magnitude running time penalty.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "While each of these issues taken in isolation seems minor, they compound to create a mist which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 467, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 467, + 310 + ], + "score": 1.0, + "content": "introduces friction in practical applications and the research process (Sculley et al., 2018).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 325, + 211, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 324, + 213, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 324, + 213, + 339 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "A recent large-scale study on GANs and Variational Autoencoders was presented in Lucic et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "(2018). The authors consider several loss functions and regularizers, and study the effect of the loss", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 384 + ], + "score": 1.0, + "content": "function on the FID score, with low-to-medium complexity data sets (MNIST, CIFAR10, CELEBA),", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 395 + ], + "score": 1.0, + "content": "and a single (InfoGAN style) architecture. In this limited setting, the authors found that there is no", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "statistically significant difference between recently introduced models and the original non-saturating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "GAN. A study of the effects of gradient-norm regularization in GANs was recently presented in Fedus", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "et al. (2018). The authors posit that the gradient penalty can also be applied to the non-saturating", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "GAN, and that, to a limited extent, it reduces the sensitivity to hyperparameter selection. In a recent", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "work on spectral normalization, the authors perform a small study of the competing regularization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "and normalization approaches (Miyato et al., 2018). We are happy to report that we could reproduce", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 461, + 311, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 311, + 472 + ], + "score": 1.0, + "content": "these results and we present them in the Appendix.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 477, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Inspired by these works and building on the available open-source code from Lucic et al. (2018), we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 488, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 506, + 500 + ], + "score": 1.0, + "content": "take one additional step in all dimensions considered therein: more complex neural architectures,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 499, + 453, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 453, + 511 + ], + "score": 1.0, + "content": "more complex data sets, and more involved regularization and normalization schemes.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 195, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 524, + 197, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 197, + 542 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "In this work we study the GAN landscape: losses, regularization and normalization schemes, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "neural architectures, and their impact on the on the quality of generated samples which we assess by", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "recently introduced quantitative metrics. Our fair and thorough empirical evaluation suggests that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "one should consider non-saturating GAN loss and spectral normalization as default choices when", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "applying GANs to a new data set. Given additional computational budget, we suggest adding the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 507, + 619 + ], + "score": 1.0, + "content": "gradient penalty from Gulrajani et al. (2017) and train the model until convergence. Furthermore,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "additional marginal gains can be obtained by combining normalization and regularization empirically", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "confirming the importance of the Lipschitz constant of the discriminator. Furthermore, both types of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "architectures proposed up-to this point perform reasonably well. A separate ablation study uncovered", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "that most of the tricks applied in the ResNet style architectures lead to marginal changes in the quality", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "and should be avoided due to the high computational cost. As a result of this large-scale study we", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "identify the common pitfalls standing in the way of accurate and fair comparison and propose concrete", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "actions to demystify the future results – issues with metrics, data set preprocessing, non-determinism,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "score": 1.0, + "content": "and missing implementation details are particularly striking. We hope that this work, together with", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 704, + 506, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 506, + 716 + ], + "score": 1.0, + "content": "the open-sourced reference implementations and trained models, will serve as a solid baseline for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 716, + 195, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 716, + 195, + 727 + ], + "score": 1.0, + "content": "future GAN research.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 42.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "Details of neural architectures. Even in popular architectures, like ResNet, there is still a number", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "of design decision one needs to make, that are often omitted from the reported results. Those include", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "the exact design of the ResNet cell (order of layers, when is ReLu applied, when to upsample and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 505, + 127 + ], + "score": 1.0, + "content": "downsample, how many filters to use). Some of these differences might lead to potentially unfair", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "comparison. As a result, we suggest to use the architectures presented within this work as a solid", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 466, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 466, + 149 + ], + "score": 1.0, + "content": "baseline. An ablation study on various ResNet modifications is available in the Appendix.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 83, + 505, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Data sets. A common issue is related to data set processing – does LSUN-BEDROOM always", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "correspond to the same data set? In most cases the precise algorithm for upscaling or cropping is not", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 420, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 420, + 188 + ], + "score": 1.0, + "content": "clear which introduces inconsistencies between results on the “same” data set.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 153, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 506, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 506, + 206 + ], + "score": 1.0, + "content": "Implementation details and non-determinism. One major issue is the mismatch between the algo-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "rithm presented in a paper and the code provided online. We are aware that there is an embarrassingly", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 505, + 227 + ], + "score": 1.0, + "content": "large gap between a good implementation and a bad implementation of a given model. Hence, when", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "no code is available, one is forced to guess which modifications were done. Another particularly", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "tricky issue is removing randomness from the training process. After one fixes the data ordering and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 261 + ], + "score": 1.0, + "content": "the initial weights, obtaining the same score by training the same model twice is non-trivial due to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "randomness present in certain GPU operations (Chetlur et al., 2014). Disabling the optimizations", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 269, + 465, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 465, + 283 + ], + "score": 1.0, + "content": "causing the non-determinism often results in an order of magnitude running time penalty.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 192, + 506, + 283 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "While each of these issues taken in isolation seems minor, they compound to create a mist which", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 297, + 467, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 467, + 310 + ], + "score": 1.0, + "content": "introduces friction in practical applications and the research process (Sculley et al., 2018).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 285, + 505, + 310 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 325, + 211, + 338 + ], + "lines": [ + { + "bbox": [ + 104, + 324, + 213, + 339 + ], + "spans": [ + { + "bbox": [ + 104, + 324, + 213, + 339 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 350, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "A recent large-scale study on GANs and Variational Autoencoders was presented in Lucic et al.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 373 + ], + "score": 1.0, + "content": "(2018). The authors consider several loss functions and regularizers, and study the effect of the loss", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 372, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 506, + 384 + ], + "score": 1.0, + "content": "function on the FID score, with low-to-medium complexity data sets (MNIST, CIFAR10, CELEBA),", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 383, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 395 + ], + "score": 1.0, + "content": "and a single (InfoGAN style) architecture. In this limited setting, the authors found that there is no", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "statistically significant difference between recently introduced models and the original non-saturating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "GAN. A study of the effects of gradient-norm regularization in GANs was recently presented in Fedus", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 429 + ], + "score": 1.0, + "content": "et al. (2018). The authors posit that the gradient penalty can also be applied to the non-saturating", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "GAN, and that, to a limited extent, it reduces the sensitivity to hyperparameter selection. In a recent", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "work on spectral normalization, the authors perform a small study of the competing regularization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "and normalization approaches (Miyato et al., 2018). We are happy to report that we could reproduce", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 461, + 311, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 311, + 472 + ], + "score": 1.0, + "content": "these results and we present them in the Appendix.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 350, + 506, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 477, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "Inspired by these works and building on the available open-source code from Lucic et al. (2018), we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 488, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 506, + 500 + ], + "score": 1.0, + "content": "take one additional step in all dimensions considered therein: more complex neural architectures,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 499, + 453, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 453, + 511 + ], + "score": 1.0, + "content": "more complex data sets, and more involved regularization and normalization schemes.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 477, + 506, + 511 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 526, + 195, + 538 + ], + "lines": [ + { + "bbox": [ + 104, + 524, + 197, + 542 + ], + "spans": [ + { + "bbox": [ + 104, + 524, + 197, + 542 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 505, + 727 + ], + "lines": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "In this work we study the GAN landscape: losses, regularization and normalization schemes, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 575 + ], + "score": 1.0, + "content": "neural architectures, and their impact on the on the quality of generated samples which we assess by", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "recently introduced quantitative metrics. Our fair and thorough empirical evaluation suggests that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "one should consider non-saturating GAN loss and spectral normalization as default choices when", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "applying GANs to a new data set. Given additional computational budget, we suggest adding the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 507, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 507, + 619 + ], + "score": 1.0, + "content": "gradient penalty from Gulrajani et al. (2017) and train the model until convergence. Furthermore,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "additional marginal gains can be obtained by combining normalization and regularization empirically", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "confirming the importance of the Lipschitz constant of the discriminator. Furthermore, both types of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "architectures proposed up-to this point perform reasonably well. A separate ablation study uncovered", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "that most of the tricks applied in the ResNet style architectures lead to marginal changes in the quality", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 505, + 674 + ], + "score": 1.0, + "content": "and should be avoided due to the high computational cost. As a result of this large-scale study we", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "identify the common pitfalls standing in the way of accurate and fair comparison and propose concrete", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 506, + 696 + ], + "score": 1.0, + "content": "actions to demystify the future results – issues with metrics, data set preprocessing, non-determinism,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "score": 1.0, + "content": "and missing implementation details are particularly striking. We hope that this work, together with", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 704, + 506, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 704, + 506, + 716 + ], + "score": 1.0, + "content": "the open-sourced reference implementations and trained models, will serve as a solid baseline for", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 716, + 195, + 727 + ], + "spans": [ + { + "bbox": [ + 106, + 716, + 195, + 727 + ], + "score": 1.0, + "content": "future GAN research.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 551, + 507, + 727 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 504, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 504, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 504, + 110 + ], + "score": 1.0, + "content": "Eirikur Agustsson, Michael Tschannen, Fabian Mentzer, Radu Timofte, and Luc Van Gool. Generative adversarial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 409, + 120 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 409, + 120 + ], + "score": 1.0, + "content": "networks for extreme learned image compression. CoRR, abs/1804.02958, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 503, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "Mart´ın Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein generative adversarial networks. In ´", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 137, + 344, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 137, + 344, + 149 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 105, + 155, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 506, + 167 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 141, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 141, + 177 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "score": 1.0, + "content": "Mikołaj Binkowski, Dougal J. Sutherland, Michael Arbel, and Arthur Gretton. Demystifying MMD GANs. In ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 368, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 368, + 205 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 453, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 451, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 451, + 223 + ], + "score": 1.0, + "content": "Ali Borji. Pros and cons of GAN evaluation measures. arXiv preprint arXiv:1802.03446, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "Sharan Chetlur, Cliff Woolley, Philippe Vandermersch, Jonathan Cohen, John Tran, Bryan Catanzaro, and Evan", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 240, + 467, + 252 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 467, + 252 + ], + "score": 1.0, + "content": "Shelhamer. cudnn: Efficient primitives for deep learning. arXiv preprint arXiv:1410.0759, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a laplacian pyramid", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 458, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 458, + 280 + ], + "score": 1.0, + "content": "of adversarial networks. In Advances in Neural Information Processing Systems (NIPS), 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 287, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 506, + 298 + ], + "score": 1.0, + "content": "William Fedus, Mihaela Rosca, Balaji Lakshminarayanan, Andrew M Dai, Shakir Mohamed, and Ian Goodfellow.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "Many paths to equilibrium: Gans do not need to decrease a divergence at every step. In International", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 317, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 317, + 318 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 324, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 345, + 199, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 199, + 356 + ], + "score": 1.0, + "content": "Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 362, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 373, + 443, + 384 + ], + "spans": [ + { + "bbox": [ + 116, + 373, + 443, + 384 + ], + "score": 1.0, + "content": "of Wasserstein GANs. Advances in Neural Information Processing Systems (NIPS), 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 105, + 390, + 504, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 400, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 400, + 412 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 504, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and Sepp Hochre-¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "iter. GANs trained by a two time-scale update rule converge to a Nash equilibrium. Advances in Neural", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 286, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 286, + 451 + ], + "score": 1.0, + "content": "Information Processing Systems (NIPS), 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 504, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 468, + 349, + 479 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 349, + 479 + ], + "score": 1.0, + "content": "internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 495, + 404, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 404, + 507 + ], + "score": 1.0, + "content": "adversarial networks. Computer Vision and Pattern Recognition (CVPR), 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 524, + 453, + 535 + ], + "spans": [ + { + "bbox": [ + 117, + 524, + 453, + 535 + ], + "score": 1.0, + "content": "stability, and variation. International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 503, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 555 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 551, + 264, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 264, + 564 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 105, + 569, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of GANs. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 581, + 241, + 591 + ], + "spans": [ + { + "bbox": [ + 114, + 581, + 241, + 591 + ], + "score": 1.0, + "content": "preprint arXiv:1705.07215, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 597, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Mario Lucic, Karol Kurach, Marcin Michalski, Sylvain Gelly, and Olivier Bousquet. Are GANs created equal?", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 608, + 433, + 620 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 433, + 620 + ], + "score": 1.0, + "content": "A large-scale study. Advances in Neural Information Processing Systems (NIPS), 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 503, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, Zhen Wang, and Stephen Paul Smolley. Least squares", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 636, + 383, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 383, + 648 + ], + "score": 1.0, + "content": "generative adversarial networks. arXiv preprint ArXiv:1611.04076, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 654, + 503, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 665, + 448, + 676 + ], + "spans": [ + { + "bbox": [ + 116, + 665, + 448, + 676 + ], + "score": 1.0, + "content": "adversarial networks. International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 682, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 693, + 503, + 704 + ], + "spans": [ + { + "bbox": [ + 117, + 693, + 503, + 704 + ], + "score": 1.0, + "content": "variational divergence minimization. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 105, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "Augustus Odena, Christopher Olah, and Jonathon Shlens. Conditional image synthesis with auxiliary classifier", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 383, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 383, + 732 + ], + "score": 1.0, + "content": "GANs. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 504, + 120 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 504, + 110 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 504, + 110 + ], + "score": 1.0, + "content": "Eirikur Agustsson, Michael Tschannen, Fabian Mentzer, Radu Timofte, and Luc Van Gool. Generative adversarial", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 109, + 409, + 120 + ], + "spans": [ + { + "bbox": [ + 115, + 109, + 409, + 120 + ], + "score": 1.0, + "content": "networks for extreme learned image compression. CoRR, abs/1804.02958, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 100, + 504, + 120 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 127, + 503, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "Mart´ın Arjovsky, Soumith Chintala, and Leon Bottou. Wasserstein generative adversarial networks. In ´", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 137, + 344, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 137, + 344, + 149 + ], + "score": 1.0, + "content": "International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 127, + 506, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 155, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 506, + 167 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 165, + 141, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 165, + 141, + 177 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 155, + 506, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 195 + ], + "score": 1.0, + "content": "Mikołaj Binkowski, Dougal J. Sutherland, Michael Arbel, and Arthur Gretton. Demystifying MMD GANs. In ´", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 368, + 205 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 368, + 205 + ], + "score": 1.0, + "content": "International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 184, + 505, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 211, + 453, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 451, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 451, + 223 + ], + "score": 1.0, + "content": "Ali Borji. Pros and cons of GAN evaluation measures. arXiv preprint arXiv:1802.03446, 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 212, + 451, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 230, + 504, + 252 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "Sharan Chetlur, Cliff Woolley, Philippe Vandermersch, Jonathan Cohen, John Tran, Bryan Catanzaro, and Evan", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 117, + 240, + 467, + 252 + ], + "spans": [ + { + "bbox": [ + 117, + 240, + 467, + 252 + ], + "score": 1.0, + "content": "Shelhamer. cudnn: Efficient primitives for deep learning. arXiv preprint arXiv:1410.0759, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 230, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 505, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Emily L Denton, Soumith Chintala, Rob Fergus, et al. Deep generative image models using a laplacian pyramid", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 458, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 458, + 280 + ], + "score": 1.0, + "content": "of adversarial networks. In Advances in Neural Information Processing Systems (NIPS), 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 258, + 505, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 286, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 287, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 287, + 506, + 298 + ], + "score": 1.0, + "content": "William Fedus, Mihaela Rosca, Balaji Lakshminarayanan, Andrew M Dai, Shakir Mohamed, and Ian Goodfellow.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 116, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "Many paths to equilibrium: Gans do not need to decrease a divergence at every step. In International", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 317, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 317, + 318 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 107, + 287, + 506, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 324, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 333, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 333, + 505, + 348 + ], + "score": 1.0, + "content": "Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 345, + 199, + 356 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 199, + 356 + ], + "score": 1.0, + "content": "Systems (NIPS), 2014.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 324, + 505, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 362, + 504, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 376 + ], + "score": 1.0, + "content": "Ishaan Gulrajani, Faruk Ahmed, Martin Arjovsky, Vincent Dumoulin, and Aaron Courville. Improved training", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 373, + 443, + 384 + ], + "spans": [ + { + "bbox": [ + 116, + 373, + 443, + 384 + ], + "score": 1.0, + "content": "of Wasserstein GANs. Advances in Neural Information Processing Systems (NIPS), 2017.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 361, + 505, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 390, + 504, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 505, + 403 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 400, + 412 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 400, + 412 + ], + "score": 1.0, + "content": "IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 391, + 505, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 504, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, Gunter Klambauer, and Sepp Hochre-¨", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "iter. GANs trained by a two time-scale update rule converge to a Nash equilibrium. Advances in Neural", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 439, + 286, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 439, + 286, + 451 + ], + "score": 1.0, + "content": "Information Processing Systems (NIPS), 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 419, + 505, + 451 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 457, + 504, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 471 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 468, + 349, + 479 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 349, + 479 + ], + "score": 1.0, + "content": "internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 456, + 506, + 479 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 504, + 507 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 495, + 404, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 404, + 507 + ], + "score": 1.0, + "content": "adversarial networks. Computer Vision and Pattern Recognition (CVPR), 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 485, + 505, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 504, + 535 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "Tero Karras, Timo Aila, Samuli Laine, and Jaakko Lehtinen. Progressive growing of gans for improved quality,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 524, + 453, + 535 + ], + "spans": [ + { + "bbox": [ + 117, + 524, + 453, + 535 + ], + "score": 1.0, + "content": "stability, and variation. International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 513, + 505, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 503, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 541, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 555 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. International Conference on", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 551, + 264, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 551, + 264, + 564 + ], + "score": 1.0, + "content": "Learning Representations (ICLR), 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 541, + 505, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 569, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "Naveen Kodali, Jacob Abernethy, James Hays, and Zsolt Kira. On convergence and stability of GANs. arXiv", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 581, + 241, + 591 + ], + "spans": [ + { + "bbox": [ + 114, + 581, + 241, + 591 + ], + "score": 1.0, + "content": "preprint arXiv:1705.07215, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 569, + 505, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 597, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Mario Lucic, Karol Kurach, Marcin Michalski, Sylvain Gelly, and Olivier Bousquet. Are GANs created equal?", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 608, + 433, + 620 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 433, + 620 + ], + "score": 1.0, + "content": "A large-scale study. Advances in Neural Information Processing Systems (NIPS), 2018.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 597, + 505, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 503, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Xudong Mao, Qing Li, Haoran Xie, Raymond YK Lau, Zhen Wang, and Stephen Paul Smolley. Least squares", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 636, + 383, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 383, + 648 + ], + "score": 1.0, + "content": "generative adversarial networks. arXiv preprint ArXiv:1611.04076, 2016.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 626, + 505, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 654, + 503, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 667 + ], + "score": 1.0, + "content": "Takeru Miyato, Toshiki Kataoka, Masanori Koyama, and Yuichi Yoshida. Spectral normalization for generative", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 665, + 448, + 676 + ], + "spans": [ + { + "bbox": [ + 116, + 665, + 448, + 676 + ], + "score": 1.0, + "content": "adversarial networks. International Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 654, + 505, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 682, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 695 + ], + "score": 1.0, + "content": "Sebastian Nowozin, Botond Cseke, and Ryota Tomioka. f-gan: Training generative neural samplers using", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 693, + 503, + 704 + ], + "spans": [ + { + "bbox": [ + 117, + 693, + 503, + 704 + ], + "score": 1.0, + "content": "variational divergence minimization. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 681, + 505, + 704 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 711, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "Augustus Odena, Christopher Olah, and Jonathon Shlens. Conditional image synthesis with auxiliary classifier", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 383, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 383, + 732 + ], + "score": 1.0, + "content": "GANs. In International Conference on Machine Learning (ICML), 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 711, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 83, + 505, + 104 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 487, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 487, + 105 + ], + "score": 1.0, + "content": "generative adversarial networks. International Conference on Learning Representations (ICLR), 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 503, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Kevin Roth, Aurelien Lucchi, Sebastian Nowozin, and Thomas Hofmann. Stabilizing training of generative", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 122, + 503, + 132 + ], + "spans": [ + { + "bbox": [ + 117, + 122, + 503, + 132 + ], + "score": 1.0, + "content": "adversarial networks through regularization. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 138, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 149, + 474, + 160 + ], + "spans": [ + { + "bbox": [ + 116, + 149, + 474, + 160 + ], + "score": 1.0, + "content": "techniques for training gans. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 503, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "D. Sculley, Jasper Snoek, Alex Wiltschko, and Ali Rahimi. Winner’s curse? On pace, progress, and empirical", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 176, + 162, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 176, + 162, + 188 + ], + "score": 1.0, + "content": "rigor, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "Niranjan Srinivas, Andreas Krause, Sham Kakade, and Matthias W. Seeger. Gaussian process optimization in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "the bandit setting: No regret and experimental design. In International Conference on Machine Learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 215, + 170, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 215, + 170, + 226 + ], + "score": 1.0, + "content": "(ICML), 2010.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 104, + 232, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 246 + ], + "score": 1.0, + "content": "Michael Tschannen, Eirikur Agustsson, and Mario Lucic. Deep generative models for distribution-preserving", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 243, + 430, + 254 + ], + "spans": [ + { + "bbox": [ + 116, + 243, + 430, + 254 + ], + "score": 1.0, + "content": "lossy compression. Advances in Neural Information Processing Systems (NIPS), 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 260, + 503, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Bernhard Nessler, Calvin Seward, Gnter Klambauer, Martin Heusel, Hubert Ramsauer, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Sepp Hochreiter. Coulomb GANs: Provably optimal nash equilibria via potential fields. In International", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 280, + 318, + 292 + ], + "spans": [ + { + "bbox": [ + 116, + 280, + 318, + 292 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 504, + 311 + ], + "score": 1.0, + "content": "Zhou Wang, Eero P Simoncelli, and Alan C Bovik. Multiscale structural similarity for image quality assessment.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 308, + 360, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 360, + 320 + ], + "score": 1.0, + "content": "In Asilomar Conference on Signals, Systems and Computers, 2003.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. Lsun: Construction of a large-scale image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 337, + 454, + 347 + ], + "spans": [ + { + "bbox": [ + 116, + 337, + 454, + 347 + ], + "score": 1.0, + "content": "dataset using deep learning with humans in the loop. arXiv preprint arXiv:1506.03365, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 503, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 504, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 504, + 365 + ], + "score": 1.0, + "content": "Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 364, + 300, + 375 + ], + "spans": [ + { + "bbox": [ + 115, + 364, + 300, + 375 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:1805.08318, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 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": [ + 106, + 83, + 505, + 104 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Alec Radford, Luke Metz, and Soumith Chintala. Unsupervised representation learning with deep convolutional", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 487, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 487, + 105 + ], + "score": 1.0, + "content": "generative adversarial networks. International Conference on Learning Representations (ICLR), 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 107, + 83, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 503, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 505, + 123 + ], + "score": 1.0, + "content": "Kevin Roth, Aurelien Lucchi, Sebastian Nowozin, and Thomas Hofmann. Stabilizing training of generative", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 122, + 503, + 132 + ], + "spans": [ + { + "bbox": [ + 117, + 122, + 503, + 132 + ], + "score": 1.0, + "content": "adversarial networks through regularization. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 505, + 132 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 138, + 504, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 506, + 151 + ], + "score": 1.0, + "content": "Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 149, + 474, + 160 + ], + "spans": [ + { + "bbox": [ + 116, + 149, + 474, + 160 + ], + "score": 1.0, + "content": "techniques for training gans. In Advances in Neural Information Processing Systems (NIPS), 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 138, + 506, + 160 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 503, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 179 + ], + "score": 1.0, + "content": "D. Sculley, Jasper Snoek, Alex Wiltschko, and Ali Rahimi. Winner’s curse? On pace, progress, and empirical", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 176, + 162, + 188 + ], + "spans": [ + { + "bbox": [ + 114, + 176, + 162, + 188 + ], + "score": 1.0, + "content": "rigor, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 165, + 505, + 188 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 206 + ], + "score": 1.0, + "content": "Niranjan Srinivas, Andreas Krause, Sham Kakade, and Matthias W. Seeger. Gaussian process optimization in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "the bandit setting: No regret and experimental design. In International Conference on Machine Learning", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 215, + 170, + 226 + ], + "spans": [ + { + "bbox": [ + 115, + 215, + 170, + 226 + ], + "score": 1.0, + "content": "(ICML), 2010.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 194, + 505, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 232, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 246 + ], + "score": 1.0, + "content": "Michael Tschannen, Eirikur Agustsson, and Mario Lucic. Deep generative models for distribution-preserving", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 243, + 430, + 254 + ], + "spans": [ + { + "bbox": [ + 116, + 243, + 430, + 254 + ], + "score": 1.0, + "content": "lossy compression. Advances in Neural Information Processing Systems (NIPS), 2018.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 230, + 506, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 260, + 503, + 291 + ], + "lines": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Bernhard Nessler, Calvin Seward, Gnter Klambauer, Martin Heusel, Hubert Ramsauer, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "Sepp Hochreiter. Coulomb GANs: Provably optimal nash equilibria via potential fields. In International", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 280, + 318, + 292 + ], + "spans": [ + { + "bbox": [ + 116, + 280, + 318, + 292 + ], + "score": 1.0, + "content": "Conference on Learning Representations (ICLR), 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 260, + 505, + 292 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 504, + 311 + ], + "score": 1.0, + "content": "Zhou Wang, Eero P Simoncelli, and Alan C Bovik. Multiscale structural similarity for image quality assessment.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 308, + 360, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 308, + 360, + 320 + ], + "score": 1.0, + "content": "In Asilomar Conference on Signals, Systems and Computers, 2003.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 297, + 504, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 504, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 339 + ], + "score": 1.0, + "content": "Fisher Yu, Yinda Zhang, Shuran Song, Ari Seff, and Jianxiong Xiao. Lsun: Construction of a large-scale image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 337, + 454, + 347 + ], + "spans": [ + { + "bbox": [ + 116, + 337, + 454, + 347 + ], + "score": 1.0, + "content": "dataset using deep learning with humans in the loop. arXiv preprint arXiv:1506.03365, 2015.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 325, + 505, + 347 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 503, + 375 + ], + "lines": [ + { + "bbox": [ + 106, + 354, + 504, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 504, + 365 + ], + "score": 1.0, + "content": "Han Zhang, Ian Goodfellow, Dimitris Metaxas, and Augustus Odena. Self-attention generative adversarial", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 364, + 300, + 375 + ], + "spans": [ + { + "bbox": [ + 115, + 364, + 300, + 375 + ], + "score": 1.0, + "content": "networks. arXiv preprint arXiv:1805.08318, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 354, + 504, + 375 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 350, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 350, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 350, + 95 + ], + "score": 1.0, + "content": "A FID AND INCEPTION SCORES ON CIFAR10", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "We present an empirical study with SNDCGAN and ResNet CIFAR architectures on CIFAR10 in figure 5 and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "figure 6. In addition to Section 3.1, we evaluate one more kind of loss on CIFAR10. Here HG, NS and WGAN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "stand for hinge loss, non saturating loss and Wasserstein loss respectively. We observe that hinge loss performs", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 234, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 234, + 147 + ], + "score": 1.0, + "content": "very similar to non-saturating loss.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 157, + 155, + 452, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 157, + 155, + 452, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 155, + 452, + 263 + ], + "spans": [ + { + "bbox": [ + 157, + 155, + 452, + 263 + ], + "score": 0.966, + "type": "image", + "image_path": "c164b1f15578e4a9ef02160d0cfbbfa32f06c4db8cef2e901de85c271df39446.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 157, + 155, + 452, + 191.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 191.0, + 452, + 227.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 227.0, + 452, + 263.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 273, + 505, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "Figure 5: An empirical study with SNDCGAN and ResNet cifar architectures on CIFAR10. We", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 284, + 406, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 406, + 297 + ], + "score": 1.0, + "content": "recover the state of the art results recently reported in Miyato et al. (2018).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 147, + 313, + 462, + 426 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 313, + 462, + 426 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 147, + 313, + 462, + 426 + ], + "spans": [ + { + "bbox": [ + 147, + 313, + 462, + 426 + ], + "score": 0.97, + "type": "image", + "image_path": "9336b9938cfebbfb0ad26108c3d376665c6fce35dadf469e8a26634157b3acfa.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 147, + 313, + 462, + 350.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 147, + 350.6666666666667, + 462, + 388.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 147, + 388.33333333333337, + 462, + 426.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 437, + 505, + 460 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 451 + ], + "score": 1.0, + "content": "Figure 6: We show the Inception Score for each model within our study which corresponds to recently", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 448, + 258, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 258, + 461 + ], + "score": 1.0, + "content": "reported results (Miyato et al., 2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "title", + "bbox": [ + 108, + 472, + 338, + 486 + ], + "lines": [ + { + "bbox": [ + 104, + 471, + 340, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 471, + 340, + 488 + ], + "score": 1.0, + "content": "B COMPARISON OF FID AND KID METRICS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 508 + ], + "score": 1.0, + "content": "The KID metric introduced by Binkowski et al. ´ (2018) is an alternative to FID. We use models from our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 507, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 518 + ], + "score": 1.0, + "content": "Regularization and Normalization study (see Section 3.2) to compare both metrics. Here, by model we denote", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 517, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 496, + 528 + ], + "score": 1.0, + "content": "everything that needs to be specified for the training – including all hyper-parameters, like learning rate,", + "type": "text" + }, + { + "bbox": [ + 496, + 517, + 502, + 526 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 517, + 506, + 528 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 136, + 539 + ], + "score": 1.0, + "content": "Adam’s", + "type": "text" + }, + { + "bbox": [ + 136, + 527, + 143, + 537 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 525, + 505, + 539 + ], + "score": 1.0, + "content": ", etc. The Spearman rank-order correlation coefficient between KID and FID scores is approximately", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 536, + 357, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 357, + 548 + ], + "score": 1.0, + "content": "0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "To evaluate a practical setting of selecting several best models, we compare the intersection between the set of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 127, + 574 + ], + "score": 1.0, + "content": "“best", + "type": "text" + }, + { + "bbox": [ + 127, + 563, + 136, + 572 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 561, + 272, + 574 + ], + "score": 1.0, + "content": "models by FID” and the set of “best", + "type": "text" + }, + { + "bbox": [ + 273, + 563, + 282, + 572 + ], + "score": 0.76, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 561, + 360, + 574 + ], + "score": 1.0, + "content": "models by KID” for", + "type": "text" + }, + { + "bbox": [ + 360, + 563, + 444, + 573 + ], + "score": 0.29, + "content": "\\bar { K } \\in { 5 , 1 0 , 2 0 , 5 0 , 1 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ". The results are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 193, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 193, + 582 + ], + "score": 1.0, + "content": "summarized in Table 2.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 504, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "This experiment suggests that FID and KID metrics are very strongly correlated, and for the practical applications", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "one can choose either of them. Also, the conclusions from our studies based on FID should transfer to studies", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 608, + 161, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 161, + 619 + ], + "score": 1.0, + "content": "based on KID.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "table", + "bbox": [ + 197, + 647, + 411, + 725 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 124, + 626, + 484, + 639 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 625, + 485, + 640 + ], + "spans": [ + { + "bbox": [ + 124, + 625, + 285, + 640 + ], + "score": 1.0, + "content": "Table 2: Intersection between set of top", + "type": "text" + }, + { + "bbox": [ + 286, + 627, + 297, + 637 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 625, + 485, + 640 + ], + "score": 1.0, + "content": "experiments selected by FID and KID metrics.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 197, + 647, + 411, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 197, + 647, + 411, + 725 + ], + "spans": [ + { + "bbox": [ + 197, + 647, + 411, + 725 + ], + "score": 0.979, + "html": "
LSUN-BEDROOM CELEBA-HQ-128
K=5 4/52/5
K=109/10 8/10
K=2018/20 15/20
K=50 49/5046/50
K=10095/100 98/100
", + "type": "table", + "image_path": "c60d6fe1829ddd8eeca7bb19462437aaad4c277acacf61b026209b0ac306cbc3.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 197, + 647, + 411, + 660.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 197, + 660.0, + 411, + 673.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 197, + 673.0, + 411, + 686.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 197, + 686.0, + 411, + 699.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 197, + 699.0, + 411, + 712.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 197, + 712.0, + 411, + 725.0 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 28.75 + } + ], + "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 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": [ + 107, + 81, + 350, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 350, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 350, + 95 + ], + "score": 1.0, + "content": "A FID AND INCEPTION SCORES ON CIFAR10", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "We present an empirical study with SNDCGAN and ResNet CIFAR architectures on CIFAR10 in figure 5 and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "figure 6. In addition to Section 3.1, we evaluate one more kind of loss on CIFAR10. Here HG, NS and WGAN", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "stand for hinge loss, non saturating loss and Wasserstein loss respectively. We observe that hinge loss performs", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 234, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 234, + 147 + ], + "score": 1.0, + "content": "very similar to non-saturating loss.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 105, + 505, + 147 + ] + }, + { + "type": "image", + "bbox": [ + 157, + 155, + 452, + 263 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 157, + 155, + 452, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 155, + 452, + 263 + ], + "spans": [ + { + "bbox": [ + 157, + 155, + 452, + 263 + ], + "score": 0.966, + "type": "image", + "image_path": "c164b1f15578e4a9ef02160d0cfbbfa32f06c4db8cef2e901de85c271df39446.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 157, + 155, + 452, + 191.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 191.0, + 452, + 227.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 157, + 227.0, + 452, + 263.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 273, + 505, + 297 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "Figure 5: An empirical study with SNDCGAN and ResNet cifar architectures on CIFAR10. We", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 284, + 406, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 406, + 297 + ], + "score": 1.0, + "content": "recover the state of the art results recently reported in Miyato et al. (2018).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 147, + 313, + 462, + 426 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 147, + 313, + 462, + 426 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 147, + 313, + 462, + 426 + ], + "spans": [ + { + "bbox": [ + 147, + 313, + 462, + 426 + ], + "score": 0.97, + "type": "image", + "image_path": "9336b9938cfebbfb0ad26108c3d376665c6fce35dadf469e8a26634157b3acfa.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 147, + 313, + 462, + 350.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 147, + 350.6666666666667, + 462, + 388.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 147, + 388.33333333333337, + 462, + 426.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 104, + 437, + 505, + 460 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 451 + ], + "score": 1.0, + "content": "Figure 6: We show the Inception Score for each model within our study which corresponds to recently", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 448, + 258, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 258, + 461 + ], + "score": 1.0, + "content": "reported results (Miyato et al., 2018).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "title", + "bbox": [ + 108, + 472, + 338, + 486 + ], + "lines": [ + { + "bbox": [ + 104, + 471, + 340, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 471, + 340, + 488 + ], + "score": 1.0, + "content": "B COMPARISON OF FID AND KID METRICS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 508 + ], + "score": 1.0, + "content": "The KID metric introduced by Binkowski et al. ´ (2018) is an alternative to FID. We use models from our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 507, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 506, + 518 + ], + "score": 1.0, + "content": "Regularization and Normalization study (see Section 3.2) to compare both metrics. Here, by model we denote", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 517, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 496, + 528 + ], + "score": 1.0, + "content": "everything that needs to be specified for the training – including all hyper-parameters, like learning rate,", + "type": "text" + }, + { + "bbox": [ + 496, + 517, + 502, + 526 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 517, + 506, + 528 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 525, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 136, + 539 + ], + "score": 1.0, + "content": "Adam’s", + "type": "text" + }, + { + "bbox": [ + 136, + 527, + 143, + 537 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 525, + 505, + 539 + ], + "score": 1.0, + "content": ", etc. The Spearman rank-order correlation coefficient between KID and FID scores is approximately", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 536, + 357, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 357, + 548 + ], + "score": 1.0, + "content": "0.994 for LSUN-BEDROOM and 0.995 for CELEBA-HQ-128 datasets.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 497, + 506, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 552, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "To evaluate a practical setting of selecting several best models, we compare the intersection between the set of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 127, + 574 + ], + "score": 1.0, + "content": "“best", + "type": "text" + }, + { + "bbox": [ + 127, + 563, + 136, + 572 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 561, + 272, + 574 + ], + "score": 1.0, + "content": "models by FID” and the set of “best", + "type": "text" + }, + { + "bbox": [ + 273, + 563, + 282, + 572 + ], + "score": 0.76, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 561, + 360, + 574 + ], + "score": 1.0, + "content": "models by KID” for", + "type": "text" + }, + { + "bbox": [ + 360, + 563, + 444, + 573 + ], + "score": 0.29, + "content": "\\bar { K } \\in { 5 , 1 0 , 2 0 , 5 0 , 1 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 561, + 505, + 574 + ], + "score": 1.0, + "content": ". The results are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 573, + 193, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 193, + 582 + ], + "score": 1.0, + "content": "summarized in Table 2.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 552, + 506, + 582 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 504, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "This experiment suggests that FID and KID metrics are very strongly correlated, and for the practical applications", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 505, + 609 + ], + "score": 1.0, + "content": "one can choose either of them. Also, the conclusions from our studies based on FID should transfer to studies", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 608, + 161, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 161, + 619 + ], + "score": 1.0, + "content": "based on KID.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 588, + 505, + 619 + ] + }, + { + "type": "table", + "bbox": [ + 197, + 647, + 411, + 725 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 124, + 626, + 484, + 639 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 625, + 485, + 640 + ], + "spans": [ + { + "bbox": [ + 124, + 625, + 285, + 640 + ], + "score": 1.0, + "content": "Table 2: Intersection between set of top", + "type": "text" + }, + { + "bbox": [ + 286, + 627, + 297, + 637 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 625, + 485, + 640 + ], + "score": 1.0, + "content": "experiments selected by FID and KID metrics.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 197, + 647, + 411, + 725 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 197, + 647, + 411, + 725 + ], + "spans": [ + { + "bbox": [ + 197, + 647, + 411, + 725 + ], + "score": 0.979, + "html": "
LSUN-BEDROOM CELEBA-HQ-128
K=5 4/52/5
K=109/10 8/10
K=2018/20 15/20
K=50 49/5046/50
K=10095/100 98/100
", + "type": "table", + "image_path": "c60d6fe1829ddd8eeca7bb19462437aaad4c277acacf61b026209b0ac306cbc3.jpg" + } + ] + } + ], + "index": 30.5, + "virtual_lines": [ + { + "bbox": [ + 197, + 647, + 411, + 660.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 197, + 660.0, + 411, + 673.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 197, + 673.0, + 411, + 686.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 197, + 686.0, + 411, + 699.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 197, + 699.0, + 411, + 712.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 197, + 712.0, + 411, + 725.0 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 28.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 216, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 217, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 217, + 96 + ], + "score": 1.0, + "content": "C ARCHITECTURES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 105, + 185, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 186, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 186, + 119 + ], + "score": 1.0, + "content": "C.1 SNDCGAN", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 125, + 506, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 125, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 505, + 136 + ], + "score": 1.0, + "content": "We used the same architecture as Miyato et al. (2018), with the parameters copied from the GitHub page5. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 146 + ], + "score": 1.0, + "content": "Table 3a and Table 3b, we describe the operations in layer column with order. Kernel size is described in format", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 171, + 156 + ], + "score": 1.0, + "content": "[f ilter h, f ilter", + "type": "text" + }, + { + "bbox": [ + 172, + 147, + 180, + 155 + ], + "score": 0.38, + "content": "_ - w", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 145, + 267, + 156 + ], + "score": 1.0, + "content": ", stride], input shape is", + "type": "text" + }, + { + "bbox": [ + 267, + 146, + 291, + 155 + ], + "score": 0.91, + "content": "h \\times w", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 145, + 365, + 156 + ], + "score": 1.0, + "content": "and output shape is", + "type": "text" + }, + { + "bbox": [ + 365, + 146, + 438, + 155 + ], + "score": 0.73, + "content": "h \\times w \\times c h a n n e l s", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 145, + 505, + 156 + ], + "score": 1.0, + "content": ". The slopes of all", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 275, + 167 + ], + "score": 1.0, + "content": "lReLU functions are set to 0.1. The input shape", + "type": "text" + }, + { + "bbox": [ + 275, + 156, + 299, + 165 + ], + "score": 0.89, + "content": "h \\times w", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 154, + 307, + 167 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 308, + 156, + 347, + 165 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "for CELEBA-HQ-128 and LSUN-BEDROOM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 165, + 189, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 137, + 175 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 165, + 189, + 176 + ], + "score": 1.0, + "content": "for CIFAR10.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "table", + "bbox": [ + 112, + 209, + 297, + 358 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 237, + 185, + 373, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 236, + 183, + 374, + 198 + ], + "spans": [ + { + "bbox": [ + 236, + 183, + 374, + 198 + ], + "score": 1.0, + "content": "Table 3: SNDCGAN architecture.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_caption", + "bbox": [ + 152, + 206, + 260, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 206, + 260, + 217 + ], + "spans": [], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 112, + 209, + 297, + 358 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 209, + 297, + 358 + ], + "spans": [ + { + "bbox": [ + 112, + 209, + 297, + 358 + ], + "score": 0.958, + "html": "
(a) SNDCGANdiscriminator
LAYER KERNELOUTPUT
Conv, IReLU [3,3,1]h×w×64
Conv, IReLU [4,4,2]h/2 × w/2 × 128
Conv, IReLU [3,3,1]h/2 × w/2 × 128
Conv, lReLU [4,4,2]h/4 × w/4× 256
Conv, IReLU [3,3,1]h/4 × w/4 × 256
Conv, IReLU [4,4,2]h/8×w/8× 512
Conv, IReLU [3,3,1]h/8×w/8× 512
Linear 11
", + "type": "table", + "image_path": "3e923ebf37b598ddef5916cb4c889c811faeff69618557723902403d2c8589aa.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 112, + 209, + 297, + 221.41666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 112, + 221.41666666666666, + 297, + 233.83333333333331 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 233.83333333333331, + 297, + 246.24999999999997 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 112, + 246.24999999999997, + 297, + 258.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 112, + 258.66666666666663, + 297, + 271.0833333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 112, + 271.0833333333333, + 297, + 283.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 112, + 283.5, + 297, + 295.9166666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 112, + 295.9166666666667, + 297, + 308.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 112, + 308.33333333333337, + 297, + 320.75000000000006 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 320.75000000000006, + 297, + 333.16666666666674 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 333.16666666666674, + 297, + 345.5833333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 112, + 345.5833333333334, + 297, + 358.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 304, + 222, + 512, + 328 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 357, + 206, + 452, + 217 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 357, + 205, + 452, + 219 + ], + "spans": [ + { + "bbox": [ + 357, + 205, + 452, + 219 + ], + "score": 1.0, + "content": "(b) SNDCGAN generator", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "table_body", + "bbox": [ + 304, + 222, + 512, + 328 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 222, + 512, + 328 + ], + "spans": [ + { + "bbox": [ + 304, + 222, + 512, + 328 + ], + "score": 0.966, + "html": "
LAYERKERNEL OUTPUT
2 1128
Linear, BN, ReLUh/8×w/8× 512 1
Deconv, BN, ReLU [4,4,2]h/4 ×w/4 × 256
Deconv,BN,ReLU[4,4,2] h/2 × w/2 × 128
Deconv, BN, ReLU[4,4,2] h×w×64
Deconv, Tanh [3,3,1]h×w×3
", + "type": "table", + "image_path": "c887e9053f30412212aeaa774cfa1b8c75f53b6c8dc2156daf4baae6b43269d7.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 304, + 222, + 512, + 235.25 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 304, + 235.25, + 512, + 248.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 304, + 248.5, + 512, + 261.75 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 304, + 261.75, + 512, + 275.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 304, + 275.0, + 512, + 288.25 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 304, + 288.25, + 512, + 301.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 304, + 301.5, + 512, + 314.75 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 304, + 314.75, + 512, + 328.0 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 17.75 + }, + { + "type": "title", + "bbox": [ + 107, + 379, + 240, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 241, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 241, + 392 + ], + "score": 1.0, + "content": "C.2 RESNET ARCHITECTURE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 506, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "The ResNet19 architecture is described in Table 4. RS column stands for the resample of the residual block,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "with downscale(D)/upscale(U)/none(-) setting. MP stands for mean pooling and BN for batch normalization.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "ResBlock is defined in Table 5. The addition layer merges two paths by adding them. The first path is a shortcut", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "layer with exactly one convolution operation, while the second path consists of two convolution operations.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "The downscale layer and upscale layer are marked in Table 5. We used average pool with kernel [2, 2, 2] for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 449, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 459 + ], + "score": 1.0, + "content": "downscale, after the convolution operation. We used unpool from https://github.com/tensorflow/", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 380, + 470 + ], + "score": 1.0, + "content": "tensorflow/issues/2169 for upscale, before convolution operation.", + "type": "text" + }, + { + "bbox": [ + 380, + 459, + 387, + 468 + ], + "score": 0.72, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 458, + 403, + 470 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 403, + 460, + 411, + 468 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "are the input shape to the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 316, + 480 + ], + "score": 1.0, + "content": "ResNet block, output shape depends on the RS parameter.", + "type": "text" + }, + { + "bbox": [ + 316, + 470, + 324, + 478 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 468, + 340, + 480 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 470, + 350, + 478 + ], + "score": 0.85, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "are the input channels and output channels", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "for a ResNet block. Table 6 described the ResNet CIFAR architecture we used in Figure 5 for reproducing the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "existing results. Note that RS is set to none for third ResBlock and fourth ResBlock in discriminator. In this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 497, + 383, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 383, + 511 + ], + "score": 1.0, + "content": "case, we used the same ResNet block defined in Table 5 without resampling.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 121, + 722, + 303, + 732 + ], + "lines": [ + { + "bbox": [ + 121, + 720, + 303, + 734 + ], + "spans": [ + { + "bbox": [ + 121, + 720, + 303, + 734 + ], + "score": 1.0, + "content": "5https://github.com/pfnet-research/chainer-gan-lib", + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 216, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 217, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 217, + 96 + ], + "score": 1.0, + "content": "C ARCHITECTURES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 105, + 185, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 186, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 186, + 119 + ], + "score": 1.0, + "content": "C.1 SNDCGAN", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 125, + 506, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 125, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 125, + 505, + 136 + ], + "score": 1.0, + "content": "We used the same architecture as Miyato et al. (2018), with the parameters copied from the GitHub page5. In", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 146 + ], + "score": 1.0, + "content": "Table 3a and Table 3b, we describe the operations in layer column with order. Kernel size is described in format", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 145, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 171, + 156 + ], + "score": 1.0, + "content": "[f ilter h, f ilter", + "type": "text" + }, + { + "bbox": [ + 172, + 147, + 180, + 155 + ], + "score": 0.38, + "content": "_ - w", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 145, + 267, + 156 + ], + "score": 1.0, + "content": ", stride], input shape is", + "type": "text" + }, + { + "bbox": [ + 267, + 146, + 291, + 155 + ], + "score": 0.91, + "content": "h \\times w", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 145, + 365, + 156 + ], + "score": 1.0, + "content": "and output shape is", + "type": "text" + }, + { + "bbox": [ + 365, + 146, + 438, + 155 + ], + "score": 0.73, + "content": "h \\times w \\times c h a n n e l s", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 145, + 505, + 156 + ], + "score": 1.0, + "content": ". The slopes of all", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 275, + 167 + ], + "score": 1.0, + "content": "lReLU functions are set to 0.1. The input shape", + "type": "text" + }, + { + "bbox": [ + 275, + 156, + 299, + 165 + ], + "score": 0.89, + "content": "h \\times w", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 154, + 307, + 167 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 308, + 156, + 347, + 165 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "for CELEBA-HQ-128 and LSUN-BEDROOM,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 165, + 189, + 176 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 137, + 175 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 165, + 189, + 176 + ], + "score": 1.0, + "content": "for CIFAR10.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 125, + 506, + 176 + ] + }, + { + "type": "table", + "bbox": [ + 112, + 209, + 297, + 358 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 237, + 185, + 373, + 196 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 236, + 183, + 374, + 198 + ], + "spans": [ + { + "bbox": [ + 236, + 183, + 374, + 198 + ], + "score": 1.0, + "content": "Table 3: SNDCGAN architecture.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "table_caption", + "bbox": [ + 152, + 206, + 260, + 217 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 206, + 260, + 217 + ], + "spans": [], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 112, + 209, + 297, + 358 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 209, + 297, + 358 + ], + "spans": [ + { + "bbox": [ + 112, + 209, + 297, + 358 + ], + "score": 0.958, + "html": "
(a) SNDCGANdiscriminator
LAYER KERNELOUTPUT
Conv, IReLU [3,3,1]h×w×64
Conv, IReLU [4,4,2]h/2 × w/2 × 128
Conv, IReLU [3,3,1]h/2 × w/2 × 128
Conv, lReLU [4,4,2]h/4 × w/4× 256
Conv, IReLU [3,3,1]h/4 × w/4 × 256
Conv, IReLU [4,4,2]h/8×w/8× 512
Conv, IReLU [3,3,1]h/8×w/8× 512
Linear 11
", + "type": "table", + "image_path": "3e923ebf37b598ddef5916cb4c889c811faeff69618557723902403d2c8589aa.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 112, + 209, + 297, + 221.41666666666666 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 112, + 221.41666666666666, + 297, + 233.83333333333331 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 112, + 233.83333333333331, + 297, + 246.24999999999997 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 112, + 246.24999999999997, + 297, + 258.66666666666663 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 112, + 258.66666666666663, + 297, + 271.0833333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 112, + 271.0833333333333, + 297, + 283.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 112, + 283.5, + 297, + 295.9166666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 112, + 295.9166666666667, + 297, + 308.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 112, + 308.33333333333337, + 297, + 320.75000000000006 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 112, + 320.75000000000006, + 297, + 333.16666666666674 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 112, + 333.16666666666674, + 297, + 345.5833333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 112, + 345.5833333333334, + 297, + 358.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 8 + }, + { + "type": "table", + "bbox": [ + 304, + 222, + 512, + 328 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 357, + 206, + 452, + 217 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 357, + 205, + 452, + 219 + ], + "spans": [ + { + "bbox": [ + 357, + 205, + 452, + 219 + ], + "score": 1.0, + "content": "(b) SNDCGAN generator", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "table_body", + "bbox": [ + 304, + 222, + 512, + 328 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 222, + 512, + 328 + ], + "spans": [ + { + "bbox": [ + 304, + 222, + 512, + 328 + ], + "score": 0.966, + "html": "
LAYERKERNEL OUTPUT
2 1128
Linear, BN, ReLUh/8×w/8× 512 1
Deconv, BN, ReLU [4,4,2]h/4 ×w/4 × 256
Deconv,BN,ReLU[4,4,2] h/2 × w/2 × 128
Deconv, BN, ReLU[4,4,2] h×w×64
Deconv, Tanh [3,3,1]h×w×3
", + "type": "table", + "image_path": "c887e9053f30412212aeaa774cfa1b8c75f53b6c8dc2156daf4baae6b43269d7.jpg" + } + ] + } + ], + "index": 25.5, + "virtual_lines": [ + { + "bbox": [ + 304, + 222, + 512, + 235.25 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 304, + 235.25, + 512, + 248.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 304, + 248.5, + 512, + 261.75 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 304, + 261.75, + 512, + 275.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 304, + 275.0, + 512, + 288.25 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 304, + 288.25, + 512, + 301.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 304, + 301.5, + 512, + 314.75 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 304, + 314.75, + 512, + 328.0 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 17.75 + }, + { + "type": "title", + "bbox": [ + 107, + 379, + 240, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 241, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 241, + 392 + ], + "score": 1.0, + "content": "C.2 RESNET ARCHITECTURE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 398, + 506, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 506, + 410 + ], + "score": 1.0, + "content": "The ResNet19 architecture is described in Table 4. RS column stands for the resample of the residual block,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 408, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 506, + 420 + ], + "score": 1.0, + "content": "with downscale(D)/upscale(U)/none(-) setting. MP stands for mean pooling and BN for batch normalization.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "ResBlock is defined in Table 5. The addition layer merges two paths by adding them. The first path is a shortcut", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "layer with exactly one convolution operation, while the second path consists of two convolution operations.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "The downscale layer and upscale layer are marked in Table 5. We used average pool with kernel [2, 2, 2] for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 449, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 505, + 459 + ], + "score": 1.0, + "content": "downscale, after the convolution operation. We used unpool from https://github.com/tensorflow/", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 380, + 470 + ], + "score": 1.0, + "content": "tensorflow/issues/2169 for upscale, before convolution operation.", + "type": "text" + }, + { + "bbox": [ + 380, + 459, + 387, + 468 + ], + "score": 0.72, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 458, + 403, + 470 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 403, + 460, + 411, + 468 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "are the input shape to the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 316, + 480 + ], + "score": 1.0, + "content": "ResNet block, output shape depends on the RS parameter.", + "type": "text" + }, + { + "bbox": [ + 316, + 470, + 324, + 478 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 468, + 340, + 480 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 470, + 350, + 478 + ], + "score": 0.85, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "are the input channels and output channels", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "for a ResNet block. Table 6 described the ResNet CIFAR architecture we used in Figure 5 for reproducing the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "existing results. Note that RS is set to none for third ResBlock and fourth ResBlock in discriminator. In this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 497, + 383, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 383, + 511 + ], + "score": 1.0, + "content": "case, we used the same ResNet block defined in Table 5 without resampling.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 398, + 506, + 511 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 111, + 128, + 299, + 264 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 78, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 506, + 93 + ], + "score": 1.0, + "content": "Table 4: ResNet 19 architecture corresponding to “resnet small” in https://github.com/", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 297, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 297, + 104 + ], + "score": 1.0, + "content": "pfnet-research/sngan_projection.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_caption", + "bbox": [ + 156, + 112, + 256, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 111, + 257, + 123 + ], + "spans": [ + { + "bbox": [ + 156, + 111, + 257, + 123 + ], + "score": 1.0, + "content": "(a) ResNet19 discriminator", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 111, + 128, + 299, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 128, + 299, + 264 + ], + "spans": [ + { + "bbox": [ + 111, + 128, + 299, + 264 + ], + "score": 0.974, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1] D64 × 64× 64
ResBlock[3,3,1] D32 × 32 ×128
ResBlock[3,3,1] D16 ×16× 256
ResBlock[3,3,1] D8×8× 256
ResBlock[3,3,1] D4 ×4 × 512
ResBlock[3,3,1] D2 ×2× 512
ReLU, MP-512
Linear- -1
", + "type": "table", + "image_path": "3371b9fe1e5470bcbc964c2da5cddcec698e66dfcfc294f2401c22fc485b41b2.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 111, + 128, + 299, + 141.6 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 141.6, + 299, + 155.2 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 155.2, + 299, + 168.79999999999998 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 168.79999999999998, + 299, + 182.39999999999998 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 111, + 182.39999999999998, + 299, + 195.99999999999997 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 195.99999999999997, + 299, + 209.59999999999997 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 209.59999999999997, + 299, + 223.19999999999996 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 223.19999999999996, + 299, + 236.79999999999995 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 111, + 236.79999999999995, + 299, + 250.39999999999995 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 111, + 250.39999999999995, + 299, + 263.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 307, + 128, + 499, + 294 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 361, + 112, + 448, + 123 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 360, + 111, + 448, + 124 + ], + "spans": [ + { + "bbox": [ + 360, + 111, + 448, + 124 + ], + "score": 1.0, + "content": "(b) ResNet19 generator", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 307, + 128, + 499, + 294 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 307, + 128, + 499, + 294 + ], + "spans": [ + { + "bbox": [ + 307, + 128, + 499, + 294 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
21128
Linear-14×4× 512
ResBlock[3,3,1]U8×8×512
ResBlock[3,3,1]U16 × 16× 256
ResBlock[3,3,1]U32 × 32 × 256
ResBlock[3,3,1]U64 × 64 × 128
ResBlock[3,3,1]U128 × 128 × 64
BN,ReLU11128 × 128 × 64
Conv[3,3,1]1128 × 128× 3
Sigmoid--128 × 128 × 3
", + "type": "table", + "image_path": "e22b1f5de7b1414ef9666679623aab2158525f437a8c06fd1ad3edb9eed4c348.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 307, + 128, + 499, + 141.83333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 307, + 141.83333333333334, + 499, + 155.66666666666669 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 307, + 155.66666666666669, + 499, + 169.50000000000003 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 307, + 169.50000000000003, + 499, + 183.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 307, + 183.33333333333337, + 499, + 197.1666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 307, + 197.1666666666667, + 499, + 211.00000000000006 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 307, + 211.00000000000006, + 499, + 224.8333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 307, + 224.8333333333334, + 499, + 238.66666666666674 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 307, + 238.66666666666674, + 499, + 252.50000000000009 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 307, + 252.50000000000009, + 499, + 266.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 307, + 266.3333333333334, + 499, + 280.16666666666674 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 307, + 280.16666666666674, + 499, + 294.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 311, + 372, + 322 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 237, + 309, + 373, + 324 + ], + "spans": [ + { + "bbox": [ + 237, + 309, + 373, + 324 + ], + "score": 1.0, + "content": "Table 5: ResNet block definition.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 19.5 + }, + { + "type": "table", + "bbox": [ + 108, + 348, + 303, + 439 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 332, + 256, + 343 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 332, + 257, + 343 + ], + "spans": [ + { + "bbox": [ + 156, + 332, + 257, + 343 + ], + "score": 1.0, + "content": "(a) ResBlock discriminator", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 108, + 348, + 303, + 439 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 348, + 303, + 439 + ], + "spans": [ + { + "bbox": [ + 108, + 348, + 303, + 439 + ], + "score": 0.972, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]Dh/2 × w/2 × Co
BN,ReLU11hxwXCi
Conv[3,3,1]-h×w×co
BN,ReLU==h×w×co
Conv[3,3,1]Dh/2 × w/2 ×Co
Addition--h/2 × w/2 × Co
", + "type": "table", + "image_path": "a61bc2dad7dee5dcad94d154d90410fe845958823dc1c5900db22bd41de52002.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 108, + 348, + 303, + 361.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 108, + 361.0, + 303, + 374.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 108, + 374.0, + 303, + 387.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 108, + 387.0, + 303, + 400.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 108, + 400.0, + 303, + 413.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 108, + 413.0, + 303, + 426.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 108, + 426.0, + 303, + 439.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 230, + 456, + 380, + 468 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 230, + 455, + 381, + 469 + ], + "spans": [ + { + "bbox": [ + 230, + 455, + 381, + 469 + ], + "score": 1.0, + "content": "Table 6: ResNet CIFAR architecture.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + } + ], + "index": 32 + }, + { + "type": "table", + "bbox": [ + 311, + 348, + 496, + 439 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 361, + 333, + 447, + 343 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 361, + 331, + 448, + 344 + ], + "spans": [ + { + "bbox": [ + 361, + 331, + 448, + 344 + ], + "score": 1.0, + "content": "(b) ResBlock generator", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "table_body", + "bbox": [ + 311, + 348, + 496, + 439 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 311, + 348, + 496, + 439 + ], + "spans": [ + { + "bbox": [ + 311, + 348, + 496, + 439 + ], + "score": 0.969, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]U2h× 2w XCo
BN, ReLU1-h×wXCi
Conv BN, ReLU[3,3,1]U2h ×2w×Co
-12h × 2w ×Co
[3,3,1]12h ×2w×Co
Conv Addition--2h × 2w X Co
", + "type": "table", + "image_path": "053517377514aa384c0fbeda5aa3aed15d8d4f2c604fb022c2d63e85f5134cee.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 311, + 348, + 496, + 361.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 311, + 361.0, + 496, + 374.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 311, + 374.0, + 496, + 387.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 311, + 387.0, + 496, + 400.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 311, + 400.0, + 496, + 413.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 311, + 413.0, + 496, + 426.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 311, + 426.0, + 496, + 439.0 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "index": 33.5 + }, + { + "type": "table", + "bbox": [ + 111, + 493, + 299, + 600 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 147, + 477, + 266, + 488 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 146, + 477, + 266, + 488 + ], + "spans": [ + { + "bbox": [ + 146, + 477, + 266, + 488 + ], + "score": 1.0, + "content": "(a) ResNet CIFAR discriminator", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "table_body", + "bbox": [ + 111, + 493, + 299, + 600 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 111, + 493, + 299, + 600 + ], + "spans": [ + { + "bbox": [ + 111, + 493, + 299, + 600 + ], + "score": 0.975, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1]D 16 × 16 × 128
ResBlock[3,3,1]D 8×8×128
ResBlock[3,3,1]8×8×128 -
ResBlock[3,3,1]- 8×8×128
ReLU, MP128 -
Linear-- 1
", + "type": "table", + "image_path": "a2567f6e717cbbb3a6469ac38bb4b519636686f6c2a4a0b5ef55034ed2dd1abd.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 111, + 493, + 299, + 506.375 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 111, + 506.375, + 299, + 519.75 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 111, + 519.75, + 299, + 533.125 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 111, + 533.125, + 299, + 546.5 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 111, + 546.5, + 299, + 559.875 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 111, + 559.875, + 299, + 573.25 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 111, + 573.25, + 299, + 586.625 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 111, + 586.625, + 299, + 600.0 + ], + "spans": [], + "index": 53 + } + ] + } + ], + "index": 46.75 + }, + { + "type": "table", + "bbox": [ + 309, + 493, + 497, + 630 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 351, + 477, + 457, + 488 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 351, + 477, + 458, + 489 + ], + "spans": [ + { + "bbox": [ + 351, + 477, + 458, + 489 + ], + "score": 1.0, + "content": "(b) ResNet CIFAR generator", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "table_body", + "bbox": [ + 309, + 493, + 497, + 630 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 309, + 493, + 497, + 630 + ], + "spans": [ + { + "bbox": [ + 309, + 493, + 497, + 630 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
2-128
Linear--4×4×256
ResBlock[3,3,1]U8×8× 256
ResBlock[3,3,1]U16 × 16 × 256
ResBlock[3,3,1]U32 × 32 × 256
BN, ReLU1132 × 32× 256
Conv[3,3,1]-32 × 32 × 3
Sigmoid1-32 × 32 × 3
", + "type": "table", + "image_path": "493a6bfc4c66827df5e99eb1a8fde9a99c1078cb4ceb973deca077470d7e2ced.jpg" + } + ] + } + ], + "index": 58.5, + "virtual_lines": [ + { + "bbox": [ + 309, + 493, + 497, + 506.7 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 309, + 506.7, + 497, + 520.4 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 309, + 520.4, + 497, + 534.1 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 309, + 534.1, + 497, + 547.8000000000001 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 309, + 547.8000000000001, + 497, + 561.5000000000001 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 309, + 561.5000000000001, + 497, + 575.2000000000002 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 309, + 575.2000000000002, + 497, + 588.9000000000002 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 309, + 588.9000000000002, + 497, + 602.6000000000003 + ], + "spans": [], + "index": 61 + }, + { + "bbox": [ + 309, + 602.6000000000003, + 497, + 616.3000000000003 + ], + "spans": [], + "index": 62 + }, + { + "bbox": [ + 309, + 616.3000000000003, + 497, + 630.0000000000003 + ], + "spans": [], + "index": 63 + } + ] + } + ], + "index": 51.75 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 111, + 128, + 299, + 264 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 78, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 506, + 93 + ], + "score": 1.0, + "content": "Table 4: ResNet 19 architecture corresponding to “resnet small” in https://github.com/", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 297, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 297, + 104 + ], + "score": 1.0, + "content": "pfnet-research/sngan_projection.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_caption", + "bbox": [ + 156, + 112, + 256, + 122 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 111, + 257, + 123 + ], + "spans": [ + { + "bbox": [ + 156, + 111, + 257, + 123 + ], + "score": 1.0, + "content": "(a) ResNet19 discriminator", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 111, + 128, + 299, + 264 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 128, + 299, + 264 + ], + "spans": [ + { + "bbox": [ + 111, + 128, + 299, + 264 + ], + "score": 0.974, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1] D64 × 64× 64
ResBlock[3,3,1] D32 × 32 ×128
ResBlock[3,3,1] D16 ×16× 256
ResBlock[3,3,1] D8×8× 256
ResBlock[3,3,1] D4 ×4 × 512
ResBlock[3,3,1] D2 ×2× 512
ReLU, MP-512
Linear- -1
", + "type": "table", + "image_path": "3371b9fe1e5470bcbc964c2da5cddcec698e66dfcfc294f2401c22fc485b41b2.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 111, + 128, + 299, + 141.6 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 111, + 141.6, + 299, + 155.2 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 111, + 155.2, + 299, + 168.79999999999998 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 111, + 168.79999999999998, + 299, + 182.39999999999998 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 111, + 182.39999999999998, + 299, + 195.99999999999997 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 195.99999999999997, + 299, + 209.59999999999997 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 209.59999999999997, + 299, + 223.19999999999996 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 111, + 223.19999999999996, + 299, + 236.79999999999995 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 111, + 236.79999999999995, + 299, + 250.39999999999995 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 111, + 250.39999999999995, + 299, + 263.99999999999994 + ], + "spans": [], + "index": 13 + } + ] + } + ], + "index": 2 + }, + { + "type": "table", + "bbox": [ + 307, + 128, + 499, + 294 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 361, + 112, + 448, + 123 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 360, + 111, + 448, + 124 + ], + "spans": [ + { + "bbox": [ + 360, + 111, + 448, + 124 + ], + "score": 1.0, + "content": "(b) ResNet19 generator", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "table_body", + "bbox": [ + 307, + 128, + 499, + 294 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 307, + 128, + 499, + 294 + ], + "spans": [ + { + "bbox": [ + 307, + 128, + 499, + 294 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
21128
Linear-14×4× 512
ResBlock[3,3,1]U8×8×512
ResBlock[3,3,1]U16 × 16× 256
ResBlock[3,3,1]U32 × 32 × 256
ResBlock[3,3,1]U64 × 64 × 128
ResBlock[3,3,1]U128 × 128 × 64
BN,ReLU11128 × 128 × 64
Conv[3,3,1]1128 × 128× 3
Sigmoid--128 × 128 × 3
", + "type": "table", + "image_path": "e22b1f5de7b1414ef9666679623aab2158525f437a8c06fd1ad3edb9eed4c348.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 307, + 128, + 499, + 141.83333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 307, + 141.83333333333334, + 499, + 155.66666666666669 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 307, + 155.66666666666669, + 499, + 169.50000000000003 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 307, + 169.50000000000003, + 499, + 183.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 307, + 183.33333333333337, + 499, + 197.1666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 307, + 197.1666666666667, + 499, + 211.00000000000006 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 307, + 211.00000000000006, + 499, + 224.8333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 307, + 224.8333333333334, + 499, + 238.66666666666674 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 307, + 238.66666666666674, + 499, + 252.50000000000009 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 307, + 252.50000000000009, + 499, + 266.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 307, + 266.3333333333334, + 499, + 280.16666666666674 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 307, + 280.16666666666674, + 499, + 294.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 238, + 311, + 372, + 322 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 237, + 309, + 373, + 324 + ], + "spans": [ + { + "bbox": [ + 237, + 309, + 373, + 324 + ], + "score": 1.0, + "content": "Table 5: ResNet block definition.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + } + ], + "index": 19.5 + }, + { + "type": "table", + "bbox": [ + 108, + 348, + 303, + 439 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 156, + 332, + 256, + 343 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 332, + 257, + 343 + ], + "spans": [ + { + "bbox": [ + 156, + 332, + 257, + 343 + ], + "score": 1.0, + "content": "(a) ResBlock discriminator", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 108, + 348, + 303, + 439 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 348, + 303, + 439 + ], + "spans": [ + { + "bbox": [ + 108, + 348, + 303, + 439 + ], + "score": 0.972, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]Dh/2 × w/2 × Co
BN,ReLU11hxwXCi
Conv[3,3,1]-h×w×co
BN,ReLU==h×w×co
Conv[3,3,1]Dh/2 × w/2 ×Co
Addition--h/2 × w/2 × Co
", + "type": "table", + "image_path": "a61bc2dad7dee5dcad94d154d90410fe845958823dc1c5900db22bd41de52002.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 108, + 348, + 303, + 361.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 108, + 361.0, + 303, + 374.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 108, + 374.0, + 303, + 387.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 108, + 387.0, + 303, + 400.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 108, + 400.0, + 303, + 413.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 108, + 413.0, + 303, + 426.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 108, + 426.0, + 303, + 439.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 230, + 456, + 380, + 468 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 230, + 455, + 381, + 469 + ], + "spans": [ + { + "bbox": [ + 230, + 455, + 381, + 469 + ], + "score": 1.0, + "content": "Table 6: ResNet CIFAR architecture.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + } + ], + "index": 32 + }, + { + "type": "table", + "bbox": [ + 311, + 348, + 496, + 439 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 361, + 333, + 447, + 343 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 361, + 331, + 448, + 344 + ], + "spans": [ + { + "bbox": [ + 361, + 331, + 448, + 344 + ], + "score": 1.0, + "content": "(b) ResBlock generator", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "table_body", + "bbox": [ + 311, + 348, + 496, + 439 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 311, + 348, + 496, + 439 + ], + "spans": [ + { + "bbox": [ + 311, + 348, + 496, + 439 + ], + "score": 0.969, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]U2h× 2w XCo
BN, ReLU1-h×wXCi
Conv BN, ReLU[3,3,1]U2h ×2w×Co
-12h × 2w ×Co
[3,3,1]12h ×2w×Co
Conv Addition--2h × 2w X Co
", + "type": "table", + "image_path": "053517377514aa384c0fbeda5aa3aed15d8d4f2c604fb022c2d63e85f5134cee.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 311, + 348, + 496, + 361.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 311, + 361.0, + 496, + 374.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 311, + 374.0, + 496, + 387.0 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 311, + 387.0, + 496, + 400.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 311, + 400.0, + 496, + 413.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 311, + 413.0, + 496, + 426.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 311, + 426.0, + 496, + 439.0 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "index": 33.5 + }, + { + "type": "table", + "bbox": [ + 111, + 493, + 299, + 600 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 147, + 477, + 266, + 488 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 146, + 477, + 266, + 488 + ], + "spans": [ + { + "bbox": [ + 146, + 477, + 266, + 488 + ], + "score": 1.0, + "content": "(a) ResNet CIFAR discriminator", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "table_body", + "bbox": [ + 111, + 493, + 299, + 600 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 111, + 493, + 299, + 600 + ], + "spans": [ + { + "bbox": [ + 111, + 493, + 299, + 600 + ], + "score": 0.975, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1]D 16 × 16 × 128
ResBlock[3,3,1]D 8×8×128
ResBlock[3,3,1]8×8×128 -
ResBlock[3,3,1]- 8×8×128
ReLU, MP128 -
Linear-- 1
", + "type": "table", + "image_path": "a2567f6e717cbbb3a6469ac38bb4b519636686f6c2a4a0b5ef55034ed2dd1abd.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 111, + 493, + 299, + 506.375 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 111, + 506.375, + 299, + 519.75 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 111, + 519.75, + 299, + 533.125 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 111, + 533.125, + 299, + 546.5 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 111, + 546.5, + 299, + 559.875 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 111, + 559.875, + 299, + 573.25 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 111, + 573.25, + 299, + 586.625 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 111, + 586.625, + 299, + 600.0 + ], + "spans": [], + "index": 53 + } + ] + } + ], + "index": 46.75 + }, + { + "type": "table", + "bbox": [ + 309, + 493, + 497, + 630 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 351, + 477, + 457, + 488 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 351, + 477, + 458, + 489 + ], + "spans": [ + { + "bbox": [ + 351, + 477, + 458, + 489 + ], + "score": 1.0, + "content": "(b) ResNet CIFAR generator", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "table_body", + "bbox": [ + 309, + 493, + 497, + 630 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 309, + 493, + 497, + 630 + ], + "spans": [ + { + "bbox": [ + 309, + 493, + 497, + 630 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
2-128
Linear--4×4×256
ResBlock[3,3,1]U8×8× 256
ResBlock[3,3,1]U16 × 16 × 256
ResBlock[3,3,1]U32 × 32 × 256
BN, ReLU1132 × 32× 256
Conv[3,3,1]-32 × 32 × 3
Sigmoid1-32 × 32 × 3
", + "type": "table", + "image_path": "493a6bfc4c66827df5e99eb1a8fde9a99c1078cb4ceb973deca077470d7e2ced.jpg" + } + ] + } + ], + "index": 58.5, + "virtual_lines": [ + { + "bbox": [ + 309, + 493, + 497, + 506.7 + ], + "spans": [], + "index": 54 + }, + { + "bbox": [ + 309, + 506.7, + 497, + 520.4 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 309, + 520.4, + 497, + 534.1 + ], + "spans": [], + "index": 56 + }, + { + "bbox": [ + 309, + 534.1, + 497, + 547.8000000000001 + ], + "spans": [], + "index": 57 + }, + { + "bbox": [ + 309, + 547.8000000000001, + 497, + 561.5000000000001 + ], + "spans": [], + "index": 58 + }, + { + "bbox": [ + 309, + 561.5000000000001, + 497, + 575.2000000000002 + ], + "spans": [], + "index": 59 + }, + { + "bbox": [ + 309, + 575.2000000000002, + 497, + 588.9000000000002 + ], + "spans": [], + "index": 60 + }, + { + "bbox": [ + 309, + 588.9000000000002, + 497, + 602.6000000000003 + ], + "spans": [], + "index": 61 + }, + { + "bbox": [ + 309, + 602.6000000000003, + 497, + 616.3000000000003 + ], + "spans": [], + "index": 62 + }, + { + "bbox": [ + 309, + 616.3000000000003, + 497, + 630.0000000000003 + ], + "spans": [], + "index": 63 + } + ] + } + ], + "index": 51.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 352, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 354, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 354, + 95 + ], + "score": 1.0, + "content": "D RESNET ARCHITECTURE ABLATION STUDY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 506, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 507, + 117 + ], + "score": 1.0, + "content": "We have noticed six minor differences on Resnet architecture comparing to implementation from https:", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 127 + ], + "score": 1.0, + "content": "//github.com/pfnet-research/chainer-gan-lib/blob/master/common/net.py (Miy-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "ato et al., 2018). We did ablation study to verify the impact of these differences. Figure 7 shows the impact of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 304, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 304, + 147 + ], + "score": 1.0, + "content": "the ablation study, with details described as following.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 132, + 156, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 132, + 155, + 497, + 169 + ], + "spans": [ + { + "bbox": [ + 132, + 155, + 497, + 169 + ], + "score": 1.0, + "content": "• DEFAULT: ResNet CIFAR architecture with spectral normalization and non-saturating GAN loss.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 132, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 132, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "• SKIP: Use input as output for the shortcut connection in the discriminator ResBlock. By default it was", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 182, + 249, + 192 + ], + "spans": [ + { + "bbox": [ + 141, + 182, + 249, + 192 + ], + "score": 1.0, + "content": "a conv layer with 3x3 kernel.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 138, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 138, + 196, + 178, + 207 + ], + "score": 1.0, + "content": "CIN: Use", + "type": "text" + }, + { + "bbox": [ + 178, + 197, + 187, + 205 + ], + "score": 0.83, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 196, + 471, + 207 + ], + "score": 1.0, + "content": "for the discriminator ResBlock hidden layer output channels. By default it was", + "type": "text" + }, + { + "bbox": [ + 471, + 198, + 480, + 205 + ], + "score": 0.82, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "in our", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 206, + 424, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 206, + 280, + 217 + ], + "score": 1.0, + "content": "setup, while Miyato et al. (2018) used", + "type": "text" + }, + { + "bbox": [ + 281, + 207, + 290, + 216 + ], + "score": 0.86, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 206, + 372, + 217 + ], + "score": 1.0, + "content": "for first ResBlock and", + "type": "text" + }, + { + "bbox": [ + 372, + 207, + 380, + 216 + ], + "score": 0.86, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 206, + 424, + 217 + ], + "score": 1.0, + "content": "for the rest.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 140, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 140, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "OPT: Use an optimized setup for the first discriminator ResBlock, which includes: (1) no ReLU, (2) a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 231, + 419, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 313, + 241 + ], + "score": 1.0, + "content": "conv layer for the shortcut connections, (3) use", + "type": "text" + }, + { + "bbox": [ + 313, + 231, + 322, + 240 + ], + "score": 0.84, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 231, + 361, + 241 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 361, + 231, + 369, + 240 + ], + "score": 0.83, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 231, + 419, + 241 + ], + "score": 1.0, + "content": "in ResBlock.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 137, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 137, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "CIN OPT: Use CIN and OPT together. It means the first ResBlock is optimized while the remaining", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 254, + 320, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 197, + 266 + ], + "score": 1.0, + "content": "ResBlocks use", + "type": "text" + }, + { + "bbox": [ + 197, + 256, + 205, + 264 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 254, + 320, + 266 + ], + "score": 1.0, + "content": "for the hidden output channels.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 132, + 269, + 443, + 280 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 443, + 280 + ], + "score": 1.0, + "content": "• SUM: Use reduce sum for the discriminator output. By default it was reduce mean.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 133, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 133, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "• TAN: Use tanh for the generator output, as well as range [-1, 1] for discriminator input. By default it", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 294, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 321, + 306 + ], + "score": 1.0, + "content": "was sigmoid and discriminator input range [0, 1].", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 137, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 137, + 307, + 242, + 320 + ], + "score": 1.0, + "content": "EPS: Use a bigger epsilon", + "type": "text" + }, + { + "bbox": [ + 243, + 308, + 269, + 318 + ], + "score": 0.41, + "content": "\\mathrm { 2 e - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "for generator batch normalization. By default it was 1e − 5 in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 317, + 188, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 188, + 329 + ], + "score": 1.0, + "content": "TensorFlow.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 132, + 333, + 312, + 344 + ], + "spans": [ + { + "bbox": [ + 132, + 333, + 312, + 344 + ], + "score": 1.0, + "content": "• ALL: Apply all the above differences together.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "In the ablation study, the CIN experiment obtained the worst FID score. Combining with OPT, the CIN results", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "were improved to the same level as the others which is reasonable because the first block has three input channels,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "which becomes a bottleneck for the optimization. Hence, using OPT and CIN together performs as well as the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 384, + 443, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 443, + 396 + ], + "score": 1.0, + "content": "others. Overall, the impact of these differences are minor according to the study on CIFAR10.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "image", + "bbox": [ + 146, + 406, + 465, + 515 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 406, + 465, + 515 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 406, + 465, + 515 + ], + "spans": [ + { + "bbox": [ + 146, + 406, + 465, + 515 + ], + "score": 0.963, + "type": "image", + "image_path": "915843060e097817e89e5ef818f9f0c36cdf124f39cb363d94c6249fa26e25de.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 146, + 406, + 465, + 442.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 146, + 442.3333333333333, + 465, + 478.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 146, + 478.66666666666663, + 465, + 515.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 525, + 505, + 547 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Figure 7: Ablation study of ResNet architecture differences. The experiment codes are described in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 151, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 151, + 548 + ], + "score": 1.0, + "content": "Section D.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 572, + 363, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 364, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 364, + 587 + ], + "score": 1.0, + "content": "E RECOMMENDED HYPERPARAMETER SETTINGS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "To make the future GAN training simpler, we propose a set of best parameters for three setups: (1) Best", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 606, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 617 + ], + "score": 1.0, + "content": "parameters without any regularizer. (2) Best parameters with only one regularizer. (3) Best parameters with at", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 507, + 628 + ], + "score": 1.0, + "content": "most two regularizers. Table 7, Table 8 and Table 9 summarize the top 2 parameters for SNDCGAN architecture,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "score": 1.0, + "content": "ResNet19 architecture and ResNet CIFAR architecture, respectively. Models are ranked according to the median", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "FID score of five different random seeds with fixed hyper-parameters in Table 1a. Note that ranking models", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "according to the best FID score of different seeds will achieve better but unstable result. Gaussian Process", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "optimization hyper-parameters are not included in this table. For ResNet19 architecture with at most two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 676 + ], + "score": 1.0, + "content": "regularizers, we have run it only once due to computational overhead. To show the model stability, we listed", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 674, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 104, + 674, + 506, + 688 + ], + "score": 1.0, + "content": "the best FID score out of five seeds from the same parameters in column best. Spectral normalization is clearly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 696 + ], + "score": 1.0, + "content": "outperforms the other normalizers on SNDCGAN and ResNet CIFAR architectures, while on ResNet19 both", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 695, + 317, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 317, + 707 + ], + "score": 1.0, + "content": "layer normalization and spectral normalization work well.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 711, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "To visualize the FID score on each data set, Figure 8, Figure 9 and Figure 10 show the generated examples by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 489, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 489, + 733 + ], + "score": 1.0, + "content": "GANs. We select the examples from the best FID run, and then increase the FID score for two more plots.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 81, + 352, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 354, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 354, + 95 + ], + "score": 1.0, + "content": "D RESNET ARCHITECTURE ABLATION STUDY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 506, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 507, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 507, + 117 + ], + "score": 1.0, + "content": "We have noticed six minor differences on Resnet architecture comparing to implementation from https:", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 506, + 127 + ], + "score": 1.0, + "content": "//github.com/pfnet-research/chainer-gan-lib/blob/master/common/net.py (Miy-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "ato et al., 2018). We did ablation study to verify the impact of these differences. Figure 7 shows the impact of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 304, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 304, + 147 + ], + "score": 1.0, + "content": "the ablation study, with details described as following.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 104, + 507, + 147 + ] + }, + { + "type": "list", + "bbox": [ + 132, + 156, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 132, + 155, + 497, + 169 + ], + "spans": [ + { + "bbox": [ + 132, + 155, + 497, + 169 + ], + "score": 1.0, + "content": "• DEFAULT: ResNet CIFAR architecture with spectral normalization and non-saturating GAN loss.", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 132, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 132, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "• SKIP: Use input as output for the shortcut connection in the discriminator ResBlock. By default it was", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 182, + 249, + 192 + ], + "spans": [ + { + "bbox": [ + 141, + 182, + 249, + 192 + ], + "score": 1.0, + "content": "a conv layer with 3x3 kernel.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 138, + 196, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 138, + 196, + 178, + 207 + ], + "score": 1.0, + "content": "CIN: Use", + "type": "text" + }, + { + "bbox": [ + 178, + 197, + 187, + 205 + ], + "score": 0.83, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 196, + 471, + 207 + ], + "score": 1.0, + "content": "for the discriminator ResBlock hidden layer output channels. By default it was", + "type": "text" + }, + { + "bbox": [ + 471, + 198, + 480, + 205 + ], + "score": 0.82, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 196, + 505, + 207 + ], + "score": 1.0, + "content": "in our", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 206, + 424, + 217 + ], + "spans": [ + { + "bbox": [ + 141, + 206, + 280, + 217 + ], + "score": 1.0, + "content": "setup, while Miyato et al. (2018) used", + "type": "text" + }, + { + "bbox": [ + 281, + 207, + 290, + 216 + ], + "score": 0.86, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 206, + 372, + 217 + ], + "score": 1.0, + "content": "for first ResBlock and", + "type": "text" + }, + { + "bbox": [ + 372, + 207, + 380, + 216 + ], + "score": 0.86, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 206, + 424, + 217 + ], + "score": 1.0, + "content": "for the rest.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 140, + 221, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 140, + 221, + 505, + 232 + ], + "score": 1.0, + "content": "OPT: Use an optimized setup for the first discriminator ResBlock, which includes: (1) no ReLU, (2) a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 231, + 419, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 313, + 241 + ], + "score": 1.0, + "content": "conv layer for the shortcut connections, (3) use", + "type": "text" + }, + { + "bbox": [ + 313, + 231, + 322, + 240 + ], + "score": 0.84, + "content": "c _ { o }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 231, + 361, + 241 + ], + "score": 1.0, + "content": "instead of", + "type": "text" + }, + { + "bbox": [ + 361, + 231, + 369, + 240 + ], + "score": 0.83, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 231, + 419, + 241 + ], + "score": 1.0, + "content": "in ResBlock.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 137, + 244, + 504, + 256 + ], + "spans": [ + { + "bbox": [ + 137, + 244, + 504, + 256 + ], + "score": 1.0, + "content": "CIN OPT: Use CIN and OPT together. It means the first ResBlock is optimized while the remaining", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 254, + 320, + 266 + ], + "spans": [ + { + "bbox": [ + 141, + 254, + 197, + 266 + ], + "score": 1.0, + "content": "ResBlocks use", + "type": "text" + }, + { + "bbox": [ + 197, + 256, + 205, + 264 + ], + "score": 0.84, + "content": "c _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 254, + 320, + 266 + ], + "score": 1.0, + "content": "for the hidden output channels.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 269, + 443, + 280 + ], + "spans": [ + { + "bbox": [ + 132, + 269, + 443, + 280 + ], + "score": 1.0, + "content": "• SUM: Use reduce sum for the discriminator output. By default it was reduce mean.", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 133, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 133, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "• TAN: Use tanh for the generator output, as well as range [-1, 1] for discriminator input. By default it", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 294, + 321, + 306 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 321, + 306 + ], + "score": 1.0, + "content": "was sigmoid and discriminator input range [0, 1].", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 137, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 137, + 307, + 242, + 320 + ], + "score": 1.0, + "content": "EPS: Use a bigger epsilon", + "type": "text" + }, + { + "bbox": [ + 243, + 308, + 269, + 318 + ], + "score": 0.41, + "content": "\\mathrm { 2 e - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "for generator batch normalization. By default it was 1e − 5 in", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 317, + 188, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 188, + 329 + ], + "score": 1.0, + "content": "TensorFlow.", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 132, + 333, + 312, + 344 + ], + "spans": [ + { + "bbox": [ + 132, + 333, + 312, + 344 + ], + "score": 1.0, + "content": "• ALL: Apply all the above differences together.", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12, + "bbox_fs": [ + 132, + 155, + 506, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 366 + ], + "score": 1.0, + "content": "In the ablation study, the CIN experiment obtained the worst FID score. Combining with OPT, the CIN results", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "were improved to the same level as the others which is reasonable because the first block has three input channels,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 505, + 385 + ], + "score": 1.0, + "content": "which becomes a bottleneck for the optimization. Hence, using OPT and CIN together performs as well as the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 384, + 443, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 443, + 396 + ], + "score": 1.0, + "content": "others. Overall, the impact of these differences are minor according to the study on CIFAR10.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 353, + 505, + 396 + ] + }, + { + "type": "image", + "bbox": [ + 146, + 406, + 465, + 515 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 406, + 465, + 515 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 406, + 465, + 515 + ], + "spans": [ + { + "bbox": [ + 146, + 406, + 465, + 515 + ], + "score": 0.963, + "type": "image", + "image_path": "915843060e097817e89e5ef818f9f0c36cdf124f39cb363d94c6249fa26e25de.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 146, + 406, + 465, + 442.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 146, + 442.3333333333333, + 465, + 478.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 146, + 478.66666666666663, + 465, + 515.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 525, + 505, + 547 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "Figure 7: Ablation study of ResNet architecture differences. The experiment codes are described in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 536, + 151, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 151, + 548 + ], + "score": 1.0, + "content": "Section D.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 572, + 363, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 364, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 364, + 587 + ], + "score": 1.0, + "content": "E RECOMMENDED HYPERPARAMETER SETTINGS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "To make the future GAN training simpler, we propose a set of best parameters for three setups: (1) Best", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 606, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 617 + ], + "score": 1.0, + "content": "parameters without any regularizer. (2) Best parameters with only one regularizer. (3) Best parameters with at", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 615, + 507, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 507, + 628 + ], + "score": 1.0, + "content": "most two regularizers. Table 7, Table 8 and Table 9 summarize the top 2 parameters for SNDCGAN architecture,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 637 + ], + "score": 1.0, + "content": "ResNet19 architecture and ResNet CIFAR architecture, respectively. Models are ranked according to the median", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 647 + ], + "score": 1.0, + "content": "FID score of five different random seeds with fixed hyper-parameters in Table 1a. Note that ranking models", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "according to the best FID score of different seeds will achieve better but unstable result. Gaussian Process", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "optimization hyper-parameters are not included in this table. For ResNet19 architecture with at most two", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 666, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 676 + ], + "score": 1.0, + "content": "regularizers, we have run it only once due to computational overhead. To show the model stability, we listed", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 674, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 104, + 674, + 506, + 688 + ], + "score": 1.0, + "content": "the best FID score out of five seeds from the same parameters in column best. Spectral normalization is clearly", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 696 + ], + "score": 1.0, + "content": "outperforms the other normalizers on SNDCGAN and ResNet CIFAR architectures, while on ResNet19 both", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 695, + 317, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 317, + 707 + ], + "score": 1.0, + "content": "layer normalization and spectral normalization work well.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 596, + 507, + 707 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 711, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "To visualize the FID score on each data set, Figure 8, Figure 9 and Figure 10 show the generated examples by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 489, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 489, + 733 + ], + "score": 1.0, + "content": "GANs. We select the examples from the best FID run, and then increase the FID score for two more plots.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 710, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 101, + 507, + 331 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 239, + 80, + 371, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 239, + 79, + 372, + 95 + ], + "spans": [ + { + "bbox": [ + 239, + 79, + 372, + 95 + ], + "score": 1.0, + "content": "Table 7: SNDCGAN parameters", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 105, + 101, + 507, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 101, + 507, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 507, + 331 + ], + "score": 0.984, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1βndiscNORM
CIFAR1029.7528.660.1000.5000.999111
CIFAR1036.1233.230.2000.5000.9991==
CELEBA-HQ-12866.4263.130.1000.5000.99911
CELEBA-HQ-12867.3964.590.2000.5000.9991==
LSUN-BEDROOM180.36160.120.2000.5000.99911
LSUN-BEDROOM188.99162.000.1000.5000.99911
CIFAR1026.6625.270.2000.5000.9991SN
CIFAR1027.3226.970.1000.5000.9991SN
CELEBA-HQ-12831.1429.050.2000.5000.9991=SN
CELEBA-HQ-12833.5231.920.1000.5000.9991SN
LSUN-BEDROOM63.4658.130.2000.5000.9991SN
LSUN-BEDROOM74.6659.941.0000.5000.9991-SN
CIFAR1026.2326.010.2000.5000.99911SN+GP
CIFAR1026.6625.270.2000.5000.99911SN
CELEBA-HQ-12831.1330.800.1000.5000.999110GP
CELEBA-HQ-12831.1429.050.2000.5000.99911SN
LSUN-BEDROOM63.4658.130.2000.5000.9991=SN
LSUN-BEDROOM66.5865.750.2000.5000.999110GP
", + "type": "table", + "image_path": "517095517d9657f93ac21ca52943d038f6f799595f9e6be1d0b18ed16b891c58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 105, + 101, + 507, + 177.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 177.66666666666669, + 507, + 254.33333333333337 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 254.33333333333337, + 507, + 331.00000000000006 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 363, + 508, + 528 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 244, + 342, + 366, + 354 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 243, + 340, + 368, + 356 + ], + "spans": [ + { + "bbox": [ + 243, + 340, + 368, + 356 + ], + "score": 1.0, + "content": "Table 8: ResNet19 parameters", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 363, + 508, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 363, + 508, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 508, + 528 + ], + "score": 0.982, + "html": "
DATA SETMEDIANBESTLR(×10-3)βndiscNORM
CELEBA-HQ-12843.7339.100.1000.5000.9995
CELEBA-HQ-12843.7739.600.1000.5000.9991=-
LSUN-BEDROOM160.97119.580.1000.5000.9005
LSUN-BEDROOM161.70125.550.1000.5000.9005=1
CELEBA-HQ-12832.4628.520.1000.5000.9991=LN
CELEBA-HQ-12840.5836.370.2000.5000.9001LN
LSUN-BEDROOM70.3048.881.0000.5000.9991SN
LSUN-BEDROOM73.8460.540.1000.5000.9005-SN
CELEBA-HQ-12829.13=0.1000.5000.90051LN+DR
CELEBA-HQ-12829.650.2000.5000.90051GP
LSUN-BEDROOM55.720.2000.5000.90051LN+GP
LSUN-BEDROOM57.810.1000.5000.999110SN+GP
", + "type": "table", + "image_path": "09f6b23750df3b53d8db071533a0bb9279cb8b391a26190ff51b903c06c8e150.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 363, + 508, + 418.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 418.0, + 508, + 473.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 473.0, + 508, + 528.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 330, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 332, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 332, + 562 + ], + "score": 1.0, + "content": "F WHICH PARAMETERS REALLY MATTER?", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "For each architecture and hyper-parameter we estimate its impact on the final FID. Figure 11 presents heatmaps", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 273, + 594 + ], + "score": 1.0, + "content": "for hyperparameters, namely the learning rate,", + "type": "text" + }, + { + "bbox": [ + 274, + 582, + 284, + 592 + ], + "score": 0.81, + "content": "\\beta _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 581, + 287, + 594 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 288, + 582, + 298, + 592 + ], + "score": 0.81, + "content": "\\beta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 581, + 301, + 594 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 301, + 582, + 322, + 592 + ], + "score": 0.81, + "content": "n _ { d i s c }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 581, + 340, + 594 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 347, + 591 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "for each combination of neural architecture", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 591, + 154, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 154, + 604 + ], + "score": 1.0, + "content": "and data set.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 618, + 265, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 267, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 267, + 632 + ], + "score": 1.0, + "content": "G VARIATIONS OF MS-SSIM", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 642, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "We used the MS-SSIM scorer from TensorFlow with default power factors (Wang et al., 2003). Note that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 389, + 662 + ], + "score": 1.0, + "content": "the default filter size for each scale layer is 11, the minimum image edge is", + "type": "text" + }, + { + "bbox": [ + 389, + 651, + 448, + 662 + ], + "score": 0.91, + "content": "1 1 \\times 2 ^ { 4 } = 1 7 6", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 652, + 505, + 662 + ], + "score": 1.0, + "content": ". To adapt it to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 662, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 239, + 672 + ], + "score": 1.0, + "content": "CELEBA-HQ-128 data set with size", + "type": "text" + }, + { + "bbox": [ + 239, + 662, + 279, + 672 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 662, + 504, + 672 + ], + "score": 1.0, + "content": ", we used the minimum of filter size 11 and image size in last", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 671, + 412, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 412, + 684 + ], + "score": 1.0, + "content": "scale layer to allow the computation followed the previous work (Fedus et al., 2018).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 309, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 105, + 101, + 507, + 331 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 239, + 80, + 371, + 92 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 239, + 79, + 372, + 95 + ], + "spans": [ + { + "bbox": [ + 239, + 79, + 372, + 95 + ], + "score": 1.0, + "content": "Table 7: SNDCGAN parameters", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 105, + 101, + 507, + 331 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 101, + 507, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 507, + 331 + ], + "score": 0.984, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1βndiscNORM
CIFAR1029.7528.660.1000.5000.999111
CIFAR1036.1233.230.2000.5000.9991==
CELEBA-HQ-12866.4263.130.1000.5000.99911
CELEBA-HQ-12867.3964.590.2000.5000.9991==
LSUN-BEDROOM180.36160.120.2000.5000.99911
LSUN-BEDROOM188.99162.000.1000.5000.99911
CIFAR1026.6625.270.2000.5000.9991SN
CIFAR1027.3226.970.1000.5000.9991SN
CELEBA-HQ-12831.1429.050.2000.5000.9991=SN
CELEBA-HQ-12833.5231.920.1000.5000.9991SN
LSUN-BEDROOM63.4658.130.2000.5000.9991SN
LSUN-BEDROOM74.6659.941.0000.5000.9991-SN
CIFAR1026.2326.010.2000.5000.99911SN+GP
CIFAR1026.6625.270.2000.5000.99911SN
CELEBA-HQ-12831.1330.800.1000.5000.999110GP
CELEBA-HQ-12831.1429.050.2000.5000.99911SN
LSUN-BEDROOM63.4658.130.2000.5000.9991=SN
LSUN-BEDROOM66.5865.750.2000.5000.999110GP
", + "type": "table", + "image_path": "517095517d9657f93ac21ca52943d038f6f799595f9e6be1d0b18ed16b891c58.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 105, + 101, + 507, + 177.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 177.66666666666669, + 507, + 254.33333333333337 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 105, + 254.33333333333337, + 507, + 331.00000000000006 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 363, + 508, + 528 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 244, + 342, + 366, + 354 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 243, + 340, + 368, + 356 + ], + "spans": [ + { + "bbox": [ + 243, + 340, + 368, + 356 + ], + "score": 1.0, + "content": "Table 8: ResNet19 parameters", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 363, + 508, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 363, + 508, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 508, + 528 + ], + "score": 0.982, + "html": "
DATA SETMEDIANBESTLR(×10-3)βndiscNORM
CELEBA-HQ-12843.7339.100.1000.5000.9995
CELEBA-HQ-12843.7739.600.1000.5000.9991=-
LSUN-BEDROOM160.97119.580.1000.5000.9005
LSUN-BEDROOM161.70125.550.1000.5000.9005=1
CELEBA-HQ-12832.4628.520.1000.5000.9991=LN
CELEBA-HQ-12840.5836.370.2000.5000.9001LN
LSUN-BEDROOM70.3048.881.0000.5000.9991SN
LSUN-BEDROOM73.8460.540.1000.5000.9005-SN
CELEBA-HQ-12829.13=0.1000.5000.90051LN+DR
CELEBA-HQ-12829.650.2000.5000.90051GP
LSUN-BEDROOM55.720.2000.5000.90051LN+GP
LSUN-BEDROOM57.810.1000.5000.999110SN+GP
", + "type": "table", + "image_path": "09f6b23750df3b53d8db071533a0bb9279cb8b391a26190ff51b903c06c8e150.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 363, + 508, + 418.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 418.0, + 508, + 473.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 473.0, + 508, + 528.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 330, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 332, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 332, + 562 + ], + "score": 1.0, + "content": "F WHICH PARAMETERS REALLY MATTER?", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 602 + ], + "lines": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "For each architecture and hyper-parameter we estimate its impact on the final FID. Figure 11 presents heatmaps", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 273, + 594 + ], + "score": 1.0, + "content": "for hyperparameters, namely the learning rate,", + "type": "text" + }, + { + "bbox": [ + 274, + 582, + 284, + 592 + ], + "score": 0.81, + "content": "\\beta _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 581, + 287, + 594 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 288, + 582, + 298, + 592 + ], + "score": 0.81, + "content": "\\beta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 581, + 301, + 594 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 301, + 582, + 322, + 592 + ], + "score": 0.81, + "content": "n _ { d i s c }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 581, + 340, + 594 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 341, + 582, + 347, + 591 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "for each combination of neural architecture", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 591, + 154, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 154, + 604 + ], + "score": 1.0, + "content": "and data set.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 570, + 505, + 604 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 618, + 265, + 631 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 267, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 267, + 632 + ], + "score": 1.0, + "content": "G VARIATIONS OF MS-SSIM", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 642, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "We used the MS-SSIM scorer from TensorFlow with default power factors (Wang et al., 2003). Note that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 389, + 662 + ], + "score": 1.0, + "content": "the default filter size for each scale layer is 11, the minimum image edge is", + "type": "text" + }, + { + "bbox": [ + 389, + 651, + 448, + 662 + ], + "score": 0.91, + "content": "1 1 \\times 2 ^ { 4 } = 1 7 6", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 652, + 505, + 662 + ], + "score": 1.0, + "content": ". To adapt it to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 662, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 239, + 672 + ], + "score": 1.0, + "content": "CELEBA-HQ-128 data set with size", + "type": "text" + }, + { + "bbox": [ + 239, + 662, + 279, + 672 + ], + "score": 0.9, + "content": "1 2 8 \\times 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 662, + 504, + 672 + ], + "score": 1.0, + "content": ", we used the minimum of filter size 11 and image size in last", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 671, + 412, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 412, + 684 + ], + "score": 1.0, + "content": "scale layer to allow the computation followed the previous work (Fedus et al., 2018).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 641, + 505, + 684 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 122, + 102, + 486, + 201 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 82, + 377, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 81, + 378, + 96 + ], + "spans": [ + { + "bbox": [ + 232, + 81, + 378, + 96 + ], + "score": 1.0, + "content": "Table 9: ResNet CIFAR parameters", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 122, + 102, + 486, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 102, + 486, + 201 + ], + "spans": [ + { + "bbox": [ + 122, + 102, + 486, + 201 + ], + "score": 0.98, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1ndiscNORM
CIFAR1031.4028.120.2000.5000.9995==
CIFAR1033.7930.080.1000.5000.9995=1
CIFAR1023.5722.910.2000.5000.9995=SN
CIFAR1025.5024.210.1000.5000.99951SN
CIFAR1022.9822.730.2000.5000.99911SN+GP
CIFAR1023.5722.910.2000.5000.9995-SN
", + "type": "table", + "image_path": "a620c819b77783ecdf835e2bca26b7daa21ab98c620a817c509721f93bec312c.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 122, + 102, + 486, + 135.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 135.0, + 486, + 168.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 168.0, + 486, + 201.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 112, + 211, + 499, + 356 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 211, + 499, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 211, + 499, + 356 + ], + "spans": [ + { + "bbox": [ + 112, + 211, + 499, + 356 + ], + "score": 0.968, + "type": "image", + "image_path": "8c414c042d882f1159a23063a0813130967a1b2a1edd717e9194cf65a2038b5d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 112, + 211, + 499, + 259.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 259.3333333333333, + 499, + 307.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 112, + 307.66666666666663, + 499, + 355.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 364, + 446, + 376 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 363, + 447, + 378 + ], + "spans": [ + { + "bbox": [ + 164, + 363, + 447, + 378 + ], + "score": 1.0, + "content": "Figure 8: Examples generated by GANs on CELEBA-HQ-128 data set.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 112, + 387, + 499, + 531 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 387, + 499, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 387, + 499, + 531 + ], + "spans": [ + { + "bbox": [ + 112, + 387, + 499, + 531 + ], + "score": 0.97, + "type": "image", + "image_path": "786ca8fc171e60cd0ce2ba0004d5703869c528cf8d62a05307aaaa0a46d3dac5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 112, + 387, + 499, + 435.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 112, + 435.0, + 499, + 483.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 112, + 483.0, + 499, + 531.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 164, + 540, + 446, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 164, + 539, + 447, + 553 + ], + "spans": [ + { + "bbox": [ + 164, + 539, + 447, + 553 + ], + "score": 1.0, + "content": "Figure 9: Examples generated by GANs on LSUN-BEDROOM data set.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "image", + "bbox": [ + 112, + 562, + 499, + 707 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 562, + 499, + 707 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 562, + 499, + 707 + ], + "spans": [ + { + "bbox": [ + 112, + 562, + 499, + 707 + ], + "score": 0.969, + "type": "image", + "image_path": "f1aa1099a3ce5eda2019dddd846b6c2bcea9f181181c9afb1322704faf348863.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 112, + 562, + 499, + 610.3333333333334 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 112, + 610.3333333333334, + 499, + 658.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 112, + 658.6666666666667, + 499, + 707.0000000000001 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 178, + 715, + 432, + 727 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 178, + 714, + 433, + 729 + ], + "spans": [ + { + "bbox": [ + 178, + 714, + 433, + 729 + ], + "score": 1.0, + "content": "Figure 10: Examples generated by GANs on CIFAR10 data set.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + } + ], + "index": 14.0 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 122, + 102, + 486, + 201 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 234, + 82, + 377, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 232, + 81, + 378, + 96 + ], + "spans": [ + { + "bbox": [ + 232, + 81, + 378, + 96 + ], + "score": 1.0, + "content": "Table 9: ResNet CIFAR parameters", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 122, + 102, + 486, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 102, + 486, + 201 + ], + "spans": [ + { + "bbox": [ + 122, + 102, + 486, + 201 + ], + "score": 0.98, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1ndiscNORM
CIFAR1031.4028.120.2000.5000.9995==
CIFAR1033.7930.080.1000.5000.9995=1
CIFAR1023.5722.910.2000.5000.9995=SN
CIFAR1025.5024.210.1000.5000.99951SN
CIFAR1022.9822.730.2000.5000.99911SN+GP
CIFAR1023.5722.910.2000.5000.9995-SN
", + "type": "table", + "image_path": "a620c819b77783ecdf835e2bca26b7daa21ab98c620a817c509721f93bec312c.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 122, + 102, + 486, + 135.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 135.0, + 486, + 168.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 122, + 168.0, + 486, + 201.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "image", + "bbox": [ + 112, + 211, + 499, + 356 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 211, + 499, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 211, + 499, + 356 + ], + "spans": [ + { + "bbox": [ + 112, + 211, + 499, + 356 + ], + "score": 0.968, + "type": "image", + "image_path": "8c414c042d882f1159a23063a0813130967a1b2a1edd717e9194cf65a2038b5d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 112, + 211, + 499, + 259.3333333333333 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 259.3333333333333, + 499, + 307.66666666666663 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 112, + 307.66666666666663, + 499, + 355.99999999999994 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 162, + 364, + 446, + 376 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 164, + 363, + 447, + 378 + ], + "spans": [ + { + "bbox": [ + 164, + 363, + 447, + 378 + ], + "score": 1.0, + "content": "Figure 8: Examples generated by GANs on CELEBA-HQ-128 data set.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 112, + 387, + 499, + 531 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 387, + 499, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 112, + 387, + 499, + 531 + ], + "spans": [ + { + "bbox": [ + 112, + 387, + 499, + 531 + ], + "score": 0.97, + "type": "image", + "image_path": "786ca8fc171e60cd0ce2ba0004d5703869c528cf8d62a05307aaaa0a46d3dac5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 112, + 387, + 499, + 435.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 112, + 435.0, + 499, + 483.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 112, + 483.0, + 499, + 531.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 164, + 540, + 446, + 552 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 164, + 539, + 447, + 553 + ], + "spans": [ + { + "bbox": [ + 164, + 539, + 447, + 553 + ], + "score": 1.0, + "content": "Figure 9: Examples generated by GANs on LSUN-BEDROOM data set.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + } + ], + "index": 10.0 + }, + { + "type": "image", + "bbox": [ + 112, + 562, + 499, + 707 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 562, + 499, + 707 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 112, + 562, + 499, + 707 + ], + "spans": [ + { + "bbox": [ + 112, + 562, + 499, + 707 + ], + "score": 0.969, + "type": "image", + "image_path": "f1aa1099a3ce5eda2019dddd846b6c2bcea9f181181c9afb1322704faf348863.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 112, + 562, + 499, + 610.3333333333334 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 112, + 610.3333333333334, + 499, + 658.6666666666667 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 112, + 658.6666666666667, + 499, + 707.0000000000001 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 178, + 715, + 432, + 727 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 178, + 714, + 433, + 729 + ], + "spans": [ + { + "bbox": [ + 178, + 714, + 433, + 729 + ], + "score": 1.0, + "content": "Figure 10: Examples generated by GANs on CIFAR10 data set.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + } + ], + "index": 14.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 124, + 506, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 124, + 506, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 124, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 201 + ], + "score": 0.728, + "type": "image", + "image_path": "d088858e2c8a8cdce82899931934b317604f9bbc30cf7186dc9ab1f5de9f6026.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 124, + 506, + 149.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 149.66666666666666, + 506, + 175.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 175.33333333333331, + 506, + 200.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 229, + 204, + 381, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 229, + 203, + 382, + 216 + ], + "spans": [ + { + "bbox": [ + 229, + 203, + 382, + 216 + ], + "score": 1.0, + "content": "(a) FID score of SNDCGAN on CIFAR10", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 106, + 216, + 506, + 290 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 216, + 506, + 290 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 290 + ], + "score": 0.604, + "type": "image", + "image_path": "7a4b30b761160941966aad9cf0ab6d3e235aa2b161986758303f170b1a6c47ad.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 216, + 506, + 240.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 240.66666666666666, + 506, + 265.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 265.3333333333333, + 506, + 290.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 105, + 305, + 506, + 379 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 213, + 294, + 396, + 304 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 213, + 293, + 397, + 306 + ], + "spans": [ + { + "bbox": [ + 213, + 293, + 397, + 306 + ], + "score": 1.0, + "content": "(b) FID score of SNDCGAN on CELEBA-HQ-128", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image_body", + "bbox": [ + 105, + 305, + 506, + 379 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 379 + ], + "score": 0.73, + "type": "image", + "image_path": "6fdffed4172209843481fb9fb7c89d573d4d072037af4106b0d06c88c8ffef4a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 105, + 305, + 506, + 329.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 105, + 329.6666666666667, + 506, + 354.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 105, + 354.33333333333337, + 506, + 379.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.0 + }, + { + "type": "image", + "bbox": [ + 105, + 395, + 505, + 470 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 214, + 384, + 396, + 393 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 214, + 383, + 397, + 396 + ], + "spans": [ + { + "bbox": [ + 214, + 383, + 397, + 396 + ], + "score": 1.0, + "content": "(c) FID score of SNDCGAN on LSUN-BEDROOM", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "image_body", + "bbox": [ + 105, + 395, + 505, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 470 + ], + "score": 0.719, + "type": "image", + "image_path": "caca60a47d429ab4c4922f440ad3bcacb75f73720679a37c1f0fc45fed5e22fe.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 105, + 395, + 505, + 420.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 105, + 420.0, + 505, + 445.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 445.0, + 505, + 470.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 12.0 + }, + { + "type": "image", + "bbox": [ + 105, + 485, + 506, + 559 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 223, + 474, + 387, + 484 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 223, + 473, + 387, + 486 + ], + "spans": [ + { + "bbox": [ + 223, + 473, + 387, + 486 + ], + "score": 1.0, + "content": "(d) FID score of ResNet CIFAR on CIFAR10", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "image_body", + "bbox": [ + 105, + 485, + 506, + 559 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 559 + ], + "score": 0.747, + "type": "image", + "image_path": "ab454109195ada56fe60611674239d53e1ad36fe16717cd09a8e2e4b60b42140.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 105, + 485, + 506, + 509.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 105, + 509.6666666666667, + 506, + 534.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 105, + 534.3333333333334, + 506, + 559.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 16.0 + }, + { + "type": "image", + "bbox": [ + 105, + 574, + 506, + 664 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 218, + 563, + 392, + 573 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 218, + 562, + 393, + 574 + ], + "spans": [ + { + "bbox": [ + 218, + 562, + 393, + 574 + ], + "score": 1.0, + "content": "(e) FID score of ResNet19 on CELEBA-HQ-128", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "image_body", + "bbox": [ + 105, + 574, + 506, + 664 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 105, + 574, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 664 + ], + "score": 0.887, + "type": "image", + "image_path": "ccd750f16de1b8efe3bdfea4b323d33e40ae824119fbb2a87ae4ec00eee859d8.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 105, + 574, + 506, + 604.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 105, + 604.0, + 506, + 634.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 105, + 634.0, + 506, + 664.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 125, + 672, + 484, + 685 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 125, + 672, + 485, + 686 + ], + "spans": [ + { + "bbox": [ + 125, + 672, + 485, + 686 + ], + "score": 1.0, + "content": "Figure 11: Heat plots for hyper-parameters on each architecture and dataset combination.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + } + ], + "index": 21 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 105, + 124, + 506, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 105, + 124, + 506, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 124, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 506, + 201 + ], + "score": 0.728, + "type": "image", + "image_path": "d088858e2c8a8cdce82899931934b317604f9bbc30cf7186dc9ab1f5de9f6026.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 105, + 124, + 506, + 149.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 105, + 149.66666666666666, + 506, + 175.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 105, + 175.33333333333331, + 506, + 200.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 229, + 204, + 381, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 229, + 203, + 382, + 216 + ], + "spans": [ + { + "bbox": [ + 229, + 203, + 382, + 216 + ], + "score": 1.0, + "content": "(a) FID score of SNDCGAN on CIFAR10", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 106, + 216, + 506, + 290 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 216, + 506, + 290 + ], + "group_id": 5, + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 506, + 290 + ], + "score": 0.604, + "type": "image", + "image_path": "7a4b30b761160941966aad9cf0ab6d3e235aa2b161986758303f170b1a6c47ad.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 216, + 506, + 240.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 240.66666666666666, + 506, + 265.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 265.3333333333333, + 506, + 290.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 105, + 305, + 506, + 379 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 213, + 294, + 396, + 304 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 213, + 293, + 397, + 306 + ], + "spans": [ + { + "bbox": [ + 213, + 293, + 397, + 306 + ], + "score": 1.0, + "content": "(b) FID score of SNDCGAN on CELEBA-HQ-128", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "image_body", + "bbox": [ + 105, + 305, + 506, + 379 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 305, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 379 + ], + "score": 0.73, + "type": "image", + "image_path": "6fdffed4172209843481fb9fb7c89d573d4d072037af4106b0d06c88c8ffef4a.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 105, + 305, + 506, + 329.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 105, + 329.6666666666667, + 506, + 354.33333333333337 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 105, + 354.33333333333337, + 506, + 379.00000000000006 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 8.0 + }, + { + "type": "image", + "bbox": [ + 105, + 395, + 505, + 470 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 214, + 384, + 396, + 393 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 214, + 383, + 397, + 396 + ], + "spans": [ + { + "bbox": [ + 214, + 383, + 397, + 396 + ], + "score": 1.0, + "content": "(c) FID score of SNDCGAN on LSUN-BEDROOM", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "image_body", + "bbox": [ + 105, + 395, + 505, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 470 + ], + "score": 0.719, + "type": "image", + "image_path": "caca60a47d429ab4c4922f440ad3bcacb75f73720679a37c1f0fc45fed5e22fe.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 105, + 395, + 505, + 420.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 105, + 420.0, + 505, + 445.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 105, + 445.0, + 505, + 470.0 + ], + "spans": [], + "index": 14 + } + ] + } + ], + "index": 12.0 + }, + { + "type": "image", + "bbox": [ + 105, + 485, + 506, + 559 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 223, + 474, + 387, + 484 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 223, + 473, + 387, + 486 + ], + "spans": [ + { + "bbox": [ + 223, + 473, + 387, + 486 + ], + "score": 1.0, + "content": "(d) FID score of ResNet CIFAR on CIFAR10", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "image_body", + "bbox": [ + 105, + 485, + 506, + 559 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 559 + ], + "score": 0.747, + "type": "image", + "image_path": "ab454109195ada56fe60611674239d53e1ad36fe16717cd09a8e2e4b60b42140.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 105, + 485, + 506, + 509.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 105, + 509.6666666666667, + 506, + 534.3333333333334 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 105, + 534.3333333333334, + 506, + 559.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 16.0 + }, + { + "type": "image", + "bbox": [ + 105, + 574, + 506, + 664 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 218, + 563, + 392, + 573 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 218, + 562, + 393, + 574 + ], + "spans": [ + { + "bbox": [ + 218, + 562, + 393, + 574 + ], + "score": 1.0, + "content": "(e) FID score of ResNet19 on CELEBA-HQ-128", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "image_body", + "bbox": [ + 105, + 574, + 506, + 664 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 105, + 574, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 664 + ], + "score": 0.887, + "type": "image", + "image_path": "ccd750f16de1b8efe3bdfea4b323d33e40ae824119fbb2a87ae4ec00eee859d8.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 105, + 574, + 506, + 604.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 105, + 604.0, + 506, + 634.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 105, + 634.0, + 506, + 664.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 125, + 672, + 484, + 685 + ], + "group_id": 4, + "lines": [ + { + "bbox": [ + 125, + 672, + 485, + 686 + ], + "spans": [ + { + "bbox": [ + 125, + 672, + 485, + 686 + ], + "score": 1.0, + "content": "Figure 11: Heat plots for hyper-parameters on each architecture and dataset combination.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + } + ], + "index": 21 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_model.json b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_model.json new file mode 100644 index 0000000000000000000000000000000000000000..5f8cb1e3a27039f21d738b8dd4e7b891fc7893dd --- /dev/null +++ b/parse/train/rkGG6s0qKQ/rkGG6s0qKQ_model.json @@ -0,0 +1,27363 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1147, + 1404, + 1147, + 1404, + 1513, + 298, + 1513 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 398, + 646, + 1302, + 646, + 1302, + 1011, + 398, + 1011 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1728, + 1403, + 1728, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1529, + 1404, + 1529, + 1404, + 1712, + 299, + 1712 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 298, + 219, + 1248, + 219, + 1248, + 380, + 298, + 380 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 313, + 433, + 680, + 433, + 680, + 493, + 313, + 493 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 302, + 1076, + 573, + 1076, + 573, + 1111, + 302, + 1111 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 773, + 575, + 926, + 575, + 926, + 608, + 773, + 608 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.722 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 218.0, + 793.0, + 218.0, + 793.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 275.0, + 1251.0, + 275.0, + 1251.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 331.0, + 759.0, + 331.0, + 759.0, + 384.0, + 294.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1073.0, + 579.0, + 1073.0, + 579.0, + 1120.0, + 294.0, + 1120.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": [ + 769.0, + 574.0, + 932.0, + 574.0, + 932.0, + 611.0, + 769.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 1405.0, + 1148.0, + 1405.0, + 1182.0, + 294.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 1406.0, + 1177.0, + 1406.0, + 1215.0, + 294.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1209.0, + 1406.0, + 1209.0, + 1406.0, + 1241.0, + 293.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1241.0, + 1404.0, + 1241.0, + 1404.0, + 1272.0, + 297.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 1404.0, + 1269.0, + 1404.0, + 1303.0, + 294.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1298.0, + 1404.0, + 1298.0, + 1404.0, + 1334.0, + 293.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1365.0, + 294.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1394.0, + 294.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1393.0, + 1404.0, + 1393.0, + 1404.0, + 1423.0, + 296.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1423.0, + 1404.0, + 1423.0, + 1404.0, + 1454.0, + 296.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 1404.0, + 1451.0, + 1404.0, + 1487.0, + 295.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1483.0, + 1286.0, + 1483.0, + 1286.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 646.0, + 1304.0, + 646.0, + 1304.0, + 680.0, + 395.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 672.0, + 1305.0, + 672.0, + 1305.0, + 714.0, + 392.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 706.0, + 1304.0, + 706.0, + 1304.0, + 744.0, + 393.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 739.0, + 1305.0, + 739.0, + 1305.0, + 771.0, + 394.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 769.0, + 1307.0, + 769.0, + 1307.0, + 801.0, + 393.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 799.0, + 1306.0, + 799.0, + 1306.0, + 832.0, + 394.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 828.0, + 1306.0, + 828.0, + 1306.0, + 863.0, + 394.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 862.0, + 1305.0, + 862.0, + 1305.0, + 891.0, + 396.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 892.0, + 1306.0, + 892.0, + 1306.0, + 924.0, + 394.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 921.0, + 1304.0, + 921.0, + 1304.0, + 953.0, + 394.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 952.0, + 1305.0, + 952.0, + 1305.0, + 984.0, + 393.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 983.0, + 844.0, + 983.0, + 844.0, + 1013.0, + 393.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1725.0, + 1405.0, + 1725.0, + 1405.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1758.0, + 1406.0, + 1758.0, + 1406.0, + 1795.0, + 292.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1407.0, + 1820.0, + 1407.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1407.0, + 1851.0, + 1407.0, + 1886.0, + 294.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1406.0, + 2000.0, + 1406.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1560.0, + 1406.0, + 1560.0, + 1406.0, + 1595.0, + 294.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1409.0, + 1588.0, + 1409.0, + 1626.0, + 293.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1651.0, + 1408.0, + 1651.0, + 1408.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 746.0, + 1680.0, + 746.0, + 1714.0, + 294.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 434.0, + 560.0, + 434.0, + 560.0, + 466.0, + 315.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 462.0, + 681.0, + 462.0, + 681.0, + 497.0, + 312.0, + 497.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1140, + 1405, + 1140, + 1405, + 1569, + 297, + 1569 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 709, + 1405, + 709, + 1405, + 897, + 298, + 897 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 509, + 1404, + 509, + 1404, + 697, + 298, + 697 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1722, + 1406, + 1722, + 1406, + 1937, + 298, + 1937 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 911, + 1404, + 911, + 1404, + 1037, + 298, + 1037 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1584, + 1404, + 1584, + 1404, + 1707, + 298, + 1707 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 323, + 299, + 323 + ], + "score": 0.959 + }, + { + "category_id": 2, + "poly": [ + 338, + 1973, + 723, + 1973, + 723, + 2034, + 338, + 2034 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 300, + 449, + 577, + 449, + 577, + 481, + 300, + 481 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 301, + 374, + 682, + 374, + 682, + 410, + 301, + 410 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 1080, + 1144, + 1080, + 1144, + 1113, + 300, + 1113 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.718 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.718 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.192 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.163 + }, + { + "category_id": 13, + "poly": [ + 693, + 862, + 933, + 862, + 933, + 897, + 693, + 897 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]" + }, + { + "category_id": 13, + "poly": [ + 1076, + 662, + 1373, + 662, + 1373, + 698, + 1076, + 698 + ], + "score": 0.93, + "latex": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ \\bar { \\log ( D ( \\hat { x } ) ) } ]" + }, + { + "category_id": 13, + "poly": [ + 447, + 1002, + 957, + 1002, + 957, + 1037, + 447, + 1037 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { \\mathrm { D } } = - \\mathbb { E } _ { x \\sim P } \\overline { { [ ( D ( x ) - 1 ) ^ { 2 } ] } } + \\tilde { \\mathbb { E } } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1003, + 1326, + 1003, + 1326, + 1038, + 1007, + 1038 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { \\mathrm { G } } = - \\mathbb { E } _ { \\hat { x } \\sim Q } [ ( D ( \\hat { x } ) { \\bar { - } } 1 ) ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 862, + 642, + 862, + 642, + 897, + 297, + 897 + ], + "score": 0.91, + "latex": "- \\mathbb { E } _ { x \\sim P } [ D ( x ) ] + \\mathbb { E } _ { \\hat { x } \\sim Q } [ D ( \\hat { x } ) ]" + }, + { + "category_id": 13, + "poly": [ + 447, + 663, + 1025, + 663, + 1025, + 698, + 447, + 698 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { \\mathrm { { D } } } = - \\mathbb { E } _ { \\boldsymbol { x } \\sim P } [ \\log ( D ( \\boldsymbol { x } ) ) ] - \\mathbb { E } _ { \\hat { \\boldsymbol { x } } \\sim Q } [ \\log ( 1 - D ( \\boldsymbol { \\hat { x } } ) ) ]" + }, + { + "category_id": 13, + "poly": [ + 1329, + 832, + 1403, + 832, + 1403, + 864, + 1329, + 864 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { \\mathrm { D } } ~ =" + }, + { + "category_id": 13, + "poly": [ + 1368, + 910, + 1401, + 910, + 1401, + 945, + 1368, + 945 + ], + "score": 0.87, + "latex": "\\chi ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1907, + 1188, + 1907, + 1188, + 1937, + 1167, + 1937 + ], + "score": 0.86, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 582, + 803, + 608, + 803, + 608, + 833, + 582, + 833 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 823, + 512, + 849, + 512, + 849, + 542, + 823, + 542 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 593, + 943, + 619, + 943, + 619, + 974, + 593, + 974 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 1538, + 331, + 1538, + 331, + 1569, + 298, + 1569 + ], + "score": 0.85, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 748, + 1846, + 769, + 1846, + 769, + 1876, + 748, + 1876 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 818, + 1416, + 844, + 1416, + 844, + 1447, + 818, + 1447 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 297, + 1846, + 319, + 1846, + 319, + 1876, + 297, + 1876 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 820, + 1848, + 842, + 1848, + 842, + 1876, + 820, + 1876 + ], + "score": 0.83, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 502, + 803, + 528, + 803, + 528, + 829, + 502, + 829 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 519, + 944, + 544, + 944, + 544, + 970, + 519, + 970 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 584, + 1850, + 604, + 1850, + 604, + 1876, + 584, + 1876 + ], + "score": 0.8, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 342, + 512, + 368, + 512, + 368, + 538, + 342, + 538 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1909, + 1255, + 1909, + 1255, + 1938, + 1235, + 1938 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1969.0, + 726.0, + 1969.0, + 726.0, + 2010.0, + 337.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1999.0, + 727.0, + 1999.0, + 727.0, + 2041.0, + 335.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 445.0, + 581.0, + 445.0, + 581.0, + 487.0, + 293.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 373.0, + 687.0, + 373.0, + 687.0, + 416.0, + 292.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 1151.0, + 1079.0, + 1151.0, + 1117.0, + 293.0, + 1117.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1142.0, + 1403.0, + 1142.0, + 1403.0, + 1174.0, + 296.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1169.0, + 1410.0, + 1169.0, + 1410.0, + 1210.0, + 290.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1201.0, + 1407.0, + 1201.0, + 1407.0, + 1239.0, + 292.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1405.0, + 1232.0, + 1405.0, + 1268.0, + 294.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1260.0, + 1407.0, + 1260.0, + 1407.0, + 1299.0, + 291.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1329.0, + 292.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1325.0, + 1403.0, + 1325.0, + 1403.0, + 1357.0, + 296.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1352.0, + 1407.0, + 1352.0, + 1407.0, + 1389.0, + 292.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1382.0, + 1405.0, + 1382.0, + 1405.0, + 1419.0, + 294.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1414.0, + 817.0, + 1414.0, + 817.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1449.0, + 845.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 1407.0, + 1445.0, + 1407.0, + 1480.0, + 295.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 1405.0, + 1477.0, + 1405.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1543.0, + 294.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1538.0, + 801.0, + 1538.0, + 801.0, + 1572.0, + 332.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 709.0, + 1406.0, + 709.0, + 1406.0, + 745.0, + 293.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 739.0, + 1408.0, + 739.0, + 1408.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 807.0, + 293.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 799.0, + 501.0, + 799.0, + 501.0, + 836.0, + 293.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 799.0, + 581.0, + 799.0, + 581.0, + 836.0, + 529.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 799.0, + 1406.0, + 799.0, + 1406.0, + 836.0, + 609.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 1328.0, + 827.0, + 1328.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 858.0, + 692.0, + 858.0, + 692.0, + 901.0, + 643.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 858.0, + 945.0, + 858.0, + 945.0, + 901.0, + 934.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 510.0, + 341.0, + 510.0, + 341.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 510.0, + 822.0, + 510.0, + 822.0, + 543.0, + 369.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 510.0, + 1405.0, + 510.0, + 1405.0, + 543.0, + 850.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 541.0, + 1406.0, + 541.0, + 1406.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 572.0, + 1406.0, + 572.0, + 1406.0, + 604.0, + 296.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 602.0, + 1406.0, + 602.0, + 1406.0, + 638.0, + 294.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 667.0, + 293.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 660.0, + 446.0, + 660.0, + 446.0, + 701.0, + 292.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 660.0, + 1075.0, + 660.0, + 1075.0, + 701.0, + 1026.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 660.0, + 1385.0, + 660.0, + 1385.0, + 701.0, + 1374.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1721.0, + 1406.0, + 1721.0, + 1406.0, + 1756.0, + 295.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1752.0, + 1404.0, + 1752.0, + 1404.0, + 1788.0, + 292.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1783.0, + 1406.0, + 1783.0, + 1406.0, + 1817.0, + 296.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1812.0, + 1407.0, + 1812.0, + 1407.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1843.0, + 296.0, + 1843.0, + 296.0, + 1879.0, + 293.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1843.0, + 583.0, + 1843.0, + 583.0, + 1879.0, + 320.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1843.0, + 747.0, + 1843.0, + 747.0, + 1879.0, + 605.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1843.0, + 819.0, + 1843.0, + 819.0, + 1879.0, + 770.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1843.0, + 1407.0, + 1843.0, + 1407.0, + 1879.0, + 843.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1873.0, + 1406.0, + 1873.0, + 1406.0, + 1910.0, + 295.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1907.0, + 1166.0, + 1907.0, + 1166.0, + 1938.0, + 296.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1907.0, + 1234.0, + 1907.0, + 1234.0, + 1938.0, + 1189.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1907.0, + 1403.0, + 1907.0, + 1403.0, + 1938.0, + 1256.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 909.0, + 1367.0, + 909.0, + 1367.0, + 946.0, + 294.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 942.0, + 518.0, + 942.0, + 518.0, + 975.0, + 296.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 942.0, + 592.0, + 942.0, + 592.0, + 975.0, + 545.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 975.0, + 620.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 974.0, + 1404.0, + 974.0, + 1404.0, + 1007.0, + 296.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 446.0, + 1002.0, + 446.0, + 1039.0, + 294.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1002.0, + 1006.0, + 1002.0, + 1006.0, + 1039.0, + 958.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1002.0, + 1341.0, + 1002.0, + 1341.0, + 1039.0, + 1327.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1618.0, + 296.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 1404.0, + 1615.0, + 1404.0, + 1648.0, + 293.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1648.0, + 1404.0, + 1648.0, + 1404.0, + 1679.0, + 293.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1675.0, + 1196.0, + 1675.0, + 1196.0, + 1709.0, + 293.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1407.0, + 259.0, + 1407.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 288.0, + 1346.0, + 288.0, + 1346.0, + 324.0, + 293.0, + 324.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 619, + 1405, + 619, + 1405, + 955, + 298, + 955 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1527, + 1406, + 1527, + 1406, + 1835, + 297, + 1835 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 308, + 1404, + 308, + 1404, + 522, + 298, + 522 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1129, + 1403, + 1129, + 1403, + 1314, + 298, + 1314 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1403, + 1849, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1328, + 1403, + 1328, + 1403, + 1452, + 299, + 1452 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1051, + 1400, + 1051, + 1400, + 1114, + 297, + 1114 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1401, + 229, + 1401, + 293, + 297, + 293 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 559, + 1471, + 1137, + 1471, + 1137, + 1515, + 559, + 1515 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 994, + 640, + 994, + 640, + 1026, + 300, + 1026 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 298, + 561, + 963, + 561, + 963, + 592, + 298, + 592 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.595 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.457 + }, + { + "category_id": 13, + "poly": [ + 536, + 1529, + 634, + 1529, + 634, + 1564, + 536, + 1564 + ], + "score": 0.93, + "latex": "( \\mu _ { y } , \\Sigma _ { y } )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1529, + 473, + 1529, + 473, + 1563, + 374, + 1563 + ], + "score": 0.93, + "latex": "\\left( \\mu _ { x } , \\Sigma _ { x } \\right)" + }, + { + "category_id": 13, + "poly": [ + 531, + 1221, + 979, + 1221, + 979, + 1255, + 531, + 1255 + ], + "score": 0.92, + "latex": "\\scriptstyle \\mathtt { I S } = \\exp ( \\mathbb { E } _ { x \\sim Q } [ d _ { K L } ^ { \\sim } ( p ( y \\mid x ) , p ( y ) ) ] )" + }, + { + "category_id": 14, + "poly": [ + 558, + 1469, + 1137, + 1469, + 1137, + 1515, + 558, + 1515 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathtt { F I D } = | | \\mu _ { x } - \\mu _ { y } | | _ { 2 } ^ { 2 } + \\operatorname { T r } \\big ( \\Sigma _ { x } + \\Sigma _ { y } - 2 \\big ( \\Sigma _ { x } \\Sigma _ { y } \\big ) ^ { \\frac { 1 } { 2 } } \\big ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1016, + 803, + 1138, + 803, + 1138, + 832, + 1016, + 832 + ], + "score": 0.9, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 373, + 1361, + 399, + 1361, + 399, + 1392, + 373, + 1392 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 1562, + 322, + 1562, + 322, + 1592, + 298, + 1592 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1328, + 1531, + 1353, + 1531, + 1353, + 1557, + 1328, + 1557 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 298, + 1361, + 322, + 1361, + 322, + 1389, + 298, + 1389 + ], + "score": 0.8, + "latex": "P" + }, + { + "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, + 994.0, + 641.0, + 994.0, + 641.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 560.0, + 969.0, + 560.0, + 969.0, + 596.0, + 295.0, + 596.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, + 619.0, + 1405.0, + 619.0, + 1405.0, + 653.0, + 296.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 650.0, + 1407.0, + 650.0, + 1407.0, + 683.0, + 293.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 679.0, + 1408.0, + 679.0, + 1408.0, + 714.0, + 295.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 1407.0, + 709.0, + 1407.0, + 744.0, + 295.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 742.0, + 1405.0, + 742.0, + 1405.0, + 773.0, + 296.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 768.0, + 1407.0, + 768.0, + 1407.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 802.0, + 1015.0, + 802.0, + 1015.0, + 837.0, + 295.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 837.0, + 1139.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 891.0, + 1406.0, + 891.0, + 1406.0, + 927.0, + 293.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 922.0, + 1055.0, + 922.0, + 1055.0, + 958.0, + 296.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1525.0, + 373.0, + 1525.0, + 373.0, + 1569.0, + 292.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1525.0, + 535.0, + 1525.0, + 535.0, + 1569.0, + 474.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1525.0, + 1327.0, + 1525.0, + 1327.0, + 1569.0, + 635.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1525.0, + 1407.0, + 1525.0, + 1407.0, + 1569.0, + 1354.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1559.0, + 1408.0, + 1559.0, + 1408.0, + 1598.0, + 323.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1589.0, + 1408.0, + 1589.0, + 1408.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1654.0, + 295.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1407.0, + 1652.0, + 1407.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1715.0, + 292.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1710.0, + 1409.0, + 1710.0, + 1409.0, + 1747.0, + 292.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1800.0, + 1404.0, + 1800.0, + 1404.0, + 1842.0, + 294.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 308.0, + 1406.0, + 308.0, + 1406.0, + 343.0, + 294.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 339.0, + 1409.0, + 339.0, + 1409.0, + 373.0, + 293.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 368.0, + 1404.0, + 368.0, + 1404.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 395.0, + 1405.0, + 395.0, + 1405.0, + 437.0, + 292.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 467.0, + 293.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1405.0, + 462.0, + 1405.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 634.0, + 491.0, + 634.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1157.0, + 1407.0, + 1157.0, + 1407.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1404.0, + 1191.0, + 1404.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 530.0, + 1220.0, + 530.0, + 1260.0, + 293.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1220.0, + 1408.0, + 1220.0, + 1408.0, + 1260.0, + 980.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1405.0, + 1252.0, + 1405.0, + 1286.0, + 294.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1281.0, + 920.0, + 1281.0, + 920.0, + 1317.0, + 295.0, + 1317.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, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1364.0, + 292.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1354.0, + 297.0, + 1354.0, + 297.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1354.0, + 372.0, + 1354.0, + 372.0, + 1399.0, + 323.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1354.0, + 1407.0, + 1354.0, + 1407.0, + 1399.0, + 400.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1257.0, + 1422.0, + 1257.0, + 1454.0, + 295.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1049.0, + 1404.0, + 1049.0, + 1404.0, + 1088.0, + 295.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1084.0, + 1060.0, + 1084.0, + 1060.0, + 1116.0, + 295.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1406.0, + 226.0, + 1406.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 780.0, + 261.0, + 780.0, + 293.0, + 295.0, + 293.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1273, + 1405, + 1273, + 1405, + 1519, + 298, + 1519 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1534, + 1403, + 1534, + 1403, + 1718, + 298, + 1718 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 901, + 1405, + 901, + 1405, + 1176, + 298, + 1176 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1733, + 1404, + 1733, + 1404, + 1947, + 298, + 1947 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 649, + 1404, + 649, + 1404, + 802, + 298, + 802 + ], + "score": 0.971 + }, + { + "category_id": 5, + "poly": [ + 296, + 386, + 855, + 386, + 855, + 586, + 296, + 586 + ], + "score": 0.97, + "html": "
PARAMETERDISCRETE VALUE
Learning rate α{0.0002,0.0001,0.001}
Reg. strength 入{1,10}
(β1,β2,ndis){(0.5,0.900,5), (0.5,0.999,1), (0.5,0.999,5), (0.9,0.999,5)}
" + }, + { + "category_id": 2, + "poly": [ + 331, + 1974, + 1353, + 1974, + 1353, + 2034, + 331, + 2034 + ], + "score": 0.949 + }, + { + "category_id": 5, + "poly": [ + 927, + 386, + 1371, + 386, + 1371, + 591, + 927, + 591 + ], + "score": 0.926, + "html": "
PARAMETERRANGELOG
Learning rate α[10-5,10-2]Yes
入 for L2[10-4,101]Yes
入 for non-L2[10-1,102]Yes
β1×β[0,1] × [0,1]No
" + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 299, + 842, + 499, + 842, + 499, + 873, + 299, + 873 + ], + "score": 0.887 + }, + { + "category_id": 6, + "poly": [ + 955, + 344, + 1348, + 344, + 1348, + 374, + 955, + 374 + ], + "score": 0.859 + }, + { + "category_id": 6, + "poly": [ + 296, + 224, + 1406, + 224, + 1406, + 318, + 296, + 318 + ], + "score": 0.848 + }, + { + "category_id": 0, + "poly": [ + 302, + 1216, + 787, + 1216, + 787, + 1246, + 302, + 1246 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 6, + "poly": [ + 464, + 344, + 629, + 344, + 629, + 373, + 464, + 373 + ], + "score": 0.516 + }, + { + "category_id": 1, + "poly": [ + 296, + 224, + 1406, + 224, + 1406, + 318, + 296, + 318 + ], + "score": 0.132 + }, + { + "category_id": 13, + "poly": [ + 668, + 1975, + 824, + 1975, + 824, + 2002, + 668, + 2002 + ], + "score": 0.94, + "latex": "1 2 8 \\times 1 2 8 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 542, + 741, + 746, + 741, + 746, + 774, + 542, + 774 + ], + "score": 0.92, + "latex": "5 \\times b \\times ( b - 1 ) / 2" + }, + { + "category_id": 13, + "poly": [ + 296, + 1023, + 458, + 1023, + 458, + 1052, + 296, + 1052 + ], + "score": 0.92, + "latex": "1 2 8 \\times 1 2 8 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 704, + 1084, + 815, + 1084, + 815, + 1114, + 704, + 1114 + ], + "score": 0.69, + "latex": "\\left( 3 2 \\mathbf { x } 3 2 \\mathbf { x } 3 \\right)" + }, + { + "category_id": 13, + "poly": [ + 891, + 712, + 906, + 712, + 906, + 739, + 891, + 739 + ], + "score": 0.61, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 834, + 773, + 864, + 773, + 864, + 800, + 834, + 800 + ], + "score": 0.35, + "latex": "I S" + }, + { + "category_id": 13, + "poly": [ + 314, + 520, + 456, + 520, + 456, + 550, + 314, + 550 + ], + "score": 0.34, + "latex": "( \\beta _ { 1 } , \\beta _ { 2 } , n _ { d i s } )" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1965.0, + 667.0, + 1965.0, + 667.0, + 2010.0, + 334.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1965.0, + 1332.0, + 1965.0, + 1332.0, + 2010.0, + 825.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1999.0, + 1357.0, + 1999.0, + 1357.0, + 2039.0, + 334.0, + 2039.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": [ + 294.0, + 839.0, + 504.0, + 839.0, + 504.0, + 878.0, + 294.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 339.0, + 1352.0, + 339.0, + 1352.0, + 379.0, + 952.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 1406.0, + 222.0, + 1406.0, + 260.0, + 293.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 255.0, + 1406.0, + 255.0, + 1406.0, + 289.0, + 294.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 282.0, + 1179.0, + 282.0, + 1179.0, + 323.0, + 293.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 791.0, + 1212.0, + 791.0, + 1252.0, + 294.0, + 1252.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": [ + 461.0, + 342.0, + 633.0, + 342.0, + 633.0, + 374.0, + 461.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1410.0, + 1271.0, + 1410.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1305.0, + 1407.0, + 1305.0, + 1407.0, + 1340.0, + 292.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1368.0, + 295.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1367.0, + 1405.0, + 1367.0, + 1405.0, + 1398.0, + 293.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1408.0, + 1396.0, + 1408.0, + 1431.0, + 292.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1461.0, + 295.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1457.0, + 1405.0, + 1457.0, + 1405.0, + 1491.0, + 295.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1489.0, + 1328.0, + 1489.0, + 1328.0, + 1522.0, + 295.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1532.0, + 1407.0, + 1532.0, + 1407.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1598.0, + 293.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1594.0, + 1407.0, + 1594.0, + 1407.0, + 1631.0, + 293.0, + 1631.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, + 1654.0, + 1404.0, + 1654.0, + 1404.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1280.0, + 1687.0, + 1280.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 900.0, + 1338.0, + 900.0, + 1338.0, + 933.0, + 297.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 904.0, + 1405.0, + 904.0, + 1405.0, + 932.0, + 1352.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 928.0, + 1348.0, + 928.0, + 1348.0, + 968.0, + 288.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 932.0, + 1406.0, + 932.0, + 1406.0, + 964.0, + 1357.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 962.0, + 1405.0, + 962.0, + 1405.0, + 994.0, + 296.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 993.0, + 1403.0, + 993.0, + 1403.0, + 1025.0, + 295.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1020.0, + 1405.0, + 1020.0, + 1405.0, + 1057.0, + 459.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1088.0, + 292.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1084.0, + 703.0, + 1084.0, + 703.0, + 1117.0, + 296.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1084.0, + 1403.0, + 1084.0, + 1403.0, + 1117.0, + 816.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1111.0, + 1410.0, + 1111.0, + 1410.0, + 1150.0, + 292.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1171.0, + 1143.0, + 1171.0, + 1178.0, + 295.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1731.0, + 1404.0, + 1731.0, + 1404.0, + 1768.0, + 295.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1763.0, + 1404.0, + 1763.0, + 1404.0, + 1797.0, + 293.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1823.0, + 1405.0, + 1823.0, + 1405.0, + 1858.0, + 293.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1405.0, + 1855.0, + 1405.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1916.0, + 1409.0, + 1916.0, + 1409.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 649.0, + 1404.0, + 649.0, + 1404.0, + 683.0, + 293.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 679.0, + 1406.0, + 679.0, + 1406.0, + 716.0, + 294.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 707.0, + 890.0, + 707.0, + 890.0, + 745.0, + 293.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 707.0, + 1406.0, + 707.0, + 1406.0, + 745.0, + 907.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 740.0, + 541.0, + 740.0, + 541.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 740.0, + 1405.0, + 740.0, + 1405.0, + 777.0, + 747.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 772.0, + 833.0, + 772.0, + 833.0, + 805.0, + 296.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 772.0, + 960.0, + 772.0, + 960.0, + 805.0, + 865.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 1406.0, + 222.0, + 1406.0, + 260.0, + 293.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 255.0, + 1406.0, + 255.0, + 1406.0, + 289.0, + 294.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 282.0, + 1179.0, + 282.0, + 1179.0, + 323.0, + 293.0, + 323.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1291, + 1404, + 1291, + 1404, + 1537, + 298, + 1537 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1650, + 1403, + 1650, + 1403, + 1836, + 297, + 1836 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1404, + 1850, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1002, + 1403, + 1002, + 1403, + 1156, + 298, + 1156 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 301, + 222, + 1399, + 222, + 1399, + 748, + 301, + 748 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 295, + 776, + 1405, + 776, + 1405, + 929, + 295, + 929 + ], + "score": 0.959 + }, + { + "category_id": 0, + "poly": [ + 303, + 1213, + 735, + 1213, + 735, + 1249, + 303, + 1249 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 301, + 1588, + 752, + 1588, + 752, + 1619, + 301, + 1619 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.7 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.672 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.529 + }, + { + "category_id": 13, + "poly": [ + 787, + 1384, + 829, + 1384, + 829, + 1414, + 787, + 1414 + ], + "score": 0.87, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 988, + 777, + 1029, + 777, + 1029, + 808, + 988, + 808 + ], + "score": 0.86, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 989, + 496, + 1005, + 496, + 1005, + 509, + 989, + 509 + ], + "score": 0.61, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 590, + 496, + 605, + 496, + 605, + 510, + 590, + 510 + ], + "score": 0.39, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 240.0, + 341.0, + 240.0, + 341.0, + 260.0, + 318.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 233.0, + 574.0, + 233.0, + 574.0, + 253.0, + 431.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 239.0, + 703.0, + 239.0, + 703.0, + 261.0, + 670.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 233.0, + 935.0, + 233.0, + 935.0, + 253.0, + 788.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 234.0, + 1087.0, + 234.0, + 1087.0, + 256.0, + 1051.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 227.0, + 1313.0, + 227.0, + 1313.0, + 248.0, + 1163.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 270.0, + 341.0, + 270.0, + 341.0, + 289.0, + 318.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 259.0, + 701.0, + 259.0, + 701.0, + 281.0, + 669.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 265.0, + 1086.0, + 265.0, + 1086.0, + 286.0, + 1051.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 278.0, + 701.0, + 278.0, + 701.0, + 300.0, + 670.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 286.0, + 1110.0, + 286.0, + 1110.0, + 295.0, + 1100.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 282.0, + 1224.0, + 282.0, + 1224.0, + 292.0, + 1214.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 299.0, + 346.0, + 299.0, + 346.0, + 358.0, + 298.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 298.0, + 703.0, + 298.0, + 703.0, + 340.0, + 670.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 295.0, + 1086.0, + 295.0, + 1086.0, + 369.0, + 1036.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 295.0, + 1148.0, + 295.0, + 1148.0, + 306.0, + 1137.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 346.0, + 371.0, + 346.0, + 371.0, + 359.0, + 352.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 337.0, + 703.0, + 337.0, + 703.0, + 359.0, + 670.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 358.0, + 341.0, + 358.0, + 341.0, + 377.0, + 318.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 359.0, + 701.0, + 359.0, + 701.0, + 377.0, + 678.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 354.0, + 1087.0, + 354.0, + 1087.0, + 375.0, + 1052.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 375.0, + 407.0, + 375.0, + 407.0, + 385.0, + 396.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 377.0, + 701.0, + 377.0, + 701.0, + 397.0, + 678.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 388.0, + 341.0, + 388.0, + 341.0, + 407.0, + 318.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 386.0, + 1086.0, + 386.0, + 1086.0, + 407.0, + 1051.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 386.0, + 1172.0, + 386.0, + 1172.0, + 406.0, + 1118.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 398.0, + 700.0, + 398.0, + 700.0, + 417.0, + 678.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 402.0, + 1201.0, + 402.0, + 1201.0, + 421.0, + 1096.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 417.0, + 341.0, + 417.0, + 341.0, + 436.0, + 318.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 418.0, + 701.0, + 418.0, + 701.0, + 436.0, + 678.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 415.0, + 1086.0, + 415.0, + 1086.0, + 436.0, + 1051.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 428.0, + 373.0, + 428.0, + 373.0, + 453.0, + 348.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 429.0, + 572.0, + 429.0, + 572.0, + 450.0, + 549.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 428.0, + 733.0, + 428.0, + 733.0, + 453.0, + 708.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 430.0, + 931.0, + 430.0, + 931.0, + 450.0, + 909.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 429.0, + 1116.0, + 429.0, + 1116.0, + 452.0, + 1092.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 429.0, + 1305.0, + 429.0, + 1305.0, + 450.0, + 1284.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 494.0, + 589.0, + 494.0, + 589.0, + 513.0, + 534.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 494.0, + 694.0, + 494.0, + 694.0, + 513.0, + 606.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 494.0, + 988.0, + 494.0, + 988.0, + 513.0, + 935.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 494.0, + 1100.0, + 494.0, + 1100.0, + 513.0, + 1006.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 544.0, + 1277.0, + 544.0, + 1277.0, + 561.0, + 1236.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 558.0, + 1261.0, + 558.0, + 1261.0, + 578.0, + 1234.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 575.0, + 1281.0, + 575.0, + 1281.0, + 596.0, + 1233.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 595.0, + 433.0, + 595.0, + 433.0, + 627.0, + 383.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 597.0, + 835.0, + 597.0, + 835.0, + 622.0, + 804.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 593.0, + 1292.0, + 593.0, + 1292.0, + 613.0, + 1233.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 615.0, + 1227.0, + 615.0, + 1227.0, + 624.0, + 1212.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 610.0, + 1302.0, + 610.0, + 1302.0, + 630.0, + 1233.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 629.0, + 1228.0, + 629.0, + 1228.0, + 644.0, + 1209.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 626.0, + 1314.0, + 626.0, + 1314.0, + 649.0, + 1233.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 653.0, + 1127.0, + 653.0, + 1127.0, + 666.0, + 1110.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 645.0, + 1258.0, + 645.0, + 1258.0, + 665.0, + 1234.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 666.0, + 551.0, + 666.0, + 551.0, + 678.0, + 527.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 661.0, + 1279.0, + 661.0, + 1279.0, + 682.0, + 1204.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 671.0, + 769.0, + 671.0, + 769.0, + 687.0, + 637.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 678.0, + 1289.0, + 678.0, + 1289.0, + 699.0, + 1233.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 683.0, + 1226.0, + 683.0, + 1226.0, + 693.0, + 1212.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 709.0, + 620.0, + 709.0, + 620.0, + 732.0, + 589.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 709.0, + 1023.0, + 709.0, + 1023.0, + 732.0, + 991.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 724.0, + 645.0, + 724.0, + 645.0, + 752.0, + 585.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 724.0, + 1048.0, + 724.0, + 1048.0, + 752.0, + 987.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 437.5, + 426.0, + 437.5, + 426.0, + 455.0, + 375.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 440.5, + 469.0, + 440.5, + 469.0, + 458.0, + 413.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 437.5, + 626.0, + 437.5, + 626.0, + 453.0, + 577.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 440.5, + 670.0, + 440.5, + 670.0, + 458.0, + 614.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 437.5, + 785.0, + 437.5, + 785.0, + 455.0, + 735.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.75, + 440.5, + 828.75, + 440.5, + 828.75, + 458.0, + 771.75, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 436.5, + 986.0, + 436.5, + 986.0, + 454.0, + 936.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.25, + 440.0, + 1029.25, + 440.0, + 1029.25, + 457.0, + 972.25, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.75, + 436.5, + 1166.75, + 436.5, + 1166.75, + 453.5, + 1115.75, + 453.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 439.5, + 1208.0, + 439.5, + 1208.0, + 456.5, + 1151.0, + 456.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.75, + 436.0, + 1356.75, + 436.0, + 1356.75, + 452.5, + 1307.75, + 452.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.25, + 444.0, + 512.25, + 444.0, + 512.25, + 460.0, + 449.25, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 444.0, + 871.0, + 444.0, + 871.0, + 460.0, + 809.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 444.0, + 1249.0, + 444.0, + 1249.0, + 460.0, + 1187.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 439.5, + 1400.0, + 439.5, + 1400.0, + 456.5, + 1343.0, + 456.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 447.0, + 557.0, + 447.0, + 557.0, + 465.0, + 486.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 447.0, + 916.0, + 447.0, + 916.0, + 465.0, + 846.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.75, + 445.0, + 1293.75, + 445.0, + 1293.75, + 464.0, + 1219.75, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 707.5, + 453.0, + 707.5, + 453.0, + 731.5, + 415.0, + 731.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.75, + 707.5, + 795.75, + 707.5, + 795.75, + 731.5, + 756.75, + 731.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 707.0, + 856.0, + 707.0, + 856.0, + 733.0, + 815.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 708.0, + 1197.0, + 708.0, + 1197.0, + 731.5, + 1158.0, + 731.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 777.0, + 987.0, + 777.0, + 987.0, + 810.0, + 295.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 777.0, + 1405.0, + 777.0, + 1405.0, + 810.0, + 1030.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 1403.0, + 808.0, + 1403.0, + 841.0, + 295.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 837.0, + 1407.0, + 837.0, + 1407.0, + 872.0, + 292.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 870.0, + 1406.0, + 870.0, + 1406.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 899.0, + 612.0, + 899.0, + 612.0, + 932.0, + 295.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1210.0, + 741.0, + 1210.0, + 741.0, + 1257.0, + 292.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1586.0, + 756.0, + 1586.0, + 756.0, + 1622.0, + 295.0, + 1622.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, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 1404.0, + 1321.0, + 1404.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 1404.0, + 1354.0, + 1404.0, + 1388.0, + 294.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 786.0, + 1385.0, + 786.0, + 1419.0, + 294.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1419.0, + 830.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 1407.0, + 1413.0, + 1407.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1445.0, + 1406.0, + 1445.0, + 1406.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1505.0, + 836.0, + 1505.0, + 836.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1650.0, + 1405.0, + 1650.0, + 1405.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1714.0, + 295.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1407.0, + 1711.0, + 1407.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1776.0, + 292.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1807.0, + 292.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 1038.0, + 1804.0, + 1038.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1882.0, + 296.0, + 1882.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": [ + 296.0, + 1913.0, + 1404.0, + 1913.0, + 1404.0, + 1945.0, + 296.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 2002.0, + 1243.0, + 2002.0, + 1243.0, + 2038.0, + 291.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 1407.0, + 1002.0, + 1407.0, + 1039.0, + 294.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1034.0, + 1405.0, + 1034.0, + 1405.0, + 1067.0, + 296.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1064.0, + 1406.0, + 1064.0, + 1406.0, + 1097.0, + 293.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1091.0, + 1405.0, + 1091.0, + 1405.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1123.0, + 1225.0, + 1123.0, + 1225.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1014, + 1406, + 1014, + 1406, + 1260, + 296, + 1260 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1274, + 1405, + 1274, + 1405, + 1521, + 296, + 1521 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 301, + 222, + 1399, + 222, + 1399, + 733, + 301, + 733 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 762, + 1405, + 762, + 1405, + 885, + 296, + 885 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 301, + 1657, + 1401, + 1657, + 1401, + 1906, + 301, + 1906 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 1535, + 1403, + 1535, + 1403, + 1598, + 296, + 1598 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 296, + 1931, + 1400, + 1931, + 1400, + 2026, + 296, + 2026 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 299, + 955, + 988, + 955, + 988, + 985, + 299, + 985 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.79 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.486 + }, + { + "category_id": 13, + "poly": [ + 1148, + 1169, + 1182, + 1169, + 1182, + 1198, + 1148, + 1198 + ], + "score": 0.88, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1196, + 762, + 1237, + 762, + 1237, + 792, + 1196, + 792 + ], + "score": 0.85, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1931, + 1403, + 1931, + 1403, + 1963, + 1361, + 1963 + ], + "score": 0.85, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 600, + 470, + 616, + 470, + 616, + 484, + 600, + 484 + ], + "score": 0.52, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1018, + 470, + 1033, + 470, + 1033, + 484, + 1018, + 484 + ], + "score": 0.5, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 239.0, + 342.0, + 239.0, + 342.0, + 260.0, + 318.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 232.0, + 574.0, + 232.0, + 574.0, + 252.0, + 431.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 238.0, + 703.0, + 238.0, + 703.0, + 261.0, + 670.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 230.0, + 935.0, + 230.0, + 935.0, + 252.0, + 786.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 234.0, + 1087.0, + 234.0, + 1087.0, + 257.0, + 1051.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 228.0, + 1312.0, + 228.0, + 1312.0, + 262.0, + 1106.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 252.0, + 1389.0, + 252.0, + 1389.0, + 261.0, + 1362.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 269.0, + 341.0, + 269.0, + 341.0, + 289.0, + 318.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 264.0, + 700.0, + 264.0, + 700.0, + 283.0, + 672.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 260.0, + 1086.0, + 260.0, + 1086.0, + 283.0, + 1051.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 280.0, + 1263.0, + 280.0, + 1263.0, + 290.0, + 1252.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 285.0, + 703.0, + 285.0, + 703.0, + 308.0, + 670.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 285.0, + 1086.0, + 285.0, + 1086.0, + 308.0, + 1051.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 298.0, + 346.0, + 298.0, + 346.0, + 359.0, + 298.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 311.0, + 700.0, + 311.0, + 700.0, + 330.0, + 672.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 306.0, + 1086.0, + 306.0, + 1086.0, + 368.0, + 1036.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 327.0, + 1115.0, + 327.0, + 1115.0, + 343.0, + 1096.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 304.0, + 1188.0, + 304.0, + 1188.0, + 320.0, + 1173.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 334.0, + 700.0, + 334.0, + 700.0, + 353.0, + 672.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 339.0, + 1085.0, + 339.0, + 1085.0, + 358.0, + 1053.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 343.0, + 1187.0, + 343.0, + 1187.0, + 353.0, + 1177.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 348.0, + 1263.0, + 348.0, + 1263.0, + 359.0, + 1253.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 358.0, + 341.0, + 358.0, + 341.0, + 377.0, + 318.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 358.0, + 701.0, + 358.0, + 701.0, + 378.0, + 678.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 363.0, + 1086.0, + 363.0, + 1086.0, + 385.0, + 1051.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 381.0, + 701.0, + 381.0, + 701.0, + 401.0, + 678.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 381.0, + 1378.0, + 381.0, + 1378.0, + 393.0, + 1367.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 387.0, + 341.0, + 387.0, + 341.0, + 406.0, + 318.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 393.0, + 492.0, + 393.0, + 492.0, + 407.0, + 473.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 388.0, + 1086.0, + 388.0, + 1086.0, + 410.0, + 1051.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 386.0, + 1172.0, + 386.0, + 1172.0, + 406.0, + 1118.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 400.0, + 528.0, + 400.0, + 528.0, + 413.0, + 517.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 405.0, + 701.0, + 405.0, + 701.0, + 424.0, + 678.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 406.0, + 1117.0, + 406.0, + 1117.0, + 415.0, + 1102.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 401.0, + 1201.0, + 401.0, + 1201.0, + 421.0, + 1118.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 415.0, + 341.0, + 415.0, + 341.0, + 435.0, + 318.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 413.0, + 891.0, + 413.0, + 891.0, + 427.0, + 871.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 414.0, + 1086.0, + 414.0, + 1086.0, + 437.0, + 1051.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 427.0, + 412.0, + 427.0, + 412.0, + 453.0, + 387.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 428.0, + 496.0, + 428.0, + 496.0, + 453.0, + 467.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 428.0, + 536.0, + 428.0, + 536.0, + 452.0, + 508.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 428.0, + 575.0, + 428.0, + 575.0, + 452.0, + 548.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 428.0, + 615.0, + 428.0, + 615.0, + 453.0, + 588.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 429.0, + 654.0, + 429.0, + 654.0, + 451.0, + 630.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 429.0, + 770.0, + 429.0, + 770.0, + 451.0, + 748.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 428.0, + 855.0, + 428.0, + 855.0, + 453.0, + 826.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 428.0, + 895.0, + 428.0, + 895.0, + 452.0, + 866.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 429.0, + 932.0, + 429.0, + 932.0, + 451.0, + 909.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 428.0, + 975.0, + 428.0, + 975.0, + 453.0, + 947.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 429.0, + 1012.0, + 429.0, + 1012.0, + 451.0, + 990.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 428.0, + 1153.0, + 428.0, + 1153.0, + 452.0, + 1130.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 428.0, + 1232.0, + 428.0, + 1232.0, + 453.0, + 1204.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 427.0, + 1271.0, + 427.0, + 1271.0, + 452.0, + 1243.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 428.0, + 1309.0, + 428.0, + 1309.0, + 452.0, + 1282.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 428.0, + 1348.0, + 428.0, + 1348.0, + 452.0, + 1319.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 428.0, + 1383.0, + 428.0, + 1383.0, + 449.0, + 1359.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 467.0, + 599.0, + 467.0, + 599.0, + 488.0, + 543.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 467.0, + 709.0, + 467.0, + 709.0, + 488.0, + 617.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 467.0, + 1017.0, + 467.0, + 1017.0, + 488.0, + 961.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 467.0, + 1133.0, + 467.0, + 1133.0, + 488.0, + 1034.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 518.0, + 1299.0, + 518.0, + 1299.0, + 540.0, + 1253.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 535.0, + 1309.0, + 535.0, + 1309.0, + 558.0, + 1273.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 553.0, + 1303.0, + 553.0, + 1303.0, + 576.0, + 1273.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 571.0, + 436.0, + 571.0, + 436.0, + 607.0, + 385.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 570.0, + 1313.0, + 570.0, + 1313.0, + 611.0, + 1273.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 604.0, + 1276.0, + 604.0, + 1276.0, + 628.0, + 1244.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 606.0, + 1302.0, + 606.0, + 1302.0, + 629.0, + 1272.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 635.0, + 1137.0, + 635.0, + 1137.0, + 642.0, + 1131.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 628.0, + 1262.0, + 628.0, + 1262.0, + 640.0, + 1252.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 625.0, + 1299.0, + 625.0, + 1299.0, + 646.0, + 1274.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 643.0, + 1300.0, + 643.0, + 1300.0, + 663.0, + 1274.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 661.0, + 1298.0, + 661.0, + 1298.0, + 681.0, + 1274.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 689.0, + 456.0, + 689.0, + 456.0, + 717.0, + 418.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 692.0, + 1053.0, + 692.0, + 1053.0, + 715.0, + 1015.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 689.0, + 1234.0, + 689.0, + 1234.0, + 717.0, + 1197.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 707.0, + 656.0, + 707.0, + 656.0, + 738.0, + 595.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 707.0, + 1078.0, + 707.0, + 1078.0, + 738.0, + 1016.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 433.0, + 383.0, + 433.0, + 383.0, + 452.0, + 338.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 433.0, + 464.0, + 433.0, + 464.0, + 452.0, + 417.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 433.5, + 741.0, + 433.5, + 741.0, + 451.5, + 698.0, + 451.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 433.0, + 823.0, + 433.0, + 823.0, + 452.0, + 776.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.25, + 430.5, + 1125.25, + 430.5, + 1125.25, + 451.0, + 1080.25, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 431.5, + 1204.0, + 431.5, + 1204.0, + 453.0, + 1154.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.75, + 591.0, + 858.75, + 591.0, + 858.75, + 616.0, + 819.75, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.75, + 596.0, + 918.75, + 596.0, + 918.75, + 608.5, + 905.75, + 608.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.25, + 689.5, + 635.25, + 689.5, + 635.25, + 717.5, + 593.25, + 717.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 689.0, + 815.0, + 689.0, + 815.0, + 716.5, + 772.0, + 716.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.75, + 689.5, + 878.75, + 689.5, + 878.75, + 717.5, + 834.75, + 717.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 762.0, + 1195.0, + 762.0, + 1195.0, + 796.0, + 293.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 762.0, + 1406.0, + 762.0, + 1406.0, + 796.0, + 1238.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 792.0, + 1406.0, + 792.0, + 1406.0, + 827.0, + 291.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 822.0, + 1405.0, + 822.0, + 1405.0, + 858.0, + 293.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 852.0, + 514.0, + 852.0, + 514.0, + 889.0, + 293.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1671.0, + 350.0, + 1671.0, + 350.0, + 1693.0, + 317.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1665.0, + 580.0, + 1665.0, + 580.0, + 1685.0, + 436.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1681.0, + 705.0, + 1681.0, + 705.0, + 1699.0, + 675.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1668.0, + 937.0, + 1668.0, + 937.0, + 1691.0, + 791.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1668.0, + 1081.0, + 1668.0, + 1081.0, + 1689.0, + 1051.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1660.0, + 1308.0, + 1660.0, + 1308.0, + 1680.0, + 1162.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1687.0, + 1234.0, + 1687.0, + 1234.0, + 1695.0, + 1223.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1691.0, + 1079.0, + 1691.0, + 1079.0, + 1710.0, + 1052.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1693.0, + 1104.0, + 1693.0, + 1104.0, + 1702.0, + 1091.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1694.0, + 1138.0, + 1694.0, + 1138.0, + 1703.0, + 1128.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1706.0, + 619.0, + 1706.0, + 619.0, + 1716.0, + 609.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1705.0, + 1102.0, + 1705.0, + 1102.0, + 1716.0, + 1091.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1703.0, + 1216.0, + 1703.0, + 1216.0, + 1709.0, + 1210.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1711.0, + 350.0, + 1711.0, + 350.0, + 1733.0, + 317.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1745.0, + 654.0, + 1745.0, + 654.0, + 1755.0, + 645.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1720.0, + 704.0, + 1720.0, + 704.0, + 1738.0, + 671.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1712.0, + 1081.0, + 1712.0, + 1081.0, + 1801.0, + 1036.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1726.0, + 1206.0, + 1726.0, + 1206.0, + 1738.0, + 1195.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1731.0, + 1380.0, + 1731.0, + 1380.0, + 1740.0, + 1370.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1751.0, + 350.0, + 1751.0, + 350.0, + 1786.0, + 303.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1760.0, + 705.0, + 1760.0, + 705.0, + 1778.0, + 675.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1757.0, + 1080.0, + 1757.0, + 1080.0, + 1780.0, + 1050.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1781.0, + 1079.0, + 1781.0, + 1079.0, + 1800.0, + 1051.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1791.0, + 348.0, + 1791.0, + 348.0, + 1809.0, + 320.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1797.0, + 706.0, + 1797.0, + 706.0, + 1819.0, + 673.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1794.0, + 832.0, + 1794.0, + 832.0, + 1805.0, + 823.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1803.0, + 1079.0, + 1803.0, + 1079.0, + 1823.0, + 1052.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1798.0, + 1172.0, + 1798.0, + 1172.0, + 1814.0, + 1159.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1820.0, + 443.0, + 1820.0, + 443.0, + 1830.0, + 430.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1819.0, + 1165.0, + 1819.0, + 1165.0, + 1838.0, + 1112.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1830.0, + 350.0, + 1830.0, + 350.0, + 1849.0, + 325.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1830.0, + 975.0, + 1830.0, + 975.0, + 1841.0, + 963.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1825.0, + 1080.0, + 1825.0, + 1080.0, + 1847.0, + 1050.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1847.0, + 373.0, + 1847.0, + 373.0, + 1857.0, + 358.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1842.0, + 587.0, + 1842.0, + 587.0, + 1855.0, + 571.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1838.0, + 705.0, + 1838.0, + 705.0, + 1857.0, + 681.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1849.0, + 1080.0, + 1849.0, + 1080.0, + 1868.0, + 1052.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1835.0, + 1193.0, + 1835.0, + 1193.0, + 1854.0, + 1087.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.75, + 1870.0, + 389.75, + 1870.0, + 389.75, + 1887.0, + 339.75, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1872.5, + 430.0, + 1872.5, + 430.0, + 1890.0, + 371.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1871.0, + 460.0, + 1871.0, + 460.0, + 1888.0, + 410.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1873.5, + 500.0, + 1873.5, + 500.0, + 1890.5, + 442.0, + 1890.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.25, + 1870.0, + 531.25, + 1870.0, + 531.25, + 1887.0, + 481.25, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.75, + 1873.0, + 569.75, + 1873.0, + 569.75, + 1890.0, + 513.75, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1870.0, + 603.0, + 1870.0, + 603.0, + 1888.5, + 549.0, + 1888.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.75, + 1870.5, + 637.75, + 1870.5, + 637.75, + 1887.5, + 585.75, + 1887.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1870.0, + 673.0, + 1870.0, + 673.0, + 1887.0, + 622.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.25, + 1870.0, + 746.25, + 1870.0, + 746.25, + 1887.0, + 695.25, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.75, + 1873.0, + 784.75, + 1873.0, + 784.75, + 1890.0, + 727.75, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1870.5, + 816.0, + 1870.5, + 816.0, + 1886.5, + 766.0, + 1886.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1873.5, + 856.0, + 1873.5, + 856.0, + 1890.5, + 799.0, + 1890.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1869.5, + 887.0, + 1869.5, + 887.0, + 1887.0, + 836.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 1873.0, + 926.0, + 1873.0, + 926.0, + 1890.0, + 869.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1871.0, + 959.0, + 1871.0, + 959.0, + 1888.0, + 906.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.75, + 1871.0, + 991.75, + 1871.0, + 991.75, + 1887.0, + 941.75, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.75, + 1870.5, + 1028.75, + 1870.5, + 1028.75, + 1886.5, + 978.75, + 1886.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1869.5, + 1120.0, + 1869.5, + 1120.0, + 1886.0, + 1070.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.75, + 1873.0, + 1158.75, + 1873.0, + 1158.75, + 1890.0, + 1101.75, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1870.5, + 1190.0, + 1870.5, + 1190.0, + 1886.5, + 1140.0, + 1886.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.25, + 1872.5, + 1228.25, + 1872.5, + 1228.25, + 1890.5, + 1170.25, + 1890.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1870.0, + 1259.0, + 1870.0, + 1259.0, + 1887.0, + 1209.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1872.5, + 1297.0, + 1872.5, + 1297.0, + 1889.5, + 1240.0, + 1889.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1870.0, + 1329.0, + 1870.0, + 1329.0, + 1887.0, + 1277.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1870.0, + 1364.0, + 1870.0, + 1364.0, + 1887.0, + 1312.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.75, + 1870.5, + 1398.75, + 1870.5, + 1398.75, + 1886.5, + 1348.75, + 1886.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1931.0, + 1360.0, + 1931.0, + 1360.0, + 1965.0, + 294.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1964.0, + 1405.0, + 1964.0, + 1405.0, + 1998.0, + 295.0, + 1998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1994.0, + 892.0, + 1994.0, + 892.0, + 2028.0, + 296.0, + 2028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 954.0, + 992.0, + 954.0, + 992.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1014.0, + 1408.0, + 1014.0, + 1408.0, + 1048.0, + 295.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1047.0, + 1404.0, + 1047.0, + 1404.0, + 1077.0, + 296.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1073.0, + 1406.0, + 1073.0, + 1406.0, + 1109.0, + 291.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1102.0, + 1407.0, + 1102.0, + 1407.0, + 1142.0, + 291.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1135.0, + 1404.0, + 1135.0, + 1404.0, + 1171.0, + 293.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1166.0, + 1147.0, + 1166.0, + 1147.0, + 1199.0, + 294.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1166.0, + 1403.0, + 1166.0, + 1403.0, + 1199.0, + 1183.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1195.0, + 1406.0, + 1195.0, + 1406.0, + 1233.0, + 293.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 552.0, + 1226.0, + 552.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1310.0, + 293.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1340.0, + 295.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1371.0, + 291.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 1405.0, + 1367.0, + 1405.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1393.0, + 1406.0, + 1393.0, + 1406.0, + 1434.0, + 290.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1425.0, + 1405.0, + 1425.0, + 1405.0, + 1463.0, + 294.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 1405.0, + 1457.0, + 1405.0, + 1493.0, + 293.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1487.0, + 1029.0, + 1487.0, + 1029.0, + 1525.0, + 291.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1408.0, + 1533.0, + 1408.0, + 1570.0, + 294.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1563.0, + 1407.0, + 1563.0, + 1407.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1698, + 1405, + 1698, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 475, + 298, + 475 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 573, + 1405, + 573, + 1405, + 727, + 298, + 727 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 300, + 760, + 1399, + 760, + 1399, + 1282, + 300, + 1282 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1620, + 1400, + 1620, + 1400, + 1683, + 298, + 1683 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1410, + 1399, + 1410, + 1399, + 1502, + 299, + 1502 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 296, + 1309, + 1405, + 1309, + 1405, + 1374, + 296, + 1374 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 300, + 1548, + 632, + 1548, + 632, + 1584, + 300, + 1584 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 301, + 515, + 1120, + 515, + 1120, + 546, + 301, + 546 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.753 + }, + { + "category_id": 13, + "poly": [ + 569, + 1881, + 623, + 1881, + 623, + 1911, + 569, + 1911 + ], + "score": 0.89, + "latex": "1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1310, + 1139, + 1310, + 1139, + 1341, + 1097, + 1341 + ], + "score": 0.85, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 993, + 1029, + 1007, + 1029, + 1007, + 1042, + 993, + 1042 + ], + "score": 0.59, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1370, + 1760, + 1403, + 1760, + 1403, + 1788, + 1370, + 1788 + ], + "score": 0.51, + "latex": "5 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 591, + 1029, + 607, + 1029, + 607, + 1042, + 591, + 1042 + ], + "score": 0.5, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1729, + 1284, + 1729, + 1284, + 1758, + 1237, + 1758 + ], + "score": 0.31, + "latex": "5 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 774.0, + 342.0, + 774.0, + 342.0, + 794.0, + 320.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 767.0, + 573.0, + 767.0, + 573.0, + 787.0, + 430.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 773.0, + 705.0, + 773.0, + 705.0, + 795.0, + 671.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 767.0, + 936.0, + 767.0, + 936.0, + 787.0, + 788.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 768.0, + 1088.0, + 768.0, + 1088.0, + 790.0, + 1051.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 763.0, + 1310.0, + 763.0, + 1310.0, + 779.0, + 1167.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 794.0, + 342.0, + 794.0, + 342.0, + 814.0, + 319.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 793.0, + 705.0, + 793.0, + 705.0, + 816.0, + 671.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 800.0, + 887.0, + 800.0, + 887.0, + 810.0, + 877.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 813.0, + 342.0, + 813.0, + 342.0, + 834.0, + 319.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 812.0, + 705.0, + 812.0, + 705.0, + 834.0, + 671.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 805.0, + 1087.0, + 805.0, + 1087.0, + 827.0, + 1051.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 834.0, + 344.0, + 834.0, + 344.0, + 891.0, + 303.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 833.0, + 705.0, + 833.0, + 705.0, + 874.0, + 671.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 853.0, + 967.0, + 853.0, + 967.0, + 864.0, + 957.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 837.0, + 1086.0, + 837.0, + 1086.0, + 902.0, + 1036.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 851.0, + 1224.0, + 851.0, + 1224.0, + 862.0, + 1214.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 858.0, + 1377.0, + 858.0, + 1377.0, + 868.0, + 1367.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 872.0, + 344.0, + 872.0, + 344.0, + 895.0, + 316.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 874.0, + 703.0, + 874.0, + 703.0, + 892.0, + 672.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 878.0, + 730.0, + 878.0, + 730.0, + 889.0, + 717.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 876.0, + 1087.0, + 876.0, + 1087.0, + 898.0, + 1051.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 892.0, + 342.0, + 892.0, + 342.0, + 912.0, + 320.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 893.0, + 703.0, + 893.0, + 703.0, + 913.0, + 678.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 904.0, + 807.0, + 904.0, + 807.0, + 913.0, + 797.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 913.0, + 341.0, + 913.0, + 341.0, + 932.0, + 319.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 926.0, + 367.0, + 926.0, + 367.0, + 936.0, + 357.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 913.0, + 703.0, + 913.0, + 703.0, + 932.0, + 678.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 913.0, + 1087.0, + 913.0, + 1087.0, + 935.0, + 1051.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 921.0, + 1173.0, + 921.0, + 1173.0, + 941.0, + 1121.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 930.0, + 344.0, + 930.0, + 344.0, + 954.0, + 317.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 931.0, + 491.0, + 931.0, + 491.0, + 944.0, + 474.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 941.0, + 567.0, + 941.0, + 567.0, + 951.0, + 556.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 932.0, + 703.0, + 932.0, + 703.0, + 952.0, + 680.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 941.0, + 853.0, + 941.0, + 853.0, + 954.0, + 831.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 940.0, + 1117.0, + 940.0, + 1117.0, + 949.0, + 1101.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 935.0, + 1202.0, + 935.0, + 1202.0, + 958.0, + 1119.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 952.0, + 342.0, + 952.0, + 342.0, + 971.0, + 319.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 952.0, + 647.0, + 952.0, + 647.0, + 963.0, + 636.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 953.0, + 703.0, + 953.0, + 703.0, + 971.0, + 680.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 949.0, + 1087.0, + 949.0, + 1087.0, + 971.0, + 1051.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 964.0, + 1315.0, + 964.0, + 1315.0, + 986.0, + 1294.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1025.0, + 590.0, + 1025.0, + 590.0, + 1048.0, + 535.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1025.0, + 697.0, + 1025.0, + 697.0, + 1048.0, + 608.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1026.0, + 992.0, + 1026.0, + 992.0, + 1045.0, + 937.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1026.0, + 1103.0, + 1026.0, + 1103.0, + 1045.0, + 1008.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1074.0, + 1280.0, + 1074.0, + 1280.0, + 1095.0, + 1237.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1091.0, + 1307.0, + 1091.0, + 1307.0, + 1112.0, + 1238.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1108.0, + 1299.0, + 1108.0, + 1299.0, + 1129.0, + 1238.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1128.0, + 434.0, + 1128.0, + 434.0, + 1161.0, + 384.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1135.0, + 840.0, + 1135.0, + 840.0, + 1162.0, + 805.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1125.0, + 1309.0, + 1125.0, + 1309.0, + 1220.0, + 1203.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1158.0, + 1310.0, + 1158.0, + 1310.0, + 1183.0, + 1237.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1178.0, + 1303.0, + 1178.0, + 1303.0, + 1198.0, + 1237.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1192.0, + 1314.0, + 1192.0, + 1314.0, + 1217.0, + 1235.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1213.0, + 1233.0, + 1213.0, + 1233.0, + 1228.0, + 1212.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1212.0, + 1303.0, + 1212.0, + 1303.0, + 1232.0, + 1237.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1242.0, + 451.0, + 1242.0, + 451.0, + 1265.0, + 419.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1242.0, + 622.0, + 1242.0, + 622.0, + 1265.0, + 588.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1242.0, + 795.0, + 1242.0, + 795.0, + 1265.0, + 762.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1242.0, + 856.0, + 1242.0, + 856.0, + 1265.0, + 821.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1240.0, + 1027.0, + 1240.0, + 1027.0, + 1266.0, + 992.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1259.0, + 646.0, + 1259.0, + 646.0, + 1285.0, + 586.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1259.0, + 1049.0, + 1259.0, + 1049.0, + 1285.0, + 991.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 980.5, + 392.0, + 980.5, + 392.0, + 997.5, + 329.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 977.0, + 430.0, + 977.0, + 430.0, + 994.0, + 371.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 980.5, + 474.0, + 980.5, + 474.0, + 997.5, + 407.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 977.0, + 510.0, + 977.0, + 510.0, + 994.0, + 450.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 980.5, + 553.0, + 980.5, + 553.0, + 997.5, + 487.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 978.0, + 590.0, + 978.0, + 590.0, + 995.0, + 530.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 981.5, + 634.0, + 981.5, + 634.0, + 998.5, + 566.0, + 998.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.75, + 977.5, + 669.75, + 977.5, + 669.75, + 993.5, + 609.75, + 993.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 981.0, + 752.0, + 981.0, + 752.0, + 996.5, + 690.0, + 996.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.75, + 978.0, + 789.75, + 978.0, + 789.75, + 994.0, + 731.75, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 980.5, + 835.0, + 980.5, + 835.0, + 997.5, + 768.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.75, + 977.5, + 869.75, + 977.5, + 869.75, + 993.0, + 811.75, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 981.5, + 913.0, + 981.5, + 913.0, + 997.5, + 848.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.75, + 978.5, + 950.75, + 978.5, + 950.75, + 994.5, + 890.75, + 994.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 982.0, + 994.0, + 982.0, + 994.0, + 998.0, + 927.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.25, + 977.5, + 1031.25, + 977.5, + 1031.25, + 994.0, + 970.25, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.75, + 980.0, + 1135.75, + 980.0, + 1135.75, + 995.5, + 1071.75, + 995.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.75, + 976.0, + 1171.75, + 976.0, + 1171.75, + 993.0, + 1111.75, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 978.5, + 1216.0, + 978.5, + 1216.0, + 997.5, + 1144.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.75, + 976.0, + 1247.75, + 976.0, + 1247.75, + 993.0, + 1187.75, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 981.0, + 1289.0, + 981.0, + 1289.0, + 996.5, + 1223.0, + 996.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.75, + 984.0, + 1311.75, + 984.0, + 1311.75, + 1001.0, + 1262.75, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 980.5, + 1367.0, + 980.5, + 1367.0, + 997.5, + 1297.0, + 997.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 977.0, + 1400.0, + 977.0, + 1400.0, + 993.5, + 1339.0, + 993.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1241.5, + 1202.0, + 1241.5, + 1202.0, + 1264.5, + 1162.0, + 1264.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1096.0, + 1309.0, + 1096.0, + 1344.0, + 294.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1344.0, + 1140.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1277.0, + 1341.0, + 1277.0, + 1378.0, + 295.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1545.0, + 637.0, + 1545.0, + 637.0, + 1591.0, + 292.0, + 1591.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, + 513.0, + 1124.0, + 513.0, + 1124.0, + 551.0, + 294.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1729.0, + 1236.0, + 1729.0, + 1236.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1729.0, + 1406.0, + 1729.0, + 1406.0, + 1763.0, + 1285.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1369.0, + 1758.0, + 1369.0, + 1793.0, + 294.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1406.0, + 1790.0, + 1406.0, + 1823.0, + 294.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 568.0, + 1881.0, + 568.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1916.0, + 624.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 895.0, + 2002.0, + 895.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 264.0, + 292.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 263.0, + 1402.0, + 263.0, + 1402.0, + 293.0, + 294.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 1405.0, + 354.0, + 1405.0, + 384.0, + 296.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1406.0, + 382.0, + 1406.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 1406.0, + 414.0, + 1406.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 445.0, + 1100.0, + 445.0, + 1100.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 572.0, + 1407.0, + 572.0, + 1407.0, + 609.0, + 295.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 637.0, + 296.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 633.0, + 1405.0, + 633.0, + 1405.0, + 669.0, + 293.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 663.0, + 1406.0, + 663.0, + 1406.0, + 700.0, + 293.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 694.0, + 1220.0, + 694.0, + 1220.0, + 732.0, + 293.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1404.0, + 1618.0, + 1404.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1652.0, + 810.0, + 1652.0, + 810.0, + 1687.0, + 296.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1410.0, + 1403.0, + 1410.0, + 1403.0, + 1444.0, + 295.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1442.0, + 1403.0, + 1442.0, + 1403.0, + 1475.0, + 295.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1470.0, + 645.0, + 1470.0, + 645.0, + 1504.0, + 295.0, + 1504.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 973, + 1404, + 973, + 1404, + 1310, + 298, + 1310 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1531, + 1404, + 1531, + 1404, + 2020, + 298, + 2020 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 537, + 1404, + 537, + 1404, + 782, + 298, + 782 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 414, + 299, + 414 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 430, + 1403, + 430, + 1403, + 521, + 299, + 521 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1325, + 1400, + 1325, + 1400, + 1418, + 300, + 1418 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 797, + 1401, + 797, + 1401, + 860, + 299, + 860 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 301, + 903, + 587, + 903, + 587, + 939, + 301, + 939 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1462, + 543, + 1462, + 543, + 1497, + 300, + 1497 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 857, + 76, + 857, + 104, + 299, + 104 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 15, + "poly": [ + 291.0, + 901.0, + 593.0, + 901.0, + 593.0, + 943.0, + 291.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1456.0, + 549.0, + 1456.0, + 549.0, + 1506.0, + 291.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 974.0, + 1408.0, + 974.0, + 1408.0, + 1009.0, + 293.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1002.0, + 1406.0, + 1002.0, + 1406.0, + 1038.0, + 293.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 1406.0, + 1035.0, + 1406.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1406.0, + 1066.0, + 1406.0, + 1099.0, + 293.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 1404.0, + 1093.0, + 1404.0, + 1133.0, + 292.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1161.0, + 293.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1155.0, + 1404.0, + 1155.0, + 1404.0, + 1192.0, + 292.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 1405.0, + 1185.0, + 1405.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 1404.0, + 1217.0, + 1404.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1284.0, + 294.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1281.0, + 865.0, + 1281.0, + 865.0, + 1312.0, + 297.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1567.0, + 294.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1404.0, + 1564.0, + 1404.0, + 1599.0, + 293.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1654.0, + 1405.0, + 1654.0, + 1405.0, + 1691.0, + 293.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1685.0, + 1409.0, + 1685.0, + 1409.0, + 1721.0, + 292.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 1405.0, + 1717.0, + 1405.0, + 1751.0, + 294.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 1406.0, + 1746.0, + 1406.0, + 1780.0, + 294.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1777.0, + 1405.0, + 1777.0, + 1405.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1844.0, + 292.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1837.0, + 1405.0, + 1837.0, + 1405.0, + 1874.0, + 293.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1866.0, + 1405.0, + 1866.0, + 1405.0, + 1903.0, + 293.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1897.0, + 1408.0, + 1897.0, + 1408.0, + 1934.0, + 293.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1929.0, + 1405.0, + 1929.0, + 1405.0, + 1963.0, + 294.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1958.0, + 1406.0, + 1958.0, + 1406.0, + 1991.0, + 293.0, + 1991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1990.0, + 542.0, + 1990.0, + 542.0, + 2021.0, + 296.0, + 2021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 535.0, + 1408.0, + 535.0, + 1408.0, + 573.0, + 295.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 567.0, + 1404.0, + 567.0, + 1404.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 633.0, + 294.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 664.0, + 293.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 658.0, + 1405.0, + 658.0, + 1405.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 687.0, + 1406.0, + 687.0, + 1406.0, + 725.0, + 292.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 719.0, + 1408.0, + 719.0, + 1408.0, + 757.0, + 292.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 748.0, + 1292.0, + 748.0, + 1292.0, + 788.0, + 292.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 263.0, + 295.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 294.0, + 295.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 323.0, + 1404.0, + 323.0, + 1404.0, + 355.0, + 297.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 383.0, + 1295.0, + 383.0, + 1295.0, + 414.0, + 297.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 427.0, + 1404.0, + 427.0, + 1404.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 495.0, + 293.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 1168.0, + 490.0, + 1168.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1359.0, + 296.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1391.0, + 295.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1259.0, + 1387.0, + 1259.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 831.0, + 294.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 1298.0, + 827.0, + 1298.0, + 862.0, + 294.0, + 862.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 489, + 228, + 489, + 261, + 300, + 261 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 298, + 276, + 1401, + 276, + 1401, + 334, + 298, + 334 + ], + "score": 0.644 + }, + { + "category_id": 1, + "poly": [ + 300, + 1165, + 1400, + 1165, + 1400, + 1251, + 300, + 1251 + ], + "score": 0.586 + }, + { + "category_id": 1, + "poly": [ + 293, + 431, + 1402, + 431, + 1402, + 491, + 293, + 491 + ], + "score": 0.583 + }, + { + "category_id": 1, + "poly": [ + 294, + 1583, + 1402, + 1583, + 1402, + 1644, + 294, + 1644 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 297, + 510, + 1401, + 510, + 1401, + 570, + 297, + 570 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 298, + 353, + 1398, + 353, + 1398, + 414, + 298, + 414 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 301, + 901, + 1400, + 901, + 1400, + 989, + 301, + 989 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 294, + 1661, + 1400, + 1661, + 1400, + 1722, + 294, + 1722 + ], + "score": 0.556 + }, + { + "category_id": 1, + "poly": [ + 299, + 1348, + 1401, + 1348, + 1401, + 1409, + 299, + 1409 + ], + "score": 0.548 + }, + { + "category_id": 1, + "poly": [ + 292, + 1270, + 1401, + 1270, + 1401, + 1331, + 292, + 1331 + ], + "score": 0.547 + }, + { + "category_id": 1, + "poly": [ + 301, + 795, + 1402, + 795, + 1402, + 884, + 301, + 884 + ], + "score": 0.543 + }, + { + "category_id": 1, + "poly": [ + 297, + 718, + 1404, + 718, + 1404, + 778, + 297, + 778 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 294, + 1007, + 1400, + 1007, + 1400, + 1068, + 294, + 1068 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 297, + 1505, + 1399, + 1505, + 1399, + 1566, + 297, + 1566 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 297, + 1427, + 1400, + 1427, + 1400, + 1487, + 297, + 1487 + ], + "score": 0.53 + }, + { + "category_id": 1, + "poly": [ + 292, + 1086, + 1400, + 1086, + 1400, + 1146, + 292, + 1146 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 299, + 640, + 1401, + 640, + 1401, + 700, + 299, + 700 + ], + "score": 0.528 + }, + { + "category_id": 1, + "poly": [ + 300, + 587, + 1259, + 587, + 1259, + 621, + 300, + 621 + ], + "score": 0.523 + }, + { + "category_id": 1, + "poly": [ + 296, + 1740, + 1399, + 1740, + 1399, + 1800, + 296, + 1800 + ], + "score": 0.477 + }, + { + "category_id": 1, + "poly": [ + 294, + 1976, + 1404, + 1976, + 1404, + 2034, + 294, + 2034 + ], + "score": 0.438 + }, + { + "category_id": 1, + "poly": [ + 300, + 1818, + 1398, + 1818, + 1398, + 1879, + 300, + 1879 + ], + "score": 0.418 + }, + { + "category_id": 1, + "poly": [ + 298, + 1897, + 1402, + 1897, + 1402, + 1957, + 298, + 1957 + ], + "score": 0.417 + }, + { + "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, + 227.0, + 491.0, + 227.0, + 491.0, + 265.0, + 295.0, + 265.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, + 279.0, + 1402.0, + 279.0, + 1402.0, + 306.0, + 297.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 303.0, + 1138.0, + 303.0, + 1138.0, + 336.0, + 322.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1164.0, + 1404.0, + 1164.0, + 1404.0, + 1199.0, + 294.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1193.0, + 1404.0, + 1193.0, + 1404.0, + 1227.0, + 321.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1221.0, + 796.0, + 1221.0, + 796.0, + 1253.0, + 322.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 431.0, + 1407.0, + 431.0, + 1407.0, + 466.0, + 295.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 459.0, + 392.0, + 459.0, + 392.0, + 492.0, + 320.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1583.0, + 1404.0, + 1583.0, + 1404.0, + 1619.0, + 296.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1614.0, + 671.0, + 1614.0, + 671.0, + 1644.0, + 319.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 512.0, + 1403.0, + 512.0, + 1403.0, + 544.0, + 296.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 539.0, + 1023.0, + 539.0, + 1023.0, + 571.0, + 321.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 382.0, + 957.0, + 382.0, + 957.0, + 415.0, + 320.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 902.0, + 1404.0, + 902.0, + 1404.0, + 936.0, + 293.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 926.0, + 1405.0, + 926.0, + 1405.0, + 967.0, + 320.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 960.0, + 554.0, + 960.0, + 554.0, + 991.0, + 323.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1691.0, + 1203.0, + 1691.0, + 1203.0, + 1723.0, + 323.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1348.0, + 1405.0, + 1348.0, + 1405.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1377.0, + 1124.0, + 1377.0, + 1124.0, + 1410.0, + 320.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1267.0, + 1406.0, + 1267.0, + 1406.0, + 1309.0, + 292.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1300.0, + 970.0, + 1300.0, + 970.0, + 1332.0, + 323.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 798.0, + 1406.0, + 798.0, + 1406.0, + 828.0, + 299.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 827.0, + 1404.0, + 827.0, + 1404.0, + 856.0, + 324.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 855.0, + 883.0, + 855.0, + 883.0, + 884.0, + 324.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 746.0, + 1274.0, + 746.0, + 1274.0, + 779.0, + 321.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1005.0, + 1405.0, + 1005.0, + 1405.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1037.0, + 1231.0, + 1037.0, + 1231.0, + 1069.0, + 323.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1542.0, + 293.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1533.0, + 735.0, + 1533.0, + 735.0, + 1568.0, + 321.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1426.0, + 1405.0, + 1426.0, + 1405.0, + 1463.0, + 295.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1457.0, + 1261.0, + 1457.0, + 1261.0, + 1488.0, + 325.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1087.0, + 1403.0, + 1087.0, + 1403.0, + 1122.0, + 296.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1116.0, + 1113.0, + 1116.0, + 1113.0, + 1147.0, + 324.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 641.0, + 1405.0, + 641.0, + 1405.0, + 672.0, + 297.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 669.0, + 1298.0, + 669.0, + 1298.0, + 700.0, + 325.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 589.0, + 1255.0, + 589.0, + 1255.0, + 622.0, + 295.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1404.0, + 1739.0, + 1404.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1769.0, + 1065.0, + 1769.0, + 1065.0, + 1801.0, + 321.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2010.0, + 296.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 1064.0, + 2003.0, + 1064.0, + 2036.0, + 322.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1817.0, + 1404.0, + 1817.0, + 1404.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1848.0, + 1245.0, + 1848.0, + 1245.0, + 1880.0, + 324.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 1404.0, + 1894.0, + 1404.0, + 1933.0, + 294.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1927.0, + 1399.0, + 1927.0, + 1399.0, + 1958.0, + 325.0, + 1958.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 296, + 231, + 1403, + 231, + 1403, + 290, + 296, + 290 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 297, + 309, + 1399, + 309, + 1399, + 368, + 297, + 368 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 299, + 828, + 1400, + 828, + 1400, + 889, + 299, + 889 + ], + "score": 0.583 + }, + { + "category_id": 1, + "poly": [ + 299, + 985, + 1399, + 985, + 1399, + 1042, + 299, + 1042 + ], + "score": 0.577 + }, + { + "category_id": 1, + "poly": [ + 297, + 905, + 1400, + 905, + 1400, + 966, + 297, + 966 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 298, + 463, + 1398, + 463, + 1398, + 523, + 298, + 523 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 300, + 723, + 1399, + 723, + 1399, + 811, + 300, + 811 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 300, + 385, + 1402, + 385, + 1402, + 446, + 300, + 446 + ], + "score": 0.538 + }, + { + "category_id": 1, + "poly": [ + 295, + 540, + 1403, + 540, + 1403, + 627, + 295, + 627 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 290, + 645, + 1402, + 645, + 1402, + 706, + 290, + 706 + ], + "score": 0.472 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 233.0, + 1404.0, + 233.0, + 1404.0, + 264.0, + 298.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 259.0, + 1354.0, + 259.0, + 1354.0, + 293.0, + 321.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 309.0, + 1403.0, + 309.0, + 1403.0, + 342.0, + 296.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 340.0, + 1399.0, + 340.0, + 1399.0, + 367.0, + 326.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 826.0, + 1402.0, + 826.0, + 1402.0, + 865.0, + 294.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 856.0, + 1000.0, + 856.0, + 1000.0, + 890.0, + 320.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 985.0, + 1402.0, + 985.0, + 1402.0, + 1016.0, + 296.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1012.0, + 836.0, + 1012.0, + 836.0, + 1043.0, + 320.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 903.0, + 1404.0, + 903.0, + 1404.0, + 943.0, + 293.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 937.0, + 1263.0, + 937.0, + 1263.0, + 966.0, + 323.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1403.0, + 460.0, + 1403.0, + 498.0, + 293.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 489.0, + 450.0, + 489.0, + 450.0, + 524.0, + 319.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 724.0, + 1404.0, + 724.0, + 1404.0, + 756.0, + 296.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 785.0, + 322.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 780.0, + 884.0, + 780.0, + 884.0, + 813.0, + 324.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 384.0, + 1406.0, + 384.0, + 1406.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 416.0, + 1317.0, + 416.0, + 1317.0, + 447.0, + 323.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 540.0, + 1405.0, + 540.0, + 1405.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 606.0, + 321.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 598.0, + 474.0, + 598.0, + 474.0, + 628.0, + 322.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1407.0, + 641.0, + 1407.0, + 684.0, + 294.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 675.0, + 1196.0, + 675.0, + 1196.0, + 707.0, + 323.0, + 707.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 548, + 1799, + 1143, + 1799, + 1143, + 2015, + 548, + 2015 + ], + "score": 0.979, + "html": "
LSUN-BEDROOM CELEBA-HQ-128
K=5 4/52/5
K=109/10 8/10
K=2018/20 15/20
K=50 49/5046/50
K=10095/100 98/100
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1380, + 1405, + 1380, + 1405, + 1520, + 297, + 1520 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 291, + 1405, + 291, + 1405, + 404, + 298, + 404 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 410, + 871, + 1285, + 871, + 1285, + 1184, + 410, + 1184 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 1536, + 1400, + 1536, + 1400, + 1619, + 298, + 1619 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 437, + 433, + 1257, + 433, + 1257, + 732, + 437, + 732 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 302, + 1635, + 1402, + 1635, + 1402, + 1719, + 302, + 1719 + ], + "score": 0.954 + }, + { + "category_id": 4, + "poly": [ + 297, + 761, + 1404, + 761, + 1404, + 826, + 297, + 826 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 973, + 226, + 973, + 262, + 299, + 262 + ], + "score": 0.927 + }, + { + "category_id": 4, + "poly": [ + 291, + 1216, + 1404, + 1216, + 1404, + 1279, + 291, + 1279 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1313, + 941, + 1313, + 941, + 1350, + 300, + 1350 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 6, + "poly": [ + 347, + 1741, + 1346, + 1741, + 1346, + 1776, + 347, + 1776 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.854 + }, + { + "category_id": 13, + "poly": [ + 380, + 1466, + 398, + 1466, + 398, + 1494, + 380, + 1494 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 354, + 1565, + 380, + 1565, + 380, + 1589, + 354, + 1589 + ], + "score": 0.79, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 759, + 1565, + 785, + 1565, + 785, + 1589, + 759, + 1589 + ], + "score": 0.76, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 795, + 1743, + 825, + 1743, + 825, + 1771, + 795, + 1771 + ], + "score": 0.74, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1379, + 1437, + 1397, + 1437, + 1397, + 1462, + 1379, + 1462 + ], + "score": 0.71, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 694, + 440, + 710, + 440, + 710, + 453, + 694, + 453 + ], + "score": 0.58, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1565, + 1073, + 1565, + 1073, + 1591, + 1001, + 1591 + ], + "score": 0.51, + "latex": "K \\in 5" + }, + { + "category_id": 13, + "poly": [ + 673, + 877, + 689, + 877, + 689, + 892, + 673, + 892 + ], + "score": 0.49, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 986, + 877, + 1002, + 877, + 1002, + 892, + 986, + 892 + ], + "score": 0.4, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 561, + 440, + 576, + 440, + 576, + 454, + 561, + 454 + ], + "score": 0.4, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 973, + 440, + 988, + 440, + 988, + 453, + 973, + 453 + ], + "score": 0.39, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1118, + 877, + 1134, + 877, + 1134, + 892, + 1118, + 892 + ], + "score": 0.37, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1564, + 1234, + 1564, + 1234, + 1593, + 1002, + 1593 + ], + "score": 0.29, + "latex": "\\bar { K } \\in { 5 , 1 0 , 2 0 , 5 0 , 1 0 0 }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 440, + 1122, + 440, + 1122, + 453, + 1108, + 453 + ], + "score": 0.28, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 874.0, + 672.0, + 874.0, + 672.0, + 895.0, + 492.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 874.0, + 798.0, + 874.0, + 798.0, + 895.0, + 690.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 874.0, + 985.0, + 874.0, + 985.0, + 895.0, + 937.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 874.0, + 1117.0, + 874.0, + 1117.0, + 895.0, + 1003.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 874.0, + 1210.0, + 874.0, + 1210.0, + 895.0, + 1135.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 885.0, + 448.0, + 885.0, + 448.0, + 903.0, + 432.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 896.0, + 671.0, + 896.0, + 671.0, + 907.0, + 658.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 885.0, + 877.0, + 885.0, + 877.0, + 903.0, + 861.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 915.0, + 556.0, + 915.0, + 556.0, + 925.0, + 540.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 922.0, + 446.0, + 922.0, + 446.0, + 936.0, + 434.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 920.0, + 1059.0, + 920.0, + 1059.0, + 929.0, + 1049.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 956.0, + 448.0, + 956.0, + 448.0, + 976.0, + 432.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 958.0, + 876.0, + 958.0, + 876.0, + 975.0, + 861.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 989.0, + 452.0, + 989.0, + 452.0, + 1018.0, + 409.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 993.0, + 876.0, + 993.0, + 876.0, + 1012.0, + 861.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1028.0, + 448.0, + 1028.0, + 448.0, + 1047.0, + 432.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1031.0, + 875.0, + 1031.0, + 875.0, + 1045.0, + 863.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1065.0, + 448.0, + 1065.0, + 448.0, + 1083.0, + 432.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1066.0, + 875.0, + 1066.0, + 875.0, + 1082.0, + 863.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1101.0, + 448.0, + 1101.0, + 448.0, + 1119.0, + 432.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1101.0, + 877.0, + 1101.0, + 877.0, + 1119.0, + 860.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1113.0, + 484.0, + 1113.0, + 484.0, + 1142.0, + 454.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1113.0, + 638.0, + 1113.0, + 638.0, + 1141.0, + 609.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1113.0, + 912.0, + 1113.0, + 912.0, + 1142.0, + 883.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1114.0, + 1066.0, + 1114.0, + 1066.0, + 1140.0, + 1039.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.25, + 1125.0, + 536.25, + 1125.0, + 536.25, + 1144.0, + 477.25, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.75, + 1125.0, + 575.75, + 1125.0, + 575.75, + 1144.0, + 516.75, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.25, + 1125.0, + 692.25, + 1125.0, + 692.25, + 1145.0, + 633.25, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.25, + 1125.0, + 731.25, + 1125.0, + 731.25, + 1143.5, + 673.25, + 1143.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1125.0, + 966.0, + 1125.0, + 966.0, + 1144.0, + 906.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1125.0, + 1003.0, + 1125.0, + 1003.0, + 1143.0, + 947.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1124.0, + 1122.0, + 1124.0, + 1122.0, + 1145.0, + 1061.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.25, + 1126.0, + 1158.25, + 1126.0, + 1158.25, + 1143.0, + 1104.25, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.75, + 1131.0, + 623.75, + 1131.0, + 623.75, + 1151.5, + 546.75, + 1151.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.25, + 1132.5, + 778.25, + 1132.5, + 778.25, + 1152.0, + 704.25, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1134.0, + 814.0, + 1134.0, + 814.0, + 1150.5, + 745.0, + 1150.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1132.5, + 1053.0, + 1132.5, + 1053.0, + 1152.0, + 976.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1132.5, + 1206.0, + 1132.5, + 1206.0, + 1151.0, + 1133.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1132.0, + 1246.0, + 1132.0, + 1246.0, + 1151.5, + 1172.0, + 1151.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1139.0, + 865.0, + 1139.0, + 865.0, + 1158.0, + 775.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1139.5, + 1292.0, + 1139.5, + 1292.0, + 1158.5, + 1204.0, + 1158.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 443.0, + 484.0, + 443.0, + 484.0, + 467.0, + 456.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 437.0, + 560.0, + 437.0, + 560.0, + 457.0, + 514.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 437.0, + 693.0, + 437.0, + 693.0, + 457.0, + 577.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 437.0, + 811.0, + 437.0, + 811.0, + 457.0, + 711.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 445.0, + 880.0, + 445.0, + 880.0, + 465.0, + 855.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 435.0, + 972.0, + 435.0, + 972.0, + 457.0, + 926.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 435.0, + 1107.0, + 435.0, + 1107.0, + 457.0, + 989.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 435.0, + 1195.0, + 435.0, + 1195.0, + 457.0, + 1123.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 463.0, + 1229.0, + 463.0, + 1229.0, + 472.0, + 1220.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 484.0, + 484.0, + 484.0, + 484.0, + 509.0, + 456.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 496.0, + 880.0, + 496.0, + 880.0, + 517.0, + 855.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 525.0, + 484.0, + 525.0, + 484.0, + 549.0, + 456.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 542.0, + 460.0, + 542.0, + 460.0, + 575.0, + 439.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 547.0, + 880.0, + 547.0, + 880.0, + 568.0, + 855.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 568.0, + 482.0, + 568.0, + 482.0, + 589.0, + 457.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 589.0, + 1192.0, + 589.0, + 1192.0, + 598.0, + 1183.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 607.0, + 484.0, + 607.0, + 484.0, + 630.0, + 456.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 596.0, + 881.0, + 596.0, + 881.0, + 621.0, + 854.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 612.0, + 1122.0, + 612.0, + 1122.0, + 624.0, + 1110.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 640.0, + 541.0, + 640.0, + 541.0, + 648.0, + 532.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 642.0, + 1121.0, + 642.0, + 1121.0, + 651.0, + 1111.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 642.0, + 1157.0, + 642.0, + 1157.0, + 654.0, + 1145.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 648.0, + 483.0, + 648.0, + 483.0, + 672.0, + 456.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 648.0, + 880.0, + 648.0, + 880.0, + 672.0, + 853.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 663.0, + 658.0, + 663.0, + 658.0, + 688.0, + 631.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 663.0, + 1054.0, + 663.0, + 1054.0, + 688.0, + 1028.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 666.0, + 521.0, + 666.0, + 521.0, + 685.5, + 479.0, + 685.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.25, + 667.0, + 915.25, + 667.0, + 915.25, + 684.0, + 879.25, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.25, + 674.5, + 563.25, + 674.5, + 563.25, + 692.0, + 510.25, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 673.5, + 600.0, + 673.5, + 600.0, + 692.5, + 545.0, + 692.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 672.0, + 709.0, + 672.0, + 709.0, + 692.5, + 652.0, + 692.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.25, + 671.5, + 746.25, + 671.5, + 746.25, + 692.5, + 688.25, + 692.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.75, + 673.5, + 962.75, + 673.5, + 962.75, + 693.5, + 904.75, + 693.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 671.0, + 999.0, + 671.0, + 999.0, + 692.5, + 941.0, + 692.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 672.0, + 1106.0, + 672.0, + 1106.0, + 692.5, + 1050.0, + 692.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 671.0, + 1143.0, + 671.0, + 1143.0, + 692.0, + 1086.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 679.5, + 646.0, + 679.5, + 646.0, + 699.5, + 573.0, + 699.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.75, + 679.5, + 787.75, + 679.5, + 787.75, + 699.5, + 718.75, + 699.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.75, + 680.0, + 822.75, + 680.0, + 822.75, + 700.0, + 753.75, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 679.0, + 1043.0, + 679.0, + 1043.0, + 700.0, + 970.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.25, + 679.5, + 1185.25, + 679.5, + 1185.25, + 699.5, + 1115.25, + 699.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.25, + 680.0, + 1220.25, + 680.0, + 1220.25, + 700.0, + 1151.25, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 686.5, + 867.0, + 686.5, + 867.0, + 704.0, + 785.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.75, + 687.5, + 1262.75, + 687.5, + 1262.75, + 705.0, + 1182.75, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 761.0, + 1405.0, + 761.0, + 1405.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 790.0, + 1128.0, + 790.0, + 1128.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 226.0, + 974.0, + 226.0, + 974.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 1405.0, + 1211.0, + 1405.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 719.0, + 1246.0, + 719.0, + 1282.0, + 293.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1310.0, + 945.0, + 1310.0, + 945.0, + 1356.0, + 291.0, + 1356.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": [ + 346.0, + 1738.0, + 794.0, + 1738.0, + 794.0, + 1780.0, + 346.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1738.0, + 1349.0, + 1738.0, + 1349.0, + 1780.0, + 826.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1381.0, + 1406.0, + 1381.0, + 1406.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1409.0, + 1406.0, + 1409.0, + 1406.0, + 1440.0, + 296.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1437.0, + 1378.0, + 1437.0, + 1378.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1437.0, + 1407.0, + 1437.0, + 1407.0, + 1469.0, + 1398.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1461.0, + 379.0, + 1461.0, + 379.0, + 1499.0, + 291.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1499.0, + 399.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 993.0, + 1490.0, + 993.0, + 1523.0, + 294.0, + 1523.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": [ + 296.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 353.0, + 296.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 349.0, + 1403.0, + 349.0, + 1403.0, + 382.0, + 295.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 375.0, + 652.0, + 375.0, + 652.0, + 409.0, + 295.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 353.0, + 1561.0, + 353.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1561.0, + 758.0, + 1561.0, + 758.0, + 1595.0, + 381.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1561.0, + 1000.0, + 1561.0, + 1000.0, + 1595.0, + 786.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1595.0, + 1235.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 537.0, + 1592.0, + 537.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1668.0, + 296.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1663.0, + 1403.0, + 1663.0, + 1403.0, + 1692.0, + 297.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1691.0, + 448.0, + 1691.0, + 448.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1108, + 1406, + 1108, + 1406, + 1415, + 297, + 1415 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 349, + 1406, + 349, + 1406, + 488, + 298, + 488 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 845, + 617, + 1424, + 617, + 1424, + 913, + 845, + 913 + ], + "score": 0.966, + "html": "
LAYERKERNEL OUTPUT
2 1128
Linear, BN, ReLUh/8×w/8× 512 1
Deconv, BN, ReLU [4,4,2]h/4 ×w/4 × 256
Deconv,BN,ReLU[4,4,2] h/2 × w/2 × 128
Deconv, BN, ReLU[4,4,2] h×w×64
Deconv, Tanh [3,3,1]h×w×3
" + }, + { + "category_id": 5, + "poly": [ + 313, + 581, + 827, + 581, + 827, + 996, + 313, + 996 + ], + "score": 0.958, + "html": "
(a) SNDCGANdiscriminator
LAYER KERNELOUTPUT
Conv, IReLU [3,3,1]h×w×64
Conv, IReLU [4,4,2]h/2 × w/2 × 128
Conv, IReLU [3,3,1]h/2 × w/2 × 128
Conv, lReLU [4,4,2]h/4 × w/4× 256
Conv, IReLU [3,3,1]h/4 × w/4 × 256
Conv, IReLU [4,4,2]h/8×w/8× 512
Conv, IReLU [3,3,1]h/8×w/8× 512
Linear 11
" + }, + { + "category_id": 0, + "poly": [ + 299, + 1053, + 668, + 1053, + 668, + 1084, + 299, + 1084 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 659, + 515, + 1038, + 515, + 1038, + 547, + 659, + 547 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 338, + 2006, + 842, + 2006, + 842, + 2034, + 338, + 2034 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 600, + 226, + 600, + 262, + 300, + 262 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 300, + 292, + 515, + 292, + 515, + 326, + 300, + 326 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.842 + }, + { + "category_id": 6, + "poly": [ + 992, + 574, + 1256, + 574, + 1256, + 604, + 992, + 604 + ], + "score": 0.783 + }, + { + "category_id": 6, + "poly": [ + 424, + 574, + 723, + 574, + 723, + 604, + 424, + 604 + ], + "score": 0.236 + }, + { + "category_id": 13, + "poly": [ + 499, + 878, + 575, + 878, + 575, + 905, + 499, + 905 + ], + "score": 0.91, + "latex": "[ 4 , 4 , 2 ]" + }, + { + "category_id": 13, + "poly": [ + 1216, + 880, + 1327, + 880, + 1327, + 901, + 1216, + 901 + ], + "score": 0.91, + "latex": "h \\times w \\times 3" + }, + { + "category_id": 13, + "poly": [ + 743, + 407, + 811, + 407, + 811, + 432, + 743, + 432 + ], + "score": 0.91, + "latex": "h \\times w" + }, + { + "category_id": 13, + "poly": [ + 622, + 836, + 809, + 836, + 809, + 862, + 622, + 862 + ], + "score": 0.91, + "latex": "h / 4 \\times w / 4 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 621, + 879, + 809, + 879, + 809, + 905, + 621, + 905 + ], + "score": 0.9, + "latex": "h / 8 \\times w / 8 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 856, + 434, + 965, + 434, + 965, + 460, + 856, + 460 + ], + "score": 0.9, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 1216, + 838, + 1340, + 838, + 1340, + 859, + 1216, + 859 + ], + "score": 0.9, + "latex": "h \\times w \\times 6 4" + }, + { + "category_id": 13, + "poly": [ + 766, + 435, + 831, + 435, + 831, + 459, + 766, + 459 + ], + "score": 0.89, + "latex": "h \\times w" + }, + { + "category_id": 13, + "poly": [ + 621, + 795, + 809, + 795, + 809, + 820, + 621, + 820 + ], + "score": 0.89, + "latex": "h / 4 \\times w / 4 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 297, + 461, + 383, + 461, + 383, + 488, + 297, + 488 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 621, + 711, + 809, + 711, + 809, + 738, + 621, + 738 + ], + "score": 0.89, + "latex": "h / 2 \\times w / 2 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 621, + 919, + 809, + 919, + 809, + 945, + 621, + 945 + ], + "score": 0.88, + "latex": "h / 8 \\times w / 8 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 1216, + 794, + 1405, + 794, + 1405, + 821, + 1216, + 821 + ], + "score": 0.87, + "latex": "h / 2 \\times w / 2 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 621, + 753, + 809, + 753, + 809, + 780, + 621, + 780 + ], + "score": 0.87, + "latex": "h / 2 \\times w / 2 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 947, + 1307, + 973, + 1307, + 973, + 1330, + 947, + 1330 + ], + "score": 0.85, + "latex": "c _ { o }" + }, + { + "category_id": 13, + "poly": [ + 879, + 1307, + 902, + 1307, + 902, + 1330, + 879, + 1330 + ], + "score": 0.84, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1215, + 753, + 1405, + 753, + 1405, + 780, + 1215, + 780 + ], + "score": 0.84, + "latex": "h / 4 \\times w / 4 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 499, + 794, + 575, + 794, + 575, + 821, + 499, + 821 + ], + "score": 0.83, + "latex": "[ 4 , 4 , 2 ]" + }, + { + "category_id": 13, + "poly": [ + 1215, + 709, + 1405, + 709, + 1405, + 738, + 1215, + 738 + ], + "score": 0.83, + "latex": "h / 8 \\times w / 8 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 1094, + 878, + 1170, + 878, + 1170, + 905, + 1094, + 905 + ], + "score": 0.8, + "latex": "[ 3 , 3 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1279, + 1144, + 1279, + 1144, + 1301, + 1121, + 1301 + ], + "score": 0.76, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 621, + 671, + 746, + 671, + 746, + 693, + 621, + 693 + ], + "score": 0.73, + "latex": "h \\times w \\times 6 4" + }, + { + "category_id": 13, + "poly": [ + 1016, + 406, + 1218, + 406, + 1218, + 432, + 1016, + 432 + ], + "score": 0.73, + "latex": "h \\times w \\times c h a n n e l s" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1277, + 1077, + 1277, + 1077, + 1301, + 1058, + 1301 + ], + "score": 0.72, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 499, + 711, + 575, + 711, + 575, + 738, + 499, + 738 + ], + "score": 0.55, + "latex": "[ 4 , 4 , 2 ]" + }, + { + "category_id": 13, + "poly": [ + 499, + 920, + 575, + 920, + 575, + 946, + 499, + 946 + ], + "score": 0.54, + "latex": "\\lfloor 3 , 3 , 1 \\rfloor" + }, + { + "category_id": 13, + "poly": [ + 499, + 837, + 575, + 837, + 575, + 862, + 499, + 862 + ], + "score": 0.51, + "latex": "\\lfloor 3 , 3 , 1 \\rfloor" + }, + { + "category_id": 13, + "poly": [ + 499, + 670, + 575, + 670, + 575, + 697, + 499, + 697 + ], + "score": 0.47, + "latex": "[ 3 , 3 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 499, + 753, + 575, + 753, + 575, + 780, + 499, + 780 + ], + "score": 0.39, + "latex": "[ 3 , 3 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 478, + 410, + 501, + 410, + 501, + 432, + 478, + 432 + ], + "score": 0.38, + "latex": "_ - w" + }, + { + "category_id": 13, + "poly": [ + 1094, + 837, + 1170, + 837, + 1170, + 862, + 1094, + 862 + ], + "score": 0.32, + "latex": "[ 4 , 4 , 2 ]" + }, + { + "category_id": 13, + "poly": [ + 1094, + 794, + 1170, + 794, + 1170, + 821, + 1094, + 821 + ], + "score": 0.29, + "latex": "[ 4 , 4 , 2 ]" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1050.0, + 672.0, + 1050.0, + 672.0, + 1089.0, + 296.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 511.0, + 1041.0, + 511.0, + 1041.0, + 551.0, + 656.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 2001.0, + 842.0, + 2001.0, + 842.0, + 2039.0, + 337.0, + 2039.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, + 224.0, + 604.0, + 224.0, + 604.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 519.0, + 289.0, + 519.0, + 333.0, + 294.0, + 333.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": [ + 992.0, + 571.0, + 1257.0, + 571.0, + 1257.0, + 609.0, + 992.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 572.0, + 726.0, + 572.0, + 726.0, + 605.0, + 423.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1108.0, + 1407.0, + 1108.0, + 1407.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 1408.0, + 1134.0, + 1408.0, + 1169.0, + 294.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1161.0, + 1408.0, + 1161.0, + 1408.0, + 1198.0, + 291.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1408.0, + 1193.0, + 1408.0, + 1225.0, + 295.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 1406.0, + 1217.0, + 1406.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1249.0, + 1403.0, + 1249.0, + 1403.0, + 1277.0, + 296.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1274.0, + 1057.0, + 1274.0, + 1057.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1274.0, + 1120.0, + 1274.0, + 1120.0, + 1307.0, + 1078.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1274.0, + 1404.0, + 1274.0, + 1404.0, + 1307.0, + 1145.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1302.0, + 878.0, + 1302.0, + 878.0, + 1334.0, + 295.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1302.0, + 946.0, + 1302.0, + 946.0, + 1334.0, + 903.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1302.0, + 1403.0, + 1302.0, + 1403.0, + 1334.0, + 974.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1329.0, + 1404.0, + 1329.0, + 1404.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1358.0, + 1404.0, + 1358.0, + 1404.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 1066.0, + 1381.0, + 1066.0, + 1421.0, + 292.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 348.0, + 1403.0, + 348.0, + 1403.0, + 379.0, + 295.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 375.0, + 1404.0, + 375.0, + 1404.0, + 407.0, + 293.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 405.0, + 477.0, + 405.0, + 477.0, + 436.0, + 297.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 405.0, + 742.0, + 405.0, + 742.0, + 436.0, + 502.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 405.0, + 1015.0, + 405.0, + 1015.0, + 436.0, + 812.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 405.0, + 1404.0, + 405.0, + 1404.0, + 436.0, + 1219.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 765.0, + 428.0, + 765.0, + 466.0, + 293.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 428.0, + 855.0, + 428.0, + 855.0, + 466.0, + 832.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 428.0, + 1408.0, + 428.0, + 1408.0, + 466.0, + 966.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 460.0, + 525.0, + 460.0, + 525.0, + 491.0, + 384.0, + 491.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 859, + 1372, + 1381, + 1372, + 1381, + 1750, + 859, + 1750 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
2-128
Linear--4×4×256
ResBlock[3,3,1]U8×8× 256
ResBlock[3,3,1]U16 × 16 × 256
ResBlock[3,3,1]U32 × 32 × 256
BN, ReLU1132 × 32× 256
Conv[3,3,1]-32 × 32 × 3
Sigmoid1-32 × 32 × 3
" + }, + { + "category_id": 5, + "poly": [ + 854, + 356, + 1388, + 356, + 1388, + 818, + 854, + 818 + ], + "score": 0.976, + "html": "
LAYERKERNELRSOUTPUT
21128
Linear-14×4× 512
ResBlock[3,3,1]U8×8×512
ResBlock[3,3,1]U16 × 16× 256
ResBlock[3,3,1]U32 × 32 × 256
ResBlock[3,3,1]U64 × 64 × 128
ResBlock[3,3,1]U128 × 128 × 64
BN,ReLU11128 × 128 × 64
Conv[3,3,1]1128 × 128× 3
Sigmoid--128 × 128 × 3
" + }, + { + "category_id": 5, + "poly": [ + 309, + 1372, + 833, + 1372, + 833, + 1667, + 309, + 1667 + ], + "score": 0.975, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1]D 16 × 16 × 128
ResBlock[3,3,1]D 8×8×128
ResBlock[3,3,1]8×8×128 -
ResBlock[3,3,1]- 8×8×128
ReLU, MP128 -
Linear-- 1
" + }, + { + "category_id": 5, + "poly": [ + 309, + 356, + 833, + 356, + 833, + 735, + 309, + 735 + ], + "score": 0.974, + "html": "
LAYERKERNELRS OUTPUT
ResBlock[3,3,1] D64 × 64× 64
ResBlock[3,3,1] D32 × 32 ×128
ResBlock[3,3,1] D16 ×16× 256
ResBlock[3,3,1] D8×8× 256
ResBlock[3,3,1] D4 ×4 × 512
ResBlock[3,3,1] D2 ×2× 512
ReLU, MP-512
Linear- -1
" + }, + { + "category_id": 5, + "poly": [ + 301, + 967, + 842, + 967, + 842, + 1222, + 301, + 1222 + ], + "score": 0.972, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]Dh/2 × w/2 × Co
BN,ReLU11hxwXCi
Conv[3,3,1]-h×w×co
BN,ReLU==h×w×co
Conv[3,3,1]Dh/2 × w/2 ×Co
Addition--h/2 × w/2 × Co
" + }, + { + "category_id": 5, + "poly": [ + 864, + 967, + 1379, + 967, + 1379, + 1222, + 864, + 1222 + ], + "score": 0.969, + "html": "
LAYERKERNELRSOUTPUT
Shortcut[3,3,1]U2h× 2w XCo
BN, ReLU1-h×wXCi
Conv BN, ReLU[3,3,1]U2h ×2w×Co
-12h × 2w ×Co
[3,3,1]12h ×2w×Co
Conv Addition--2h × 2w X Co
" + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 6, + "poly": [ + 663, + 865, + 1035, + 865, + 1035, + 897, + 663, + 897 + ], + "score": 0.91 + }, + { + "category_id": 6, + "poly": [ + 640, + 1269, + 1057, + 1269, + 1057, + 1301, + 640, + 1301 + ], + "score": 0.907 + }, + { + "category_id": 6, + "poly": [ + 977, + 1327, + 1270, + 1327, + 1270, + 1357, + 977, + 1357 + ], + "score": 0.864 + }, + { + "category_id": 6, + "poly": [ + 410, + 1327, + 739, + 1327, + 739, + 1357, + 410, + 1357 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.854 + }, + { + "category_id": 6, + "poly": [ + 1004, + 313, + 1245, + 313, + 1245, + 342, + 1004, + 342 + ], + "score": 0.838 + }, + { + "category_id": 6, + "poly": [ + 1005, + 925, + 1243, + 925, + 1243, + 954, + 1005, + 954 + ], + "score": 0.829 + }, + { + "category_id": 6, + "poly": [ + 436, + 924, + 712, + 924, + 712, + 954, + 436, + 954 + ], + "score": 0.763 + }, + { + "category_id": 6, + "poly": [ + 296, + 224, + 1406, + 224, + 1406, + 286, + 296, + 286 + ], + "score": 0.711 + }, + { + "category_id": 6, + "poly": [ + 436, + 313, + 712, + 313, + 712, + 341, + 436, + 341 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 436, + 313, + 712, + 313, + 712, + 341, + 436, + 341 + ], + "score": 0.13 + }, + { + "category_id": 13, + "poly": [ + 1203, + 620, + 1357, + 620, + 1357, + 640, + 1203, + 640 + ], + "score": 0.91, + "latex": "6 4 \\times 6 4 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1718, + 1337, + 1718, + 1337, + 1738, + 1210, + 1738 + ], + "score": 0.91, + "latex": "3 2 \\times 3 2 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1635, + 1363, + 1635, + 1363, + 1655, + 1210, + 1655 + ], + "score": 0.9, + "latex": "3 2 \\times 3 2 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 1209, + 1676, + 1337, + 1676, + 1337, + 1696, + 1209, + 1696 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1204, + 662, + 1370, + 662, + 1370, + 682, + 1204, + 682 + ], + "score": 0.88, + "latex": "1 2 8 \\times 1 2 8 \\times 6 4" + }, + { + "category_id": 13, + "poly": [ + 1203, + 703, + 1370, + 703, + 1370, + 723, + 1203, + 723 + ], + "score": 0.83, + "latex": "1 2 8 \\times 1 2 8 \\times 6 4" + }, + { + "category_id": 13, + "poly": [ + 1203, + 578, + 1357, + 578, + 1357, + 598, + 1203, + 598 + ], + "score": 0.82, + "latex": "3 2 \\times 3 2 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 660, + 578, + 789, + 578, + 789, + 598, + 660, + 598 + ], + "score": 0.58, + "latex": "4 \\times 4 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 1202, + 742, + 1358, + 742, + 1358, + 765, + 1202, + 765 + ], + "score": 0.53, + "latex": "1 2 8 \\times 1 2 8 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 660, + 620, + 789, + 620, + 789, + 640, + 660, + 640 + ], + "score": 0.5, + "latex": "2 \\times 2 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1591, + 1363, + 1591, + 1363, + 1613, + 1210, + 1613 + ], + "score": 0.49, + "latex": "3 2 \\times 3 2 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 1203, + 779, + 1358, + 779, + 1358, + 807, + 1203, + 807 + ], + "score": 0.49, + "latex": "1 2 8 \\times 1 2 8 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1202, + 535, + 1358, + 535, + 1358, + 557, + 1202, + 557 + ], + "score": 0.49, + "latex": "1 6 \\times 1 6 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 650, + 1182, + 822, + 1182, + 822, + 1214, + 650, + 1214 + ], + "score": 0.48, + "latex": "h / 2 \\times w / 2 \\times c _ { o }" + }, + { + "category_id": 13, + "poly": [ + 660, + 537, + 789, + 537, + 789, + 557, + 660, + 557 + ], + "score": 0.4, + "latex": "8 \\times 8 \\times 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 471, + 617, + 548, + 617, + 548, + 644, + 471, + 644 + ], + "score": 0.27, + "latex": "[ 3 , 3 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1545, + 1364, + 1545, + 1364, + 1573, + 1208, + 1573 + ], + "score": 0.26, + "latex": "1 6 \\times 1 6 \\times 2 5 6" + }, + { + "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": [ + 660.0, + 861.0, + 1037.0, + 861.0, + 1037.0, + 900.0, + 660.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1265.0, + 1059.0, + 1265.0, + 1059.0, + 1305.0, + 640.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1325.0, + 1274.0, + 1325.0, + 1274.0, + 1361.0, + 975.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1326.0, + 741.0, + 1326.0, + 741.0, + 1358.0, + 407.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 309.0, + 1247.0, + 309.0, + 1247.0, + 346.0, + 1002.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 921.0, + 1246.0, + 921.0, + 1246.0, + 958.0, + 1003.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 924.0, + 714.0, + 924.0, + 714.0, + 955.0, + 436.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 218.0, + 1406.0, + 218.0, + 1406.0, + 260.0, + 291.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 254.0, + 827.0, + 254.0, + 827.0, + 289.0, + 294.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 311.0, + 715.0, + 311.0, + 715.0, + 343.0, + 434.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 311.0, + 715.0, + 311.0, + 715.0, + 343.0, + 434.0, + 343.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1655, + 1404, + 1655, + 1404, + 1961, + 297, + 1961 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 984, + 1404, + 984, + 1404, + 1097, + 299, + 1097 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 294, + 1406, + 294, + 1406, + 407, + 299, + 407 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 368, + 435, + 1405, + 435, + 1405, + 956, + 368, + 956 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 406, + 1128, + 1293, + 1128, + 1293, + 1431, + 406, + 1431 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 300, + 1459, + 1404, + 1459, + 1404, + 1522, + 300, + 1522 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1977, + 1401, + 1977, + 1401, + 2034, + 297, + 2034 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 297, + 226, + 979, + 226, + 979, + 262, + 297, + 262 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 0, + "poly": [ + 299, + 1591, + 1011, + 1591, + 1011, + 1623, + 299, + 1623 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 781, + 576, + 806, + 576, + 806, + 600, + 781, + 600 + ], + "score": 0.86, + "latex": "c _ { o }" + }, + { + "category_id": 13, + "poly": [ + 1035, + 576, + 1058, + 576, + 1058, + 600, + 1035, + 600 + ], + "score": 0.86, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 871, + 644, + 897, + 644, + 897, + 668, + 871, + 668 + ], + "score": 0.84, + "latex": "c _ { o }" + }, + { + "category_id": 13, + "poly": [ + 549, + 713, + 572, + 713, + 572, + 736, + 549, + 736 + ], + "score": 0.84, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1004, + 644, + 1026, + 644, + 1026, + 668, + 1004, + 668 + ], + "score": 0.83, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 497, + 549, + 520, + 549, + 520, + 572, + 497, + 572 + ], + "score": 0.83, + "latex": "c _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1311, + 550, + 1336, + 550, + 1336, + 572, + 1311, + 572 + ], + "score": 0.82, + "latex": "c _ { o }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1135, + 701, + 1135, + 701, + 1151, + 683, + 1151 + ], + "score": 0.63, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 981, + 1135, + 998, + 1135, + 998, + 1151, + 981, + 1151 + ], + "score": 0.56, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 1127, + 1135, + 1144, + 1135, + 1144, + 1151, + 1127, + 1151 + ], + "score": 0.46, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 675, + 858, + 749, + 858, + 749, + 884, + 675, + 884 + ], + "score": 0.41, + "latex": "\\mathrm { 2 e - 5 }" + }, + { + "category_id": 13, + "poly": [ + 527, + 1135, + 544, + 1135, + 544, + 1151, + 527, + 1151 + ], + "score": 0.4, + "latex": "=" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1139.0, + 458.0, + 1139.0, + 458.0, + 1167.0, + 426.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1132.0, + 526.0, + 1132.0, + 526.0, + 1155.0, + 473.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1132.0, + 682.0, + 1132.0, + 682.0, + 1155.0, + 545.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1132.0, + 820.0, + 1132.0, + 820.0, + 1155.0, + 702.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1141.0, + 907.0, + 1141.0, + 907.0, + 1165.0, + 873.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1129.0, + 980.0, + 1129.0, + 980.0, + 1156.0, + 928.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1129.0, + 1126.0, + 1129.0, + 1126.0, + 1156.0, + 999.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1129.0, + 1265.0, + 1129.0, + 1265.0, + 1156.0, + 1145.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1175.0, + 457.0, + 1175.0, + 457.0, + 1205.0, + 425.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1184.0, + 907.0, + 1184.0, + 907.0, + 1208.0, + 874.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1212.0, + 456.0, + 1212.0, + 456.0, + 1239.0, + 427.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1228.0, + 906.0, + 1228.0, + 906.0, + 1252.0, + 874.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1245.0, + 456.0, + 1245.0, + 456.0, + 1282.0, + 407.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1251.0, + 878.0, + 1251.0, + 878.0, + 1273.0, + 856.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1272.0, + 906.0, + 1272.0, + 906.0, + 1295.0, + 874.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1286.0, + 456.0, + 1286.0, + 456.0, + 1311.0, + 428.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1320.0, + 457.0, + 1320.0, + 457.0, + 1350.0, + 426.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1316.0, + 906.0, + 1316.0, + 906.0, + 1340.0, + 874.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1356.0, + 457.0, + 1356.0, + 457.0, + 1385.0, + 426.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1359.0, + 907.0, + 1359.0, + 907.0, + 1383.0, + 874.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1378.0, + 831.0, + 1378.0, + 831.0, + 1404.0, + 802.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1182.5, + 1141.0, + 1182.5, + 1141.0, + 1192.5, + 1135.0, + 1192.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1380.0, + 797.0, + 1380.0, + 797.0, + 1404.5, + 748.0, + 1404.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1380.5, + 1203.0, + 1380.5, + 1203.0, + 1404.5, + 1153.0, + 1404.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.25, + 1377.5, + 1244.25, + 1377.5, + 1244.25, + 1406.5, + 1196.25, + 1406.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1378.0, + 1283.0, + 1378.0, + 1283.0, + 1402.5, + 1244.0, + 1402.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1385.5, + 537.0, + 1385.5, + 537.0, + 1401.5, + 496.0, + 1401.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1385.0, + 580.0, + 1385.0, + 580.0, + 1400.5, + 536.0, + 1400.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.25, + 1382.0, + 624.25, + 1382.0, + 624.25, + 1401.0, + 580.25, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.25, + 1384.5, + 712.25, + 1384.5, + 712.25, + 1403.5, + 663.25, + 1403.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1382.0, + 754.0, + 1382.0, + 754.0, + 1404.5, + 705.0, + 1404.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.75, + 1386.0, + 988.75, + 1386.0, + 988.75, + 1402.0, + 944.75, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1385.0, + 1029.0, + 1385.0, + 1029.0, + 1400.5, + 988.0, + 1400.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1382.0, + 1074.0, + 1382.0, + 1074.0, + 1401.0, + 1028.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.75, + 1384.0, + 1159.75, + 1384.0, + 1159.75, + 1403.0, + 1111.75, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.25, + 1393.0, + 509.25, + 1393.0, + 509.25, + 1410.5, + 442.25, + 1410.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1392.0, + 678.0, + 1392.0, + 678.0, + 1411.0, + 613.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1393.0, + 960.0, + 1393.0, + 960.0, + 1411.0, + 894.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1392.5, + 1127.0, + 1392.5, + 1127.0, + 1412.5, + 1061.0, + 1412.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 1404.0, + 1459.0, + 1404.0, + 1494.0, + 295.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 422.0, + 1491.0, + 422.0, + 1524.0, + 294.0, + 1524.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, + 223.0, + 984.0, + 223.0, + 984.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 1013.0, + 1588.0, + 1013.0, + 1631.0, + 293.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 1406.0, + 1657.0, + 1406.0, + 1689.0, + 295.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1715.0, + 293.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1709.0, + 1410.0, + 1709.0, + 1410.0, + 1746.0, + 291.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1405.0, + 1739.0, + 1405.0, + 1771.0, + 294.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1766.0, + 1405.0, + 1766.0, + 1405.0, + 1798.0, + 295.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1793.0, + 1407.0, + 1793.0, + 1407.0, + 1827.0, + 292.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1822.0, + 1406.0, + 1822.0, + 1406.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1880.0, + 292.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1874.0, + 1406.0, + 1874.0, + 1406.0, + 1912.0, + 291.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1906.0, + 1405.0, + 1906.0, + 1405.0, + 1936.0, + 292.0, + 1936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1932.0, + 881.0, + 1932.0, + 881.0, + 1964.0, + 293.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 1403.0, + 983.0, + 1403.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1043.0, + 294.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1040.0, + 1403.0, + 1040.0, + 1403.0, + 1070.0, + 297.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1067.0, + 1232.0, + 1067.0, + 1232.0, + 1100.0, + 295.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1411.0, + 291.0, + 1411.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 354.0, + 297.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 348.0, + 1406.0, + 348.0, + 1406.0, + 381.0, + 293.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 373.0, + 845.0, + 373.0, + 845.0, + 410.0, + 293.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 433.0, + 1382.0, + 433.0, + 1382.0, + 470.0, + 367.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 509.0, + 368.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 506.0, + 692.0, + 506.0, + 692.0, + 534.0, + 393.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 546.0, + 496.0, + 546.0, + 496.0, + 577.0, + 384.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 546.0, + 1310.0, + 546.0, + 1310.0, + 577.0, + 521.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 546.0, + 1405.0, + 546.0, + 1405.0, + 577.0, + 1337.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 574.0, + 780.0, + 574.0, + 780.0, + 603.0, + 393.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 574.0, + 1034.0, + 574.0, + 1034.0, + 603.0, + 807.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 574.0, + 1180.0, + 574.0, + 1180.0, + 603.0, + 1059.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 614.0, + 1405.0, + 614.0, + 1405.0, + 645.0, + 391.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 642.0, + 870.0, + 642.0, + 870.0, + 670.0, + 393.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 642.0, + 1003.0, + 642.0, + 1003.0, + 670.0, + 898.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 642.0, + 1164.0, + 642.0, + 1164.0, + 670.0, + 1027.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 680.0, + 1402.0, + 680.0, + 1402.0, + 713.0, + 382.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 708.0, + 548.0, + 708.0, + 548.0, + 739.0, + 394.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 708.0, + 890.0, + 708.0, + 890.0, + 739.0, + 573.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 748.0, + 1231.0, + 748.0, + 1231.0, + 779.0, + 367.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 789.0, + 1406.0, + 789.0, + 1406.0, + 823.0, + 370.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 817.0, + 892.0, + 817.0, + 892.0, + 851.0, + 394.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 854.0, + 674.0, + 854.0, + 674.0, + 890.0, + 381.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 854.0, + 1405.0, + 854.0, + 1405.0, + 890.0, + 750.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 882.0, + 524.0, + 882.0, + 524.0, + 915.0, + 394.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 926.0, + 868.0, + 926.0, + 868.0, + 956.0, + 369.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1361.0, + 2002.0, + 1361.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 294, + 281, + 1409, + 281, + 1409, + 920, + 294, + 920 + ], + "score": 0.984, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1βndiscNORM
CIFAR1029.7528.660.1000.5000.999111
CIFAR1036.1233.230.2000.5000.9991==
CELEBA-HQ-12866.4263.130.1000.5000.99911
CELEBA-HQ-12867.3964.590.2000.5000.9991==
LSUN-BEDROOM180.36160.120.2000.5000.99911
LSUN-BEDROOM188.99162.000.1000.5000.99911
CIFAR1026.6625.270.2000.5000.9991SN
CIFAR1027.3226.970.1000.5000.9991SN
CELEBA-HQ-12831.1429.050.2000.5000.9991=SN
CELEBA-HQ-12833.5231.920.1000.5000.9991SN
LSUN-BEDROOM63.4658.130.2000.5000.9991SN
LSUN-BEDROOM74.6659.941.0000.5000.9991-SN
CIFAR1026.2326.010.2000.5000.99911SN+GP
CIFAR1026.6625.270.2000.5000.99911SN
CELEBA-HQ-12831.1330.800.1000.5000.999110GP
CELEBA-HQ-12831.1429.050.2000.5000.99911SN
LSUN-BEDROOM63.4658.130.2000.5000.9991=SN
LSUN-BEDROOM66.5865.750.2000.5000.999110GP
" + }, + { + "category_id": 5, + "poly": [ + 295, + 1010, + 1413, + 1010, + 1413, + 1467, + 295, + 1467 + ], + "score": 0.982, + "html": "
DATA SETMEDIANBESTLR(×10-3)βndiscNORM
CELEBA-HQ-12843.7339.100.1000.5000.9995
CELEBA-HQ-12843.7739.600.1000.5000.9991=-
LSUN-BEDROOM160.97119.580.1000.5000.9005
LSUN-BEDROOM161.70125.550.1000.5000.9005=1
CELEBA-HQ-12832.4628.520.1000.5000.9991=LN
CELEBA-HQ-12840.5836.370.2000.5000.9001LN
LSUN-BEDROOM70.3048.881.0000.5000.9991SN
LSUN-BEDROOM73.8460.540.1000.5000.9005-SN
CELEBA-HQ-12829.13=0.1000.5000.90051LN+DR
CELEBA-HQ-12829.650.2000.5000.90051GP
LSUN-BEDROOM55.720.2000.5000.90051LN+GP
LSUN-BEDROOM57.810.1000.5000.999110SN+GP
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1784, + 1404, + 1784, + 1404, + 1896, + 298, + 1896 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1404, + 1589, + 1404, + 1674, + 298, + 1674 + ], + "score": 0.975 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 301, + 1717, + 737, + 1717, + 737, + 1753, + 301, + 1753 + ], + "score": 0.911 + }, + { + "category_id": 6, + "poly": [ + 666, + 224, + 1033, + 224, + 1033, + 257, + 666, + 257 + ], + "score": 0.911 + }, + { + "category_id": 6, + "poly": [ + 680, + 952, + 1019, + 952, + 1019, + 984, + 680, + 984 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 300, + 1522, + 919, + 1522, + 919, + 1558, + 300, + 1558 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 13, + "poly": [ + 1082, + 1810, + 1246, + 1810, + 1246, + 1839, + 1082, + 1839 + ], + "score": 0.91, + "latex": "1 1 \\times 2 ^ { 4 } = 1 7 6" + }, + { + "category_id": 13, + "poly": [ + 665, + 1840, + 776, + 1840, + 776, + 1867, + 665, + 1867 + ], + "score": 0.9, + "latex": "1 2 8 \\times 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 838, + 1619, + 895, + 1619, + 895, + 1646, + 838, + 1646 + ], + "score": 0.81, + "latex": "n _ { d i s c }" + }, + { + "category_id": 13, + "poly": [ + 800, + 1619, + 829, + 1619, + 829, + 1647, + 800, + 1647 + ], + "score": 0.81, + "latex": "\\beta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 762, + 1618, + 791, + 1618, + 791, + 1647, + 762, + 1647 + ], + "score": 0.81, + "latex": "\\beta _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 948, + 1619, + 966, + 1619, + 966, + 1643, + 948, + 1643 + ], + "score": 0.74, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 70.0, + 859.0, + 70.0, + 859.0, + 109.0, + 296.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1714.0, + 742.0, + 1714.0, + 742.0, + 1757.0, + 295.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 220.0, + 1034.0, + 220.0, + 1034.0, + 264.0, + 664.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 947.0, + 1023.0, + 947.0, + 1023.0, + 990.0, + 676.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1519.0, + 923.0, + 1519.0, + 923.0, + 1562.0, + 292.0, + 1562.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, + 1783.0, + 1405.0, + 1783.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1812.0, + 1081.0, + 1812.0, + 1081.0, + 1841.0, + 296.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1812.0, + 1404.0, + 1812.0, + 1404.0, + 1841.0, + 1247.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1839.0, + 664.0, + 1839.0, + 664.0, + 1868.0, + 297.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1839.0, + 1402.0, + 1839.0, + 1402.0, + 1868.0, + 777.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1866.0, + 1147.0, + 1866.0, + 1147.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1586.0, + 1404.0, + 1586.0, + 1404.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1615.0, + 761.0, + 1615.0, + 761.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1615.0, + 799.0, + 1615.0, + 799.0, + 1650.0, + 792.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1615.0, + 837.0, + 1615.0, + 837.0, + 1650.0, + 830.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1615.0, + 947.0, + 1615.0, + 947.0, + 1650.0, + 896.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1650.0, + 967.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1642.0, + 429.0, + 1642.0, + 429.0, + 1678.0, + 294.0, + 1678.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 341, + 286, + 1350, + 286, + 1350, + 560, + 341, + 560 + ], + "score": 0.98, + "html": "
DATA SETMEDIANBESTLR(×10-3)β1ndiscNORM
CIFAR1031.4028.120.2000.5000.9995==
CIFAR1033.7930.080.1000.5000.9995=1
CIFAR1023.5722.910.2000.5000.9995=SN
CIFAR1025.5024.210.1000.5000.99951SN
CIFAR1022.9822.730.2000.5000.99911SN+GP
CIFAR1023.5722.910.2000.5000.9995-SN
" + }, + { + "category_id": 3, + "poly": [ + 312, + 1076, + 1388, + 1076, + 1388, + 1476, + 312, + 1476 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 312, + 1563, + 1387, + 1563, + 1387, + 1964, + 312, + 1964 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 313, + 588, + 1387, + 588, + 1387, + 989, + 313, + 989 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 456, + 1500, + 1239, + 1500, + 1239, + 1534, + 456, + 1534 + ], + "score": 0.932 + }, + { + "category_id": 4, + "poly": [ + 495, + 1988, + 1202, + 1988, + 1202, + 2022, + 495, + 2022 + ], + "score": 0.929 + }, + { + "category_id": 4, + "poly": [ + 452, + 1013, + 1241, + 1013, + 1241, + 1047, + 452, + 1047 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.916 + }, + { + "category_id": 6, + "poly": [ + 650, + 229, + 1049, + 229, + 1049, + 262, + 650, + 262 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 13, + "poly": [ + 1166, + 956, + 1284, + 956, + 1284, + 988, + 1166, + 988 + ], + "score": 0.51, + "latex": "\\mathrm { F I D } = 4 5 . 2" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1931, + 1284, + 1931, + 1284, + 1963, + 1166, + 1963 + ], + "score": 0.4, + "latex": "\\mathrm { F I D } = 4 2 . 6" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1443, + 1284, + 1443, + 1284, + 1475, + 1166, + 1475 + ], + "score": 0.39, + "latex": "\\mathrm { F I D } = 8 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 806, + 956, + 926, + 956, + 926, + 988, + 806, + 988 + ], + "score": 0.31, + "latex": "\\mathrm { F I D } = 3 4 . 6" + }, + { + "category_id": 13, + "poly": [ + 448, + 1932, + 565, + 1932, + 565, + 1963, + 448, + 1963 + ], + "score": 0.29, + "latex": "\\mathrm { F I D } = 2 2 . 7" + }, + { + "category_id": 13, + "poly": [ + 803, + 1443, + 926, + 1443, + 926, + 1475, + 803, + 1475 + ], + "score": 0.27, + "latex": "\\mathrm { | \\ F I D = 6 0 . 7 }" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1441.0, + 570.0, + 1441.0, + 570.0, + 1478.0, + 410.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1441.0, + 802.0, + 1441.0, + 802.0, + 1476.0, + 769.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1441.0, + 1165.0, + 1441.0, + 1165.0, + 1478.0, + 1128.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1441.0, + 1288.0, + 1441.0, + 1288.0, + 1478.0, + 1285.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1830.0, + 624.0, + 1830.0, + 624.0, + 1865.0, + 575.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1928.0, + 447.0, + 1928.0, + 447.0, + 1967.0, + 408.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1928.0, + 570.0, + 1928.0, + 570.0, + 1967.0, + 566.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1929.0, + 930.0, + 1929.0, + 930.0, + 1967.0, + 769.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1928.0, + 1165.0, + 1928.0, + 1165.0, + 1967.0, + 1127.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1928.0, + 1288.0, + 1928.0, + 1288.0, + 1967.0, + 1285.0, + 1967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 591.0, + 855.0, + 591.0, + 855.0, + 638.0, + 315.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 605.0, + 1365.0, + 605.0, + 1365.0, + 625.0, + 1311.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 695.0, + 1058.0, + 695.0, + 1058.0, + 704.0, + 1043.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 698.0, + 1019.0, + 698.0, + 1019.0, + 711.0, + 1009.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 720.0, + 863.0, + 720.0, + 863.0, + 770.0, + 575.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 733.0, + 1022.0, + 733.0, + 1022.0, + 758.0, + 983.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 767.0, + 1224.0, + 767.0, + 1224.0, + 815.0, + 596.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 821.0, + 722.0, + 821.0, + 722.0, + 852.0, + 678.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 828.0, + 658.0, + 828.0, + 658.0, + 841.0, + 641.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 867.0, + 488.0, + 867.0, + 488.0, + 894.0, + 401.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 862.0, + 1055.0, + 862.0, + 1055.0, + 894.0, + 950.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 904.0, + 533.0, + 904.0, + 533.0, + 940.0, + 417.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 907.0, + 715.0, + 907.0, + 715.0, + 938.0, + 625.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 898.0, + 1205.0, + 898.0, + 1205.0, + 945.0, + 922.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 910.0, + 1373.0, + 910.0, + 1373.0, + 937.0, + 1337.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 953.0, + 571.0, + 953.0, + 571.0, + 993.0, + 408.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 951.0, + 805.0, + 951.0, + 805.0, + 994.0, + 769.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 951.0, + 932.0, + 951.0, + 932.0, + 994.0, + 927.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 950.0, + 1165.0, + 950.0, + 1165.0, + 993.0, + 1125.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 950.0, + 1291.0, + 950.0, + 1291.0, + 993.0, + 1285.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 907.5, + 1345.0, + 907.5, + 1345.0, + 936.5, + 1298.0, + 936.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1498.0, + 1243.0, + 1498.0, + 1243.0, + 1538.0, + 456.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1986.0, + 1203.0, + 1986.0, + 1203.0, + 2026.0, + 495.0, + 2026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1011.0, + 1242.0, + 1011.0, + 1242.0, + 1051.0, + 456.0, + 1051.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": [ + 647.0, + 225.0, + 1051.0, + 225.0, + 1051.0, + 268.0, + 647.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 105, + 297, + 105 + ], + "score": 0.911 + }, + { + "category_id": 4, + "poly": [ + 349, + 1869, + 1345, + 1869, + 1345, + 1903, + 349, + 1903 + ], + "score": 0.908 + }, + { + "category_id": 3, + "poly": [ + 294, + 1597, + 1407, + 1597, + 1407, + 1846, + 294, + 1846 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2112, + 835, + 2112 + ], + "score": 0.86 + }, + { + "category_id": 4, + "poly": [ + 594, + 818, + 1101, + 818, + 1101, + 846, + 594, + 846 + ], + "score": 0.816 + }, + { + "category_id": 4, + "poly": [ + 607, + 1566, + 1091, + 1566, + 1091, + 1593, + 607, + 1593 + ], + "score": 0.809 + }, + { + "category_id": 4, + "poly": [ + 621, + 1318, + 1075, + 1318, + 1075, + 1346, + 621, + 1346 + ], + "score": 0.784 + }, + { + "category_id": 3, + "poly": [ + 294, + 1348, + 1406, + 1348, + 1406, + 1554, + 294, + 1554 + ], + "score": 0.747 + }, + { + "category_id": 3, + "poly": [ + 294, + 849, + 1406, + 849, + 1406, + 1055, + 294, + 1055 + ], + "score": 0.73 + }, + { + "category_id": 3, + "poly": [ + 292, + 345, + 1406, + 345, + 1406, + 559, + 292, + 559 + ], + "score": 0.728 + }, + { + "category_id": 3, + "poly": [ + 293, + 1098, + 1404, + 1098, + 1404, + 1307, + 293, + 1307 + ], + "score": 0.719 + }, + { + "category_id": 4, + "poly": [ + 595, + 1067, + 1101, + 1067, + 1101, + 1094, + 595, + 1094 + ], + "score": 0.652 + }, + { + "category_id": 3, + "poly": [ + 295, + 600, + 1407, + 600, + 1407, + 807, + 295, + 807 + ], + "score": 0.604 + }, + { + "category_id": 4, + "poly": [ + 638, + 569, + 1061, + 569, + 1061, + 596, + 638, + 596 + ], + "score": 0.575 + }, + { + "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": [ + 349.0, + 1867.0, + 1348.0, + 1867.0, + 1348.0, + 1906.0, + 349.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1603.0, + 338.0, + 1603.0, + 338.0, + 1620.0, + 303.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1605.0, + 552.0, + 1605.0, + 552.0, + 1617.0, + 527.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1603.0, + 781.0, + 1603.0, + 781.0, + 1618.0, + 748.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1605.0, + 995.0, + 1605.0, + 995.0, + 1617.0, + 972.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1605.0, + 1214.0, + 1605.0, + 1214.0, + 1617.0, + 1193.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1621.0, + 338.0, + 1621.0, + 338.0, + 1637.0, + 303.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1622.0, + 556.0, + 1622.0, + 556.0, + 1635.0, + 527.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1621.0, + 781.0, + 1621.0, + 781.0, + 1637.0, + 748.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1622.0, + 997.0, + 1622.0, + 997.0, + 1634.0, + 972.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1622.0, + 1219.0, + 1622.0, + 1219.0, + 1635.0, + 1193.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1639.0, + 338.0, + 1639.0, + 338.0, + 1655.0, + 303.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1639.0, + 557.0, + 1639.0, + 557.0, + 1655.0, + 525.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1639.0, + 781.0, + 1639.0, + 781.0, + 1655.0, + 748.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1640.0, + 998.0, + 1640.0, + 998.0, + 1652.0, + 971.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1638.0, + 1221.0, + 1638.0, + 1221.0, + 1655.0, + 1190.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1656.0, + 338.0, + 1656.0, + 338.0, + 1673.0, + 303.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1656.0, + 557.0, + 1656.0, + 557.0, + 1673.0, + 525.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1656.0, + 781.0, + 1656.0, + 781.0, + 1672.0, + 747.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1656.0, + 1222.0, + 1656.0, + 1222.0, + 1673.0, + 1190.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1674.0, + 338.0, + 1674.0, + 338.0, + 1690.0, + 300.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1674.0, + 557.0, + 1674.0, + 557.0, + 1691.0, + 522.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1674.0, + 781.0, + 1674.0, + 781.0, + 1690.0, + 744.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1674.0, + 1002.0, + 1674.0, + 1002.0, + 1690.0, + 965.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1674.0, + 1222.0, + 1674.0, + 1222.0, + 1690.0, + 1188.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1692.0, + 336.0, + 1692.0, + 336.0, + 1709.0, + 298.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1692.0, + 557.0, + 1692.0, + 557.0, + 1709.0, + 519.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1692.0, + 781.0, + 1692.0, + 781.0, + 1709.0, + 742.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1692.0, + 1002.0, + 1692.0, + 1002.0, + 1709.0, + 964.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1692.0, + 1219.0, + 1692.0, + 1219.0, + 1709.0, + 1185.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1709.0, + 335.0, + 1709.0, + 335.0, + 1726.0, + 297.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1711.0, + 557.0, + 1711.0, + 557.0, + 1726.0, + 519.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1711.0, + 781.0, + 1711.0, + 781.0, + 1726.0, + 742.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1711.0, + 1002.0, + 1711.0, + 1002.0, + 1726.0, + 964.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1711.0, + 1221.0, + 1711.0, + 1221.0, + 1726.0, + 1185.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1729.0, + 335.0, + 1729.0, + 335.0, + 1745.0, + 297.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1730.0, + 556.0, + 1730.0, + 556.0, + 1742.0, + 521.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1730.0, + 778.0, + 1730.0, + 778.0, + 1742.0, + 743.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1729.0, + 1002.0, + 1729.0, + 1002.0, + 1745.0, + 964.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1730.0, + 1219.0, + 1730.0, + 1219.0, + 1742.0, + 1188.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1746.0, + 335.0, + 1746.0, + 335.0, + 1763.0, + 297.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1747.0, + 557.0, + 1747.0, + 557.0, + 1763.0, + 521.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1747.0, + 780.0, + 1747.0, + 780.0, + 1763.0, + 742.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1746.0, + 1002.0, + 1746.0, + 1002.0, + 1763.0, + 964.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1747.0, + 1219.0, + 1747.0, + 1219.0, + 1763.0, + 1187.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1764.0, + 335.0, + 1764.0, + 335.0, + 1780.0, + 297.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1764.0, + 557.0, + 1764.0, + 557.0, + 1780.0, + 521.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1764.0, + 780.0, + 1764.0, + 780.0, + 1780.0, + 742.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1764.0, + 1002.0, + 1764.0, + 1002.0, + 1780.0, + 963.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1764.0, + 1219.0, + 1764.0, + 1219.0, + 1780.0, + 1185.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1778.0, + 480.0, + 1778.0, + 480.0, + 1801.0, + 348.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1785.0, + 647.0, + 1785.0, + 647.0, + 1801.0, + 612.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1778.0, + 703.0, + 1778.0, + 703.0, + 1791.0, + 648.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1778.0, + 895.0, + 1778.0, + 895.0, + 1803.0, + 780.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1785.0, + 1094.0, + 1785.0, + 1094.0, + 1801.0, + 1054.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1779.0, + 1326.0, + 1779.0, + 1326.0, + 1803.0, + 1272.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1781.0, + 1361.0, + 1781.0, + 1361.0, + 1789.0, + 1343.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1812.0, + 1093.0, + 1812.0, + 1093.0, + 1846.0, + 608.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1655.0, + 1001.0, + 1655.0, + 1001.0, + 1672.0, + 969.0, + 1672.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": [ + 594.0, + 816.0, + 1105.0, + 816.0, + 1105.0, + 851.0, + 594.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 1563.0, + 1093.0, + 1563.0, + 1093.0, + 1597.0, + 606.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1316.0, + 1077.0, + 1316.0, + 1077.0, + 1350.0, + 622.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1353.0, + 337.0, + 1353.0, + 337.0, + 1370.0, + 303.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1355.0, + 550.0, + 1355.0, + 550.0, + 1367.0, + 528.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1355.0, + 779.0, + 1355.0, + 779.0, + 1367.0, + 750.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1357.0, + 989.0, + 1357.0, + 989.0, + 1366.0, + 974.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1372.0, + 337.0, + 1372.0, + 337.0, + 1388.0, + 303.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1373.0, + 556.0, + 1373.0, + 556.0, + 1386.0, + 527.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1372.0, + 781.0, + 1372.0, + 781.0, + 1388.0, + 748.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1373.0, + 996.0, + 1373.0, + 996.0, + 1386.0, + 971.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1373.0, + 1219.0, + 1373.0, + 1219.0, + 1386.0, + 1193.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1390.0, + 337.0, + 1390.0, + 337.0, + 1406.0, + 303.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1390.0, + 557.0, + 1390.0, + 557.0, + 1406.0, + 524.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1391.0, + 779.0, + 1391.0, + 779.0, + 1403.0, + 749.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1390.0, + 1003.0, + 1390.0, + 1003.0, + 1406.0, + 970.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1391.0, + 1221.0, + 1391.0, + 1221.0, + 1404.0, + 1192.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1408.0, + 337.0, + 1408.0, + 337.0, + 1424.0, + 303.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1408.0, + 557.0, + 1408.0, + 557.0, + 1424.0, + 524.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1408.0, + 781.0, + 1408.0, + 781.0, + 1424.0, + 748.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1408.0, + 1003.0, + 1408.0, + 1003.0, + 1424.0, + 969.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1408.0, + 1224.0, + 1408.0, + 1224.0, + 1424.0, + 1191.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1422.0, + 338.0, + 1422.0, + 338.0, + 1442.0, + 299.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1422.0, + 559.0, + 1422.0, + 559.0, + 1442.0, + 522.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1427.0, + 779.0, + 1427.0, + 779.0, + 1439.0, + 745.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1427.0, + 1002.0, + 1427.0, + 1002.0, + 1439.0, + 967.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1426.0, + 1224.0, + 1426.0, + 1224.0, + 1441.0, + 1187.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1443.0, + 337.0, + 1443.0, + 337.0, + 1458.0, + 298.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1443.0, + 558.0, + 1443.0, + 558.0, + 1459.0, + 519.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1445.0, + 779.0, + 1445.0, + 779.0, + 1457.0, + 744.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1445.0, + 1002.0, + 1445.0, + 1002.0, + 1457.0, + 966.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1444.0, + 1224.0, + 1444.0, + 1224.0, + 1459.0, + 1186.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1461.0, + 337.0, + 1461.0, + 337.0, + 1477.0, + 298.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1458.0, + 512.0, + 1458.0, + 512.0, + 1468.0, + 502.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1461.0, + 560.0, + 1461.0, + 560.0, + 1477.0, + 519.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1459.0, + 734.0, + 1459.0, + 734.0, + 1468.0, + 724.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1462.0, + 781.0, + 1462.0, + 781.0, + 1477.0, + 741.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1462.0, + 1003.0, + 1462.0, + 1003.0, + 1477.0, + 965.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1462.0, + 1224.0, + 1462.0, + 1224.0, + 1477.0, + 1186.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1478.0, + 337.0, + 1478.0, + 337.0, + 1494.0, + 298.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1478.0, + 558.0, + 1478.0, + 558.0, + 1495.0, + 519.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1478.0, + 781.0, + 1478.0, + 781.0, + 1494.0, + 743.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1478.0, + 1003.0, + 1478.0, + 1003.0, + 1494.0, + 965.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1481.0, + 1222.0, + 1481.0, + 1222.0, + 1493.0, + 1187.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1496.0, + 337.0, + 1496.0, + 337.0, + 1512.0, + 298.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1494.0, + 508.0, + 1494.0, + 508.0, + 1500.0, + 502.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1496.0, + 558.0, + 1496.0, + 558.0, + 1513.0, + 519.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1494.0, + 730.0, + 1494.0, + 730.0, + 1500.0, + 724.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1499.0, + 779.0, + 1499.0, + 779.0, + 1511.0, + 744.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1499.0, + 1002.0, + 1499.0, + 1002.0, + 1511.0, + 965.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1504.0, + 1174.0, + 1504.0, + 1174.0, + 1510.0, + 1168.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1499.0, + 1224.0, + 1499.0, + 1224.0, + 1511.0, + 1187.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1514.0, + 337.0, + 1514.0, + 337.0, + 1530.0, + 298.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1514.0, + 560.0, + 1514.0, + 560.0, + 1530.0, + 519.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1514.0, + 781.0, + 1514.0, + 781.0, + 1530.0, + 741.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1514.0, + 1004.0, + 1514.0, + 1004.0, + 1530.0, + 964.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 1514.0, + 1225.0, + 1514.0, + 1225.0, + 1530.0, + 1186.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1530.0, + 382.0, + 1530.0, + 382.0, + 1542.0, + 334.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1530.0, + 704.0, + 1530.0, + 704.0, + 1551.0, + 556.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1530.0, + 926.0, + 1530.0, + 926.0, + 1551.0, + 778.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1533.0, + 1095.0, + 1533.0, + 1095.0, + 1554.0, + 1053.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1530.0, + 1250.0, + 1530.0, + 1250.0, + 1543.0, + 1231.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1524.0, + 1334.0, + 1524.0, + 1334.0, + 1556.0, + 1264.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1530.0, + 1364.0, + 1530.0, + 1364.0, + 1542.0, + 1339.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.25, + 1526.0, + 491.25, + 1526.0, + 491.25, + 1559.0, + 340.25, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 855.0, + 337.0, + 855.0, + 337.0, + 871.0, + 303.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 856.0, + 556.0, + 856.0, + 556.0, + 870.0, + 527.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 855.0, + 782.0, + 855.0, + 782.0, + 871.0, + 749.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 856.0, + 1000.0, + 856.0, + 1000.0, + 870.0, + 972.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 856.0, + 1217.0, + 856.0, + 1217.0, + 868.0, + 1195.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 873.0, + 337.0, + 873.0, + 337.0, + 889.0, + 303.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 873.0, + 558.0, + 873.0, + 558.0, + 889.0, + 526.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 873.0, + 782.0, + 873.0, + 782.0, + 889.0, + 749.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 873.0, + 1004.0, + 873.0, + 1004.0, + 889.0, + 971.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 874.0, + 1224.0, + 874.0, + 1224.0, + 887.0, + 1195.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 891.0, + 337.0, + 891.0, + 337.0, + 907.0, + 303.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 891.0, + 560.0, + 891.0, + 560.0, + 907.0, + 526.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 891.0, + 782.0, + 891.0, + 782.0, + 907.0, + 748.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 891.0, + 1004.0, + 891.0, + 1004.0, + 907.0, + 970.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 891.0, + 1226.0, + 891.0, + 1226.0, + 907.0, + 1192.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 909.0, + 337.0, + 909.0, + 337.0, + 925.0, + 300.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 909.0, + 560.0, + 909.0, + 560.0, + 925.0, + 523.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 909.0, + 782.0, + 909.0, + 782.0, + 925.0, + 745.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 909.0, + 1005.0, + 909.0, + 1005.0, + 925.0, + 967.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 909.0, + 1226.0, + 909.0, + 1226.0, + 925.0, + 1190.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 927.0, + 337.0, + 927.0, + 337.0, + 942.0, + 297.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 927.0, + 560.0, + 927.0, + 560.0, + 942.0, + 520.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 927.0, + 782.0, + 927.0, + 782.0, + 942.0, + 743.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 927.0, + 1005.0, + 927.0, + 1005.0, + 942.0, + 965.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 927.0, + 1227.0, + 927.0, + 1227.0, + 942.0, + 1187.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 945.0, + 337.0, + 945.0, + 337.0, + 960.0, + 297.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 945.0, + 560.0, + 945.0, + 560.0, + 960.0, + 520.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 945.0, + 782.0, + 945.0, + 782.0, + 960.0, + 743.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 945.0, + 1005.0, + 945.0, + 1005.0, + 960.0, + 965.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 945.0, + 1226.0, + 945.0, + 1226.0, + 960.0, + 1188.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 963.0, + 335.0, + 963.0, + 335.0, + 978.0, + 297.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 963.0, + 557.0, + 963.0, + 557.0, + 978.0, + 520.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 963.0, + 782.0, + 963.0, + 782.0, + 978.0, + 743.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 963.0, + 1004.0, + 963.0, + 1004.0, + 978.0, + 965.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 963.0, + 1225.0, + 963.0, + 1225.0, + 978.0, + 1188.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 981.0, + 337.0, + 981.0, + 337.0, + 996.0, + 297.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 981.0, + 560.0, + 981.0, + 560.0, + 996.0, + 520.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 981.0, + 782.0, + 981.0, + 782.0, + 996.0, + 743.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 981.0, + 1004.0, + 981.0, + 1004.0, + 996.0, + 965.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 981.0, + 1226.0, + 981.0, + 1226.0, + 996.0, + 1188.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 999.0, + 336.0, + 999.0, + 336.0, + 1014.0, + 297.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 999.0, + 557.0, + 999.0, + 557.0, + 1014.0, + 520.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 999.0, + 782.0, + 999.0, + 782.0, + 1014.0, + 743.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 999.0, + 1004.0, + 999.0, + 1004.0, + 1014.0, + 965.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 999.0, + 1226.0, + 999.0, + 1226.0, + 1014.0, + 1187.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1017.0, + 335.0, + 1017.0, + 335.0, + 1032.0, + 297.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1018.0, + 556.0, + 1018.0, + 556.0, + 1030.0, + 522.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 1018.0, + 779.0, + 1018.0, + 779.0, + 1030.0, + 744.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1018.0, + 1002.0, + 1018.0, + 1002.0, + 1030.0, + 967.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1017.0, + 1225.0, + 1017.0, + 1225.0, + 1032.0, + 1188.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1033.0, + 478.0, + 1033.0, + 478.0, + 1054.0, + 348.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1031.0, + 704.0, + 1031.0, + 704.0, + 1052.0, + 558.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1030.0, + 927.0, + 1030.0, + 927.0, + 1052.0, + 781.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1036.0, + 1097.0, + 1036.0, + 1097.0, + 1056.0, + 1055.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1033.0, + 1250.0, + 1033.0, + 1250.0, + 1042.0, + 1236.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1031.0, + 1330.0, + 1031.0, + 1330.0, + 1052.0, + 1273.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1031.0, + 1366.0, + 1031.0, + 1366.0, + 1043.0, + 1342.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 355.0, + 331.0, + 355.0, + 331.0, + 372.0, + 298.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 358.0, + 549.0, + 358.0, + 549.0, + 370.0, + 524.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 358.0, + 777.0, + 358.0, + 777.0, + 370.0, + 748.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 355.0, + 1001.0, + 355.0, + 1001.0, + 372.0, + 969.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 358.0, + 1223.0, + 358.0, + 1223.0, + 370.0, + 1194.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 373.0, + 329.0, + 373.0, + 329.0, + 391.0, + 298.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 375.0, + 551.0, + 375.0, + 551.0, + 388.0, + 523.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 375.0, + 773.0, + 375.0, + 773.0, + 388.0, + 747.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 373.0, + 1003.0, + 373.0, + 1003.0, + 391.0, + 968.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 373.0, + 1225.0, + 373.0, + 1225.0, + 391.0, + 1192.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 393.0, + 327.0, + 393.0, + 327.0, + 407.0, + 298.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 393.0, + 548.0, + 393.0, + 548.0, + 407.0, + 523.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 391.0, + 773.0, + 391.0, + 773.0, + 408.0, + 745.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 392.0, + 1003.0, + 392.0, + 1003.0, + 408.0, + 968.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 391.0, + 1223.0, + 391.0, + 1223.0, + 408.0, + 1192.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 409.0, + 332.0, + 409.0, + 332.0, + 426.0, + 296.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 410.0, + 556.0, + 410.0, + 556.0, + 426.0, + 521.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 410.0, + 779.0, + 410.0, + 779.0, + 426.0, + 745.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 409.0, + 1005.0, + 409.0, + 1005.0, + 426.0, + 968.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 409.0, + 1227.0, + 409.0, + 1227.0, + 426.0, + 1192.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 427.0, + 332.0, + 427.0, + 332.0, + 445.0, + 296.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 427.0, + 554.0, + 427.0, + 554.0, + 445.0, + 521.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 427.0, + 778.0, + 427.0, + 778.0, + 445.0, + 745.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 427.0, + 1003.0, + 427.0, + 1003.0, + 445.0, + 968.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 427.0, + 1226.0, + 427.0, + 1226.0, + 445.0, + 1192.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 445.0, + 331.0, + 445.0, + 331.0, + 462.0, + 298.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 446.0, + 554.0, + 446.0, + 554.0, + 462.0, + 521.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 446.0, + 779.0, + 446.0, + 779.0, + 462.0, + 745.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 445.0, + 1005.0, + 445.0, + 1005.0, + 462.0, + 968.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 446.0, + 1226.0, + 446.0, + 1226.0, + 462.0, + 1192.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 463.0, + 331.0, + 463.0, + 331.0, + 480.0, + 296.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 464.0, + 556.0, + 464.0, + 556.0, + 480.0, + 521.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 464.0, + 778.0, + 464.0, + 778.0, + 480.0, + 745.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 463.0, + 1005.0, + 463.0, + 1005.0, + 480.0, + 968.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 464.0, + 1227.0, + 464.0, + 1227.0, + 480.0, + 1192.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 481.0, + 331.0, + 481.0, + 331.0, + 499.0, + 298.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 481.0, + 554.0, + 481.0, + 554.0, + 499.0, + 521.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 483.0, + 778.0, + 483.0, + 778.0, + 499.0, + 745.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 481.0, + 1003.0, + 481.0, + 1003.0, + 499.0, + 968.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 481.0, + 1226.0, + 481.0, + 1226.0, + 499.0, + 1192.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 500.0, + 331.0, + 500.0, + 331.0, + 516.0, + 298.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 500.0, + 554.0, + 500.0, + 554.0, + 516.0, + 521.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 500.0, + 779.0, + 500.0, + 779.0, + 516.0, + 745.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 500.0, + 1005.0, + 500.0, + 1005.0, + 516.0, + 968.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 500.0, + 1226.0, + 500.0, + 1226.0, + 516.0, + 1192.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 518.0, + 332.0, + 518.0, + 332.0, + 534.0, + 296.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 518.0, + 556.0, + 518.0, + 556.0, + 534.0, + 521.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 518.0, + 779.0, + 518.0, + 779.0, + 534.0, + 745.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 518.0, + 1005.0, + 518.0, + 1005.0, + 534.0, + 968.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 518.0, + 1227.0, + 518.0, + 1227.0, + 534.0, + 1192.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 528.0, + 472.0, + 528.0, + 472.0, + 560.0, + 338.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 529.0, + 647.0, + 529.0, + 647.0, + 557.0, + 575.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 533.0, + 678.0, + 533.0, + 678.0, + 545.0, + 650.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 533.0, + 828.0, + 533.0, + 828.0, + 546.0, + 800.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 538.0, + 869.0, + 538.0, + 869.0, + 555.0, + 831.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 533.0, + 901.0, + 533.0, + 901.0, + 545.0, + 876.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 537.0, + 1096.0, + 537.0, + 1096.0, + 557.0, + 1053.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 533.0, + 1270.0, + 533.0, + 1270.0, + 546.0, + 1251.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 538.0, + 1321.0, + 538.0, + 1321.0, + 555.0, + 1275.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 535.0, + 1345.0, + 535.0, + 1345.0, + 544.0, + 1328.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 1107.0, + 328.0, + 1107.0, + 328.0, + 1120.0, + 300.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1107.0, + 544.0, + 1107.0, + 544.0, + 1119.0, + 524.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1110.0, + 769.0, + 1110.0, + 769.0, + 1118.0, + 750.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1106.0, + 1002.0, + 1106.0, + 1002.0, + 1122.0, + 970.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1107.0, + 1217.0, + 1107.0, + 1217.0, + 1120.0, + 1194.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1125.0, + 331.0, + 1125.0, + 331.0, + 1142.0, + 297.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1125.0, + 552.0, + 1125.0, + 552.0, + 1142.0, + 521.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1126.0, + 775.0, + 1126.0, + 775.0, + 1140.0, + 748.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1125.0, + 1002.0, + 1125.0, + 1002.0, + 1142.0, + 970.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1125.0, + 1224.0, + 1125.0, + 1224.0, + 1142.0, + 1192.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1145.0, + 330.0, + 1145.0, + 330.0, + 1161.0, + 297.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1147.0, + 551.0, + 1147.0, + 551.0, + 1160.0, + 522.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1147.0, + 775.0, + 1147.0, + 775.0, + 1160.0, + 746.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1145.0, + 1004.0, + 1145.0, + 1004.0, + 1161.0, + 968.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1146.0, + 1224.0, + 1146.0, + 1224.0, + 1161.0, + 1192.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1165.0, + 331.0, + 1165.0, + 331.0, + 1182.0, + 297.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1165.0, + 553.0, + 1165.0, + 553.0, + 1182.0, + 521.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1165.0, + 778.0, + 1165.0, + 778.0, + 1182.0, + 745.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1165.0, + 1004.0, + 1165.0, + 1004.0, + 1182.0, + 968.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1165.0, + 1226.0, + 1165.0, + 1226.0, + 1182.0, + 1192.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1186.0, + 331.0, + 1186.0, + 331.0, + 1201.0, + 297.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1187.0, + 552.0, + 1187.0, + 552.0, + 1200.0, + 523.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1187.0, + 777.0, + 1187.0, + 777.0, + 1200.0, + 748.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1186.0, + 1002.0, + 1186.0, + 1002.0, + 1202.0, + 968.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1186.0, + 1224.0, + 1186.0, + 1224.0, + 1202.0, + 1192.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1206.0, + 331.0, + 1206.0, + 331.0, + 1222.0, + 297.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1206.0, + 555.0, + 1206.0, + 555.0, + 1222.0, + 521.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1206.0, + 779.0, + 1206.0, + 779.0, + 1222.0, + 745.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1206.0, + 1004.0, + 1206.0, + 1004.0, + 1222.0, + 968.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1206.0, + 1226.0, + 1206.0, + 1226.0, + 1222.0, + 1192.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1225.0, + 333.0, + 1225.0, + 333.0, + 1242.0, + 297.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1225.0, + 556.0, + 1225.0, + 556.0, + 1242.0, + 521.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1225.0, + 779.0, + 1225.0, + 779.0, + 1242.0, + 745.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1225.0, + 1004.0, + 1225.0, + 1004.0, + 1242.0, + 968.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1225.0, + 1226.0, + 1225.0, + 1226.0, + 1242.0, + 1192.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1246.0, + 331.0, + 1246.0, + 331.0, + 1263.0, + 297.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1245.0, + 508.0, + 1245.0, + 508.0, + 1254.0, + 497.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1246.0, + 553.0, + 1246.0, + 553.0, + 1263.0, + 521.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1247.0, + 731.0, + 1247.0, + 731.0, + 1257.0, + 720.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1246.0, + 779.0, + 1246.0, + 779.0, + 1262.0, + 745.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1246.0, + 952.0, + 1246.0, + 952.0, + 1252.0, + 946.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1246.0, + 1004.0, + 1246.0, + 1004.0, + 1263.0, + 968.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1246.0, + 1224.0, + 1246.0, + 1224.0, + 1263.0, + 1192.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1265.0, + 330.0, + 1265.0, + 330.0, + 1282.0, + 297.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1265.0, + 553.0, + 1265.0, + 553.0, + 1282.0, + 521.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1266.0, + 779.0, + 1266.0, + 779.0, + 1282.0, + 745.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1265.0, + 1004.0, + 1265.0, + 1004.0, + 1282.0, + 968.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1265.0, + 1224.0, + 1265.0, + 1224.0, + 1282.0, + 1192.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1275.0, + 474.0, + 1275.0, + 474.0, + 1310.0, + 338.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1279.0, + 507.0, + 1279.0, + 507.0, + 1288.0, + 495.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1282.0, + 603.0, + 1282.0, + 603.0, + 1294.0, + 577.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1287.0, + 645.0, + 1287.0, + 645.0, + 1304.0, + 609.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1282.0, + 678.0, + 1282.0, + 678.0, + 1294.0, + 652.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1279.0, + 731.0, + 1279.0, + 731.0, + 1288.0, + 720.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 1282.0, + 826.0, + 1282.0, + 826.0, + 1294.0, + 802.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1287.0, + 869.0, + 1287.0, + 869.0, + 1304.0, + 832.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 1283.0, + 896.0, + 1283.0, + 896.0, + 1292.0, + 881.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1286.0, + 1096.0, + 1286.0, + 1096.0, + 1306.0, + 1053.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1287.0, + 1320.0, + 1287.0, + 1320.0, + 1304.0, + 1275.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1066.0, + 1104.0, + 1066.0, + 1104.0, + 1100.0, + 597.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 606.0, + 336.0, + 606.0, + 336.0, + 622.0, + 303.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 608.0, + 553.0, + 608.0, + 553.0, + 621.0, + 528.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 609.0, + 774.0, + 609.0, + 774.0, + 621.0, + 751.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 608.0, + 997.0, + 608.0, + 997.0, + 621.0, + 972.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 609.0, + 1218.0, + 609.0, + 1218.0, + 621.0, + 1196.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 624.0, + 336.0, + 624.0, + 336.0, + 641.0, + 303.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 624.0, + 557.0, + 624.0, + 557.0, + 641.0, + 525.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 624.0, + 780.0, + 624.0, + 780.0, + 641.0, + 747.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 626.0, + 1001.0, + 626.0, + 1001.0, + 639.0, + 972.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 626.0, + 1223.0, + 626.0, + 1223.0, + 639.0, + 1194.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 642.0, + 336.0, + 642.0, + 336.0, + 658.0, + 303.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 642.0, + 558.0, + 642.0, + 558.0, + 658.0, + 525.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 642.0, + 780.0, + 642.0, + 780.0, + 658.0, + 747.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 644.0, + 1001.0, + 644.0, + 1001.0, + 657.0, + 972.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 642.0, + 1226.0, + 642.0, + 1226.0, + 658.0, + 1193.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 660.0, + 336.0, + 660.0, + 336.0, + 677.0, + 303.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 660.0, + 558.0, + 660.0, + 558.0, + 677.0, + 525.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 660.0, + 780.0, + 660.0, + 780.0, + 677.0, + 747.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 660.0, + 1003.0, + 660.0, + 1003.0, + 677.0, + 970.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 660.0, + 1226.0, + 660.0, + 1226.0, + 677.0, + 1193.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 678.0, + 336.0, + 678.0, + 336.0, + 694.0, + 299.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 678.0, + 558.0, + 678.0, + 558.0, + 694.0, + 523.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 678.0, + 780.0, + 678.0, + 780.0, + 694.0, + 745.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 678.0, + 1004.0, + 678.0, + 1004.0, + 694.0, + 967.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 678.0, + 1226.0, + 678.0, + 1226.0, + 694.0, + 1189.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 696.0, + 336.0, + 696.0, + 336.0, + 712.0, + 297.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 696.0, + 558.0, + 696.0, + 558.0, + 712.0, + 520.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 696.0, + 782.0, + 696.0, + 782.0, + 712.0, + 742.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 696.0, + 1005.0, + 696.0, + 1005.0, + 712.0, + 966.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 696.0, + 1226.0, + 696.0, + 1226.0, + 712.0, + 1188.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 714.0, + 336.0, + 714.0, + 336.0, + 730.0, + 297.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 714.0, + 558.0, + 714.0, + 558.0, + 730.0, + 520.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 714.0, + 782.0, + 714.0, + 782.0, + 730.0, + 744.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 714.0, + 1005.0, + 714.0, + 1005.0, + 730.0, + 965.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 714.0, + 1227.0, + 714.0, + 1227.0, + 730.0, + 1188.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 732.0, + 336.0, + 732.0, + 336.0, + 748.0, + 298.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 732.0, + 559.0, + 732.0, + 559.0, + 748.0, + 520.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 732.0, + 782.0, + 732.0, + 782.0, + 748.0, + 744.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 735.0, + 1004.0, + 735.0, + 1004.0, + 747.0, + 967.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 735.0, + 1226.0, + 735.0, + 1226.0, + 747.0, + 1189.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 753.0, + 336.0, + 753.0, + 336.0, + 765.0, + 299.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 750.0, + 559.0, + 750.0, + 559.0, + 766.0, + 520.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 750.0, + 782.0, + 750.0, + 782.0, + 766.0, + 744.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 750.0, + 1005.0, + 750.0, + 1005.0, + 766.0, + 966.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 750.0, + 1227.0, + 750.0, + 1227.0, + 766.0, + 1188.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 769.0, + 335.0, + 769.0, + 335.0, + 781.0, + 299.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 768.0, + 559.0, + 768.0, + 559.0, + 784.0, + 520.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 769.0, + 780.0, + 769.0, + 780.0, + 781.0, + 745.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 769.0, + 1004.0, + 769.0, + 1004.0, + 781.0, + 967.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 768.0, + 1227.0, + 768.0, + 1227.0, + 784.0, + 1188.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 783.0, + 470.0, + 783.0, + 470.0, + 805.0, + 335.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 781.0, + 706.0, + 781.0, + 706.0, + 804.0, + 557.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 781.0, + 928.0, + 781.0, + 928.0, + 804.0, + 779.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 787.0, + 1097.0, + 787.0, + 1097.0, + 808.0, + 1054.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 783.0, + 1252.0, + 783.0, + 1252.0, + 796.0, + 1234.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 783.0, + 1328.0, + 783.0, + 1328.0, + 805.0, + 1271.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 783.0, + 1366.0, + 783.0, + 1366.0, + 795.0, + 1342.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 566.0, + 1063.0, + 566.0, + 1063.0, + 600.0, + 637.0, + 600.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/3T9iFICe0Y9/0.png b/vlm/train/3T9iFICe0Y9/0.png new file mode 100644 index 0000000000000000000000000000000000000000..46ba31042833d388a65df24d8f243362ab7f1936 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1715e0486cfc11ae05173ee9097e7a886cd6ed14f16975b210af73428ca7169 +size 564702 diff --git a/vlm/train/3T9iFICe0Y9/1.png b/vlm/train/3T9iFICe0Y9/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a78a882b9c22383c50be2fdd76769a506f48dfca --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5361ae1dad7ee1dc20746efdf41eb16cdd491fb43e73b807b043c9b87dcd9423 +size 588649 diff --git a/vlm/train/3T9iFICe0Y9/10.png b/vlm/train/3T9iFICe0Y9/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d5fbeff1e5ab838dec167e561c5f86d2e2b7a702 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0138ed71ff41deba19ee291a38c6a8833f57348b9074117547f57b009e3925df +size 394884 diff --git a/vlm/train/3T9iFICe0Y9/11.png b/vlm/train/3T9iFICe0Y9/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2a802293f48938eb42847e676ed858ccc5e7ccde --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225da8249e07875e0600c088354dc3ef8fbc76746267559f0f4869e48e72113a +size 298804 diff --git a/vlm/train/3T9iFICe0Y9/12.png b/vlm/train/3T9iFICe0Y9/12.png new file mode 100644 index 0000000000000000000000000000000000000000..52b086b40b634b64035aa0874e1b4ef9f67e3b66 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c7c6e7717c4912e806e659a5adc3746ed0c70935ae540bf843859ad15e597a +size 529499 diff --git a/vlm/train/3T9iFICe0Y9/13.png b/vlm/train/3T9iFICe0Y9/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ee43b1a082fbe67ed3bfcee657d7cc3bcbc9e63d --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7ddc31143bbcf003e52e193540e2908b795d4950a3ba94fc355301db10e255 +size 406575 diff --git a/vlm/train/3T9iFICe0Y9/14.png b/vlm/train/3T9iFICe0Y9/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f29d43e579720219782d12280d2047c0b0dbfb07 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df362f0be6c3cfd722306f9f809494996c136baf5417d70ceac5ed09f5364ee3 +size 517516 diff --git a/vlm/train/3T9iFICe0Y9/15.png b/vlm/train/3T9iFICe0Y9/15.png new file mode 100644 index 0000000000000000000000000000000000000000..394ba57f93854b93d03011b51e126652a425fcf6 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8df8750e67ba2339542f78c4093d44c0427376fcc379a52eaba914935feec02 +size 439653 diff --git a/vlm/train/3T9iFICe0Y9/16.png b/vlm/train/3T9iFICe0Y9/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a904a91e65cc94dad227654d22e6c042299b37 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f307ddef04426aff6c1c37f4a3cf65e82a205a23c8142ba4ff68dbb4d7c94c9 +size 329601 diff --git a/vlm/train/3T9iFICe0Y9/17.png b/vlm/train/3T9iFICe0Y9/17.png new file mode 100644 index 0000000000000000000000000000000000000000..6844e401b0016d16e8794077af2eab24f7ef05b0 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d515d11de77640667a16ef2601815452b348c939e67637153327007d3a0aa0 +size 332274 diff --git a/vlm/train/3T9iFICe0Y9/18.png b/vlm/train/3T9iFICe0Y9/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b912f2604be04de28dc7aa0ea453e8bc47bdb4c8 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cb11ca3a203641a3f4d0a5885783a50c08c9fd18cf56ffb6d3abeb8038ebc0 +size 317809 diff --git a/vlm/train/3T9iFICe0Y9/19.png b/vlm/train/3T9iFICe0Y9/19.png new file mode 100644 index 0000000000000000000000000000000000000000..2657296283a11d247932fc3f0efc500cb930495d --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04ba42c70c897dccb61d6c63d3635fa1c5fdeb7d660dac0993d311fb137ae4e +size 347459 diff --git a/vlm/train/3T9iFICe0Y9/2.png b/vlm/train/3T9iFICe0Y9/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d3f194e60de40c74005d2ed20a5318e546ed8335 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cceb979e71d6d35c77ccfeb4ca9a05920383bd4b792274382741d32abb97133 +size 459989 diff --git a/vlm/train/3T9iFICe0Y9/20.png b/vlm/train/3T9iFICe0Y9/20.png new file mode 100644 index 0000000000000000000000000000000000000000..813b67e8e9c36ebd603937daa678b47b5784ce4e --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368d0fcd487ec50580ae020f8a31bcb388b2b24ab171fc1f29ad6f1661aa6c5b +size 371610 diff --git a/vlm/train/3T9iFICe0Y9/21.png b/vlm/train/3T9iFICe0Y9/21.png new file mode 100644 index 0000000000000000000000000000000000000000..2ac41cea075326a6caf5080c2579560d184516f8 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c353db0c76c956589977fae0af4ad9ff8cdc2b1dacbd60298b78a8dd115dd3 +size 336428 diff --git a/vlm/train/3T9iFICe0Y9/22.png b/vlm/train/3T9iFICe0Y9/22.png new file mode 100644 index 0000000000000000000000000000000000000000..fca6dca621b5ee544bf9efee5a301d68e2a1bc8b --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97ac406f204d06e34efee911f599121113f6c694064fd79eca6a1e8bf1691ab +size 354645 diff --git a/vlm/train/3T9iFICe0Y9/23.png b/vlm/train/3T9iFICe0Y9/23.png new file mode 100644 index 0000000000000000000000000000000000000000..7bdeabe14c03036dd1b7fe79041c302e15242d89 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55dcf00476fe2811f26dbc7d51a4598b1aec5462e83e55ef10a0ff3613d16f85 +size 354243 diff --git a/vlm/train/3T9iFICe0Y9/24.png b/vlm/train/3T9iFICe0Y9/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d714180bd4a2a1c182f48476168e5b330e0b4386 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2462a79234ad20bea3182d0c714a9f06d050f022e56854d37c51de733247611 +size 248532 diff --git a/vlm/train/3T9iFICe0Y9/25.png b/vlm/train/3T9iFICe0Y9/25.png new file mode 100644 index 0000000000000000000000000000000000000000..64a01bcc88fc5c6864672ad9bf4fa0cf122ace34 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4985ce7ac43280b97dbed4ca37eb7a9171d1ed6ddff4bec025172fe342483c +size 150655 diff --git a/vlm/train/3T9iFICe0Y9/3.png b/vlm/train/3T9iFICe0Y9/3.png new file mode 100644 index 0000000000000000000000000000000000000000..8a88bac0b806dfdeda3306d1a230755a5f23af32 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db87cc0a912d3fb67bc562907a091ff8c2ee003564f741b42406ba5c54167d32 +size 538462 diff --git a/vlm/train/3T9iFICe0Y9/4.png b/vlm/train/3T9iFICe0Y9/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6f025e85d90c422f4470c6fad15dea5495a24a7a --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cece3283a7887abac6d52dc5da45b11e3aeed10f391e833398ed13c339277ee4 +size 461469 diff --git a/vlm/train/3T9iFICe0Y9/5.png b/vlm/train/3T9iFICe0Y9/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8689b1de7e73b0f186a2df7ab33d8be9c326ea54 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ca981d1e25064b208e282eaa926c20be2aab4d6ddcd67cb8d7c9440d8469ef +size 580023 diff --git a/vlm/train/3T9iFICe0Y9/6.png b/vlm/train/3T9iFICe0Y9/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8181fb67c80f11228defc388db3e45aa73789dc0 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e23f1c0b4fc79c046a26b64b573b87ffa4e75e9cdb0146fc84cb4026395bab +size 576734 diff --git a/vlm/train/3T9iFICe0Y9/7.png b/vlm/train/3T9iFICe0Y9/7.png new file mode 100644 index 0000000000000000000000000000000000000000..013492bf43a0043a5113cb562a4e640a8f08171a --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbd6061969b5385557d1c611f15a5e69c8546110daefd9735a835469c9df2d7 +size 600769 diff --git a/vlm/train/3T9iFICe0Y9/8.png b/vlm/train/3T9iFICe0Y9/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9d122f46856739878f5173b055d2d1ba8432695d --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b995bfd9ea68f06fa73ec271973ec7e5f6a97132da7440399aa855cfd42f1fa +size 546458 diff --git a/vlm/train/3T9iFICe0Y9/9.png b/vlm/train/3T9iFICe0Y9/9.png new file mode 100644 index 0000000000000000000000000000000000000000..17fb80b0883f6f736a3674ba3fef5ebc843f3d79 --- /dev/null +++ b/vlm/train/3T9iFICe0Y9/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c65dbaf1795441c0bf0a2308bdcbe8ea40bad8ea48464d37e7a1835d1699c2 +size 566042 diff --git a/vlm/train/5lhWG3Hj2By/0.png b/vlm/train/5lhWG3Hj2By/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c29572aafa1a2c5b576c381c21a21450423db3 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75d678028ecf9f94ba400087cd5358edbb0c84278ad3a2eae9dc05d026bef54c +size 516669 diff --git a/vlm/train/5lhWG3Hj2By/1.png b/vlm/train/5lhWG3Hj2By/1.png new file mode 100644 index 0000000000000000000000000000000000000000..95d5999dffbdc6b6073ec3b7ca5cdf40aef354b2 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612b5cfc1ad4adc2bfda4a9c197118dc48ac82d79eb5e9d85707b77a632dfaad +size 650531 diff --git a/vlm/train/5lhWG3Hj2By/10.png b/vlm/train/5lhWG3Hj2By/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fc50b046a2a2c7280acf2b3117e57adca5d8745e --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd06d8e1f671b35b8e7d0a383da4af0e47dd9aa888c53ac2ee7659f70473ceb +size 543428 diff --git a/vlm/train/5lhWG3Hj2By/11.png b/vlm/train/5lhWG3Hj2By/11.png new file mode 100644 index 0000000000000000000000000000000000000000..81c59e5f5a40d1722bd98832935f31d0f3848d30 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c34abafd451383b4a659ad30c7b96b27dc5598613283b9241f31034d9de973 +size 344041 diff --git a/vlm/train/5lhWG3Hj2By/12.png b/vlm/train/5lhWG3Hj2By/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6a7b9ae88a07d17297189a7d6f42eeaa144163ec --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccee549eed8588bb6576772811c41b3e9a717bfe5defba6a6f1de080a4a8814 +size 382957 diff --git a/vlm/train/5lhWG3Hj2By/13.png b/vlm/train/5lhWG3Hj2By/13.png new file mode 100644 index 0000000000000000000000000000000000000000..134603f3d4e24445dae8d20c510f049e65c66b6d --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c804e5d21a5a44314612893d853f9f912b9438abb672b327cf0af765d405650 +size 456063 diff --git a/vlm/train/5lhWG3Hj2By/14.png b/vlm/train/5lhWG3Hj2By/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5392b064b61a6ed9640f4d8f8362cbf8246e6ac7 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119a74c751e1c7c904a0a3c0f1e2d0fec13a286f182d9900997033725100e8d5 +size 443312 diff --git a/vlm/train/5lhWG3Hj2By/15.png b/vlm/train/5lhWG3Hj2By/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c3a1b49ec0a3e5e60c43f7afa7c3e18e7ce8e3f1 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0591fd6eb8aa2c76af88e9422ffacdee5b4aed813a0c6d3c86c8fb0c13d5d110 +size 414571 diff --git a/vlm/train/5lhWG3Hj2By/16.png b/vlm/train/5lhWG3Hj2By/16.png new file mode 100644 index 0000000000000000000000000000000000000000..45441f3333d40e498695f2b6737ce2167b2eb554 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d923739a33cc750d7c6a8fa29a39f0cc97d51187256039464c42ff9ad02afbd8 +size 379496 diff --git a/vlm/train/5lhWG3Hj2By/17.png b/vlm/train/5lhWG3Hj2By/17.png new file mode 100644 index 0000000000000000000000000000000000000000..30b71c2737936a9c5efd917b7e1ee565d1156be1 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc4fffc5e2fd9469d4e18bc0ff3003db829a9bae716d627cf203a1959bb122c +size 405045 diff --git a/vlm/train/5lhWG3Hj2By/18.png b/vlm/train/5lhWG3Hj2By/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3c196b65f23ff24fdaf022a94071e305e6296124 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84ebdb9c25202250583738939e9603d0e4354bff4d4d7bce7bffe37060278a8 +size 366428 diff --git a/vlm/train/5lhWG3Hj2By/19.png b/vlm/train/5lhWG3Hj2By/19.png new file mode 100644 index 0000000000000000000000000000000000000000..47dfc25a7fc4170de818275132f5281a3d117974 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a0587825540d2c063a9568d9cd0ef9d9d958badc5e699981df8544232e0ddc3 +size 307349 diff --git a/vlm/train/5lhWG3Hj2By/2.png b/vlm/train/5lhWG3Hj2By/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ff160c5492272cebb3aa1a050042abb91eb34ec9 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8a1ee43af983ec4c414f3abe72fb66b8708fc71454521bc0d61652be896803d +size 553237 diff --git a/vlm/train/5lhWG3Hj2By/20.png b/vlm/train/5lhWG3Hj2By/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b0a4d6e798ebe8d9cb8014aa881c80add7b1a7a0 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31488a1d80256bb699bcf7bf7c0d8118b1f4c3281de90b38cfdb0d4cfdfa0f81 +size 434192 diff --git a/vlm/train/5lhWG3Hj2By/21.png b/vlm/train/5lhWG3Hj2By/21.png new file mode 100644 index 0000000000000000000000000000000000000000..046dee7a41acdfd358762a106359ead4d846d383 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f29b6ad9761fbbcf9191c61b3daf4a5ff6d530e489ae9ea09b1b4f9be5cbda +size 577176 diff --git a/vlm/train/5lhWG3Hj2By/22.png b/vlm/train/5lhWG3Hj2By/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf01761aaaea4c08b69f81a47f3a4188ec49993 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e956a4ff7c525d6a2efdfe7cfdf1874834cda9dca5c7292a1ce0382d6165b254 +size 305020 diff --git a/vlm/train/5lhWG3Hj2By/23.png b/vlm/train/5lhWG3Hj2By/23.png new file mode 100644 index 0000000000000000000000000000000000000000..8bdfee80c42124390b0a7402ee5ba3a90f466c69 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad22e43b2141c00b246e646a451e48e829f871a5b9ae7f4fa823f2a326935b2 +size 497601 diff --git a/vlm/train/5lhWG3Hj2By/24.png b/vlm/train/5lhWG3Hj2By/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2c91f4b80ddef0aa5c4a8a048dbc29f03fad6ccc --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ee50dd52798d82274ac9f779cf7fe5810a7395a45fb18a70487e1a35eac78e +size 372985 diff --git a/vlm/train/5lhWG3Hj2By/25.png b/vlm/train/5lhWG3Hj2By/25.png new file mode 100644 index 0000000000000000000000000000000000000000..83dbab102c5c273aa7c8c9948fba1f2bb9880b96 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a505ee1bd7814a2cfb4fefd00064410b31006704761b9b00ea19cebbc55ad607 +size 258309 diff --git a/vlm/train/5lhWG3Hj2By/3.png b/vlm/train/5lhWG3Hj2By/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b2b9ec1604e153d05237c465a5d77fb82d53f41c --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276af948e23065db3cb7e07ecb8854af3586241342776e901006a625ed862217 +size 549471 diff --git a/vlm/train/5lhWG3Hj2By/4.png b/vlm/train/5lhWG3Hj2By/4.png new file mode 100644 index 0000000000000000000000000000000000000000..02d6473c72b1648259b4c991a3b4bdb59872abe8 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297cdc4058df5e011f212ee3e5cf95d4fb5343e33eebfdf206364ae348f9d727 +size 513646 diff --git a/vlm/train/5lhWG3Hj2By/5.png b/vlm/train/5lhWG3Hj2By/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c7037807deae22fdf2ec39e63c23525c460bd3 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd4721537c5316e465b0008d4d7af00d9f00319b27604833bd43b18deab0d3d +size 503492 diff --git a/vlm/train/5lhWG3Hj2By/6.png b/vlm/train/5lhWG3Hj2By/6.png new file mode 100644 index 0000000000000000000000000000000000000000..dd44ab5127ff31c81e7f348419d0faade37c5e5f --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0971e700013027dc2820c35192f0515f4fe41e776ebf50ac6a622f204dcc13 +size 508961 diff --git a/vlm/train/5lhWG3Hj2By/7.png b/vlm/train/5lhWG3Hj2By/7.png new file mode 100644 index 0000000000000000000000000000000000000000..18d1ae79ea3fd67178d437a44822a76ef3d1348f --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ff143a7b79254e46b336eac0c74654adbe388c435627f6e98f8956ed62710a +size 576884 diff --git a/vlm/train/5lhWG3Hj2By/8.png b/vlm/train/5lhWG3Hj2By/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8d8d22c4733cf970760a2900a014dae480c685fd --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e5fcdcf3ea4d36e9e877930eab3224eaeef87011293d46449d6259d7c54e5a +size 607567 diff --git a/vlm/train/5lhWG3Hj2By/9.png b/vlm/train/5lhWG3Hj2By/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c2240041e37c1dad8c61d10f714cb15b562bd144 --- /dev/null +++ b/vlm/train/5lhWG3Hj2By/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d571c4caccbbe30fdb565fbb3d2043ed92c8c11371109848c15275f976bd47c1 +size 555511 diff --git a/vlm/train/7uVcpu-gMD/0.png b/vlm/train/7uVcpu-gMD/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c8ee852b514339e94e9ce5bd94751101b178aad3 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15851164beb3595f247887e6b16ad8e0ef9ee4e2fea0c16c8e6204866b636e00 +size 518548 diff --git a/vlm/train/7uVcpu-gMD/1.png b/vlm/train/7uVcpu-gMD/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4020daea14b3a6912452fdb2aebf3dce99e58ea0 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:869e8f711df468b88131a451a834007a0ac30cb8c6ab4554cebabe08d0c2a36e +size 630396 diff --git a/vlm/train/7uVcpu-gMD/10.png b/vlm/train/7uVcpu-gMD/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0f9677ba8a7d21d5aa2c9742a7c8f5b93e016c13 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e75a8f900a9a120549f0afd3d998ec69a716c03eedb41926e2dea6ffe63686 +size 564485 diff --git a/vlm/train/7uVcpu-gMD/11.png b/vlm/train/7uVcpu-gMD/11.png new file mode 100644 index 0000000000000000000000000000000000000000..07ffa9eda2c143c0047f90f6619ed899eac371b5 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c889ab9c81c5c6114e8b6a1b9800428c021d2fed014ff0b33322cd287e5d282 +size 549462 diff --git a/vlm/train/7uVcpu-gMD/12.png b/vlm/train/7uVcpu-gMD/12.png new file mode 100644 index 0000000000000000000000000000000000000000..52276c70f6fe60617022c6367700b9b9bf9d3d0a --- /dev/null +++ b/vlm/train/7uVcpu-gMD/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa86c904692693e8aa4bd366a54dd3e812377b15578562f50724bffa9a613a0 +size 168093 diff --git a/vlm/train/7uVcpu-gMD/13.png b/vlm/train/7uVcpu-gMD/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e0dd7c06e266929b997e4745951408c0603318a9 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ca3ff97d83526950f6dc6f6af537ec3d16cb364f41d8857f2dd5979c6216ff +size 391204 diff --git a/vlm/train/7uVcpu-gMD/14.png b/vlm/train/7uVcpu-gMD/14.png new file mode 100644 index 0000000000000000000000000000000000000000..6892631b50e101d45e4b1cd68a640ceb5b531fc7 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a469c1e034a8fcd2f730cb8ccdd74f7e56e0f4342cee64e96c390f056e83468 +size 317945 diff --git a/vlm/train/7uVcpu-gMD/15.png b/vlm/train/7uVcpu-gMD/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f738a22bed461f3c44fefd9626439d87ec23c3d5 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea33747beb3472080dac3f0381cf304042fd5118f0afb600dd646da5eed997a0 +size 446914 diff --git a/vlm/train/7uVcpu-gMD/16.png b/vlm/train/7uVcpu-gMD/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d773150d3eed0cc08725f7c2b8e5a9f43d888fe3 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbbe5227cc5627303e6a5abdc5b5c2071a306e6fbd45fe89450446a64605a19 +size 521179 diff --git a/vlm/train/7uVcpu-gMD/17.png b/vlm/train/7uVcpu-gMD/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a3b51cfce6bbaad51e7a52656df18295d80bda83 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658456d2ad2d22aea0e3c8f72bec946ec0f12e368f94a2d99a35e53b66267c17 +size 543618 diff --git a/vlm/train/7uVcpu-gMD/18.png b/vlm/train/7uVcpu-gMD/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4795683b7136fa4b51a601bb8930febe9c7f6432 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00df5160e3d73470ce0c86550f6dbfc94f071ece66e5e1c5f6f9d9e5c23be9a1 +size 476346 diff --git a/vlm/train/7uVcpu-gMD/19.png b/vlm/train/7uVcpu-gMD/19.png new file mode 100644 index 0000000000000000000000000000000000000000..55c54eab8f87e06dbb85d48fb5d4c49df138a2d2 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3deaba7d98b653aad1b0f73dea6e5e70ebe33df109b79fd8390f1983c7d1a355 +size 255568 diff --git a/vlm/train/7uVcpu-gMD/2.png b/vlm/train/7uVcpu-gMD/2.png new file mode 100644 index 0000000000000000000000000000000000000000..21faec65df8b9ac4b3aac4df212bec05f8ef6f53 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9b65c0c819ac613f9f8b0c83010dbb060e69544a923d7d155f01b197b0b34c +size 527891 diff --git a/vlm/train/7uVcpu-gMD/20.png b/vlm/train/7uVcpu-gMD/20.png new file mode 100644 index 0000000000000000000000000000000000000000..11eb02267a079e30991df436cc0a949d080d02b1 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b619beaf4e57077182df681cd9cf7f4f52931aa8e23266245b2f50ae01adc79a +size 324740 diff --git a/vlm/train/7uVcpu-gMD/21.png b/vlm/train/7uVcpu-gMD/21.png new file mode 100644 index 0000000000000000000000000000000000000000..769688b4a462caa0ff9913e86edf9edb40d76709 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de22482109e3d9eb2c08dbed183df5c46d0f1d32b70368edf495e047853eb892 +size 488901 diff --git a/vlm/train/7uVcpu-gMD/22.png b/vlm/train/7uVcpu-gMD/22.png new file mode 100644 index 0000000000000000000000000000000000000000..11e55086586d47ecd7db48475ed157112d8e8172 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a19e89e59cf1a78df2994234d9776eb2ed11cc93039c694cfcb4c8f0e8a146a +size 404353 diff --git a/vlm/train/7uVcpu-gMD/23.png b/vlm/train/7uVcpu-gMD/23.png new file mode 100644 index 0000000000000000000000000000000000000000..afa3a849bf66c48558cbc25397acbf288fd198fd --- /dev/null +++ b/vlm/train/7uVcpu-gMD/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991b8896703098f464d7f27fb4bf95cc56c47211a016eed9fde21d770d429719 +size 452234 diff --git a/vlm/train/7uVcpu-gMD/24.png b/vlm/train/7uVcpu-gMD/24.png new file mode 100644 index 0000000000000000000000000000000000000000..11b9b873e9654977d7ff486c21956db3367ef117 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27190c582a57a021b530d191bac48311a4684f691b678ea47739cfddf486af1 +size 376412 diff --git a/vlm/train/7uVcpu-gMD/25.png b/vlm/train/7uVcpu-gMD/25.png new file mode 100644 index 0000000000000000000000000000000000000000..26b480c2ef77803f49497fa1490c6b757d9f644e --- /dev/null +++ b/vlm/train/7uVcpu-gMD/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78bf71d435284072159090748f5fdcd6aadbb10cd75183a7c39b2b99e1cfbf2f +size 468568 diff --git a/vlm/train/7uVcpu-gMD/26.png b/vlm/train/7uVcpu-gMD/26.png new file mode 100644 index 0000000000000000000000000000000000000000..2b43b245054b026917d141de5ad08aeeda1de71f --- /dev/null +++ b/vlm/train/7uVcpu-gMD/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255f03be4fe90ffdaeb195ebfee068a0f428ea4bf863823612235040241ec7fe +size 261313 diff --git a/vlm/train/7uVcpu-gMD/27.png b/vlm/train/7uVcpu-gMD/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2f629e9266783f82f117789d242cbccac9d9fac7 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002793be962d6f333c6e805fd13e20f0fb07b13853c89f949beb5fae916ccdc3 +size 460383 diff --git a/vlm/train/7uVcpu-gMD/28.png b/vlm/train/7uVcpu-gMD/28.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e3eb19929f8bb5b9a35a98d088a8748f78f14b --- /dev/null +++ b/vlm/train/7uVcpu-gMD/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964d3ad44d608ad470e47417e03f94da5cca8574a1fda1e8853e5a3a030a5cd4 +size 502532 diff --git a/vlm/train/7uVcpu-gMD/29.png b/vlm/train/7uVcpu-gMD/29.png new file mode 100644 index 0000000000000000000000000000000000000000..c3332b77ca73b98916293c162fd8528583fe9196 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ff4aee8fb994c5fe9f8f37b9af37c3f0daa51055263d82e158ec16b03060a4 +size 449709 diff --git a/vlm/train/7uVcpu-gMD/3.png b/vlm/train/7uVcpu-gMD/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f17b645337355dfa88b8de1b88a4f3560e994a24 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e75b836e90daf920df8f85a1d6d61533d20074b430ea797dae931800c000cc5 +size 598288 diff --git a/vlm/train/7uVcpu-gMD/4.png b/vlm/train/7uVcpu-gMD/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ed50af376909c4294a5b8b4f6db4a1c9d46092d1 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9970b2ee6c482c125b2d5fb03346094013244cb718b718ce9b7e805e38368f02 +size 439287 diff --git a/vlm/train/7uVcpu-gMD/5.png b/vlm/train/7uVcpu-gMD/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ef606dd985472f46b45d8429621ed34ef25d6382 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e88fd3a5241c3aed6692cc72f97baff6f09d062540e10b3e0fd244b340aef27 +size 579860 diff --git a/vlm/train/7uVcpu-gMD/6.png b/vlm/train/7uVcpu-gMD/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6ea7a2a91256cfbf77bfc0322e91cdf2fb9c6368 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb07c43714fa8de723c346dbb2cd7765ca007e9f1c0207f735b4541975a2b413 +size 574613 diff --git a/vlm/train/7uVcpu-gMD/7.png b/vlm/train/7uVcpu-gMD/7.png new file mode 100644 index 0000000000000000000000000000000000000000..807ea5428b1d8fc2a1542dff71a75f0339ab90f0 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93d1bb890ed8dc617711e0dd68eb32de91cf852e8df8790a52799761caef0295 +size 555389 diff --git a/vlm/train/7uVcpu-gMD/8.png b/vlm/train/7uVcpu-gMD/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8432ded7226d8d193ed89606ec2c0545ede48344 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91722afd652f40340da9c2f2c577665cba24dbd006142db900923f070cb14c11 +size 611449 diff --git a/vlm/train/7uVcpu-gMD/9.png b/vlm/train/7uVcpu-gMD/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9633d624844ef08b3a56ea74a6338a458b1b28b8 --- /dev/null +++ b/vlm/train/7uVcpu-gMD/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b950153f08dd46a76e2bf4f901eff80e69531ba7288d914b4106bd93bd151b73 +size 539676 diff --git a/vlm/train/8E1-f3VhX1o/0.png b/vlm/train/8E1-f3VhX1o/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1dd24fb53fa994dcc1a867a6403ce5f42c851064 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c7253aab4cba1280fe9b8975d51b5cf58775f6bc84fcc9c3db1489b04216dc +size 525453 diff --git a/vlm/train/8E1-f3VhX1o/1.png b/vlm/train/8E1-f3VhX1o/1.png new file mode 100644 index 0000000000000000000000000000000000000000..aef0228a9348f9cc58b70ce7e277502892615d45 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdaf0c55480d681488a106b859710674a905e1532f9b8beb08738296eae5643 +size 668368 diff --git a/vlm/train/8E1-f3VhX1o/10.png b/vlm/train/8E1-f3VhX1o/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b1e4a517db65ae5a31843f124307600826227ee9 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cb97b79b52b27ad192d956dae10908f74ae1430349e25b53a994b99b4ede377 +size 566383 diff --git a/vlm/train/8E1-f3VhX1o/11.png b/vlm/train/8E1-f3VhX1o/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0fb915434114bd90fd86119f0ea860f8b164fc6e --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8712fd0140975b94a35dc18a65dc3abdffc99b83fa5e8f744a1e54ffca50cdea +size 442857 diff --git a/vlm/train/8E1-f3VhX1o/12.png b/vlm/train/8E1-f3VhX1o/12.png new file mode 100644 index 0000000000000000000000000000000000000000..467f89d4b9ba6f3b28aa9649c130f1d48fef22bf --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fba6c8711152de2225cef521d9b2caca239e309e47b08574cabf38222c69d33 +size 412954 diff --git a/vlm/train/8E1-f3VhX1o/13.png b/vlm/train/8E1-f3VhX1o/13.png new file mode 100644 index 0000000000000000000000000000000000000000..58fea5cac5f4f5ace436a9ae967d097ff586a43e --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92aef3cd219e1e6f0b1750eac7893ee2a5f40fa1495001cf078e798b81bbe5ce +size 305867 diff --git a/vlm/train/8E1-f3VhX1o/14.png b/vlm/train/8E1-f3VhX1o/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5df04fbe212c838e071d934a3967547415e7a5c2 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56c781b8f8bfca82d940bcc8cff22b11e358244a4522c03cdf6a6f536bc4a48 +size 193438 diff --git a/vlm/train/8E1-f3VhX1o/15.png b/vlm/train/8E1-f3VhX1o/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5324ed2c4cce008d47f22637270a62be1aa41fa7 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916f0d9f12c3016b60a11803d6565443c1d671d9dde5c0c0f2ed7dfd17a29ade +size 760982 diff --git a/vlm/train/8E1-f3VhX1o/16.png b/vlm/train/8E1-f3VhX1o/16.png new file mode 100644 index 0000000000000000000000000000000000000000..194e0301b122d210ba1b57200a1d24e3c7bab3c3 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6eb76118b75680522ce36a9681f0bdac8ebc5f0c093564b1f796446ce2c7096 +size 772524 diff --git a/vlm/train/8E1-f3VhX1o/17.png b/vlm/train/8E1-f3VhX1o/17.png new file mode 100644 index 0000000000000000000000000000000000000000..aa8c391992f996d4521632960c175c44be158757 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698429b0a0e4814f9c2e85a0c4b72199afe9ea36c6234716614efbe79e94d18b +size 762920 diff --git a/vlm/train/8E1-f3VhX1o/18.png b/vlm/train/8E1-f3VhX1o/18.png new file mode 100644 index 0000000000000000000000000000000000000000..da5ced611d15f0a2572be49cbda32a22e7fed42c --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96acd72dff82e564f714ed0528f0541600598a96c719a39f4f3ff86056f70233 +size 210918 diff --git a/vlm/train/8E1-f3VhX1o/19.png b/vlm/train/8E1-f3VhX1o/19.png new file mode 100644 index 0000000000000000000000000000000000000000..cb0093aa4b813178e58983e4efceb19b01929c09 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e10675133900c0069d61dddcd228c12391552711a635e0c1c7d72239f6a398 +size 205061 diff --git a/vlm/train/8E1-f3VhX1o/2.png b/vlm/train/8E1-f3VhX1o/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0ef065c5a8c052055993768f653dde00ace5ebd4 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b671b090581e1a5a40f0e08f4a1ed1a429cd490adbd1bdb7f72ce773a2335743 +size 601343 diff --git a/vlm/train/8E1-f3VhX1o/20.png b/vlm/train/8E1-f3VhX1o/20.png new file mode 100644 index 0000000000000000000000000000000000000000..c7eea5459c1284e32ec956343e0268be7768634e --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0b5bcaebcf911434996bbec2a80fbe589ca451734f56889c64a1e82cc894e8 +size 204273 diff --git a/vlm/train/8E1-f3VhX1o/3.png b/vlm/train/8E1-f3VhX1o/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1758e4feb5f1a8392d65fb64c85f373c8a11ab7f --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53917b3d41fb6ba953cea03171ee467e036a11d746626eea8cb7b6a46bdbe142 +size 583055 diff --git a/vlm/train/8E1-f3VhX1o/4.png b/vlm/train/8E1-f3VhX1o/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cc0e783e3a682378b5eef11cb93eba80961cd01a --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b229ed986960162d247dde154ed2e79ab3773009d91eee1bb23a9ac476e05e52 +size 588519 diff --git a/vlm/train/8E1-f3VhX1o/5.png b/vlm/train/8E1-f3VhX1o/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e03a2df88d9b982db57b3ec483e84b2f93b557b3 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d3dc095c0a7041cd5265df9270e47e816813bf6c62b0288dd81dc7d51a1096 +size 616700 diff --git a/vlm/train/8E1-f3VhX1o/6.png b/vlm/train/8E1-f3VhX1o/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d99576753a83ea55b6be780f7c4a0a8a15db562a --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7f4b43d805421399b2e5fe3df329d3ae29e507361c0da5a6781c4acde2cbb65 +size 515781 diff --git a/vlm/train/8E1-f3VhX1o/7.png b/vlm/train/8E1-f3VhX1o/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0405f5acbf234417c36afd4f2c24ecfac75c4a92 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11d8fd5d1621e64fc033471ff26cfc207dc7e6ebd187cfd371c491381d42351 +size 488778 diff --git a/vlm/train/8E1-f3VhX1o/8.png b/vlm/train/8E1-f3VhX1o/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a17c4097c3c0726d45c14fa64cdb06524df93dd6 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41fa2378f83e08ebd610a692d1f9371ccc47ccde6222d66368120227a06ada29 +size 776429 diff --git a/vlm/train/8E1-f3VhX1o/9.png b/vlm/train/8E1-f3VhX1o/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a9a031629b4d171286fee3c548baf37a534c1ea9 --- /dev/null +++ b/vlm/train/8E1-f3VhX1o/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9b50434db7ea9dd7ca35785dfe6640f1b79db99ae81d9f3d6c6ac077892e15 +size 556587 diff --git a/vlm/train/B1e4wo09K7/0.png b/vlm/train/B1e4wo09K7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1e735e8c1d3fc34b896b0618b5326907438f309c --- /dev/null +++ b/vlm/train/B1e4wo09K7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d83cc3b6c979d501be27fb6eca9cf293685877f164774a2b06fd538dffd2e99 +size 479615 diff --git a/vlm/train/B1e4wo09K7/1.png b/vlm/train/B1e4wo09K7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5cc940aef822fa9377634995e52faac9f86aaa46 --- /dev/null +++ b/vlm/train/B1e4wo09K7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2d6a2dda21c0982e147538cf83affe4aaad014a83a3bb4da444590adaef7aa +size 550512 diff --git a/vlm/train/B1e4wo09K7/10.png b/vlm/train/B1e4wo09K7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..29351327808206451a03b8ae3047de93974138bb --- /dev/null +++ b/vlm/train/B1e4wo09K7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437e5b6cef1e71a8c7dd107a20a6ed5422bf8f2811c276c573dd701213c71ed4 +size 466764 diff --git a/vlm/train/B1e4wo09K7/11.png b/vlm/train/B1e4wo09K7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..41bd98440c96a5cc50ac9f5abc2a13dae5aebdf8 --- /dev/null +++ b/vlm/train/B1e4wo09K7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9322974714004c5a2e95a7868aaf0a58ba164712a0fce019ad6b0ee397881a +size 394754 diff --git a/vlm/train/B1e4wo09K7/12.png b/vlm/train/B1e4wo09K7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..67d06e18d174401276aee30bf9827b58a398bfc3 --- /dev/null +++ b/vlm/train/B1e4wo09K7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:244b0e128d499ecf6d6e8db338326f0784814a89df1752f93fe1341e372d747d +size 162270 diff --git a/vlm/train/B1e4wo09K7/2.png b/vlm/train/B1e4wo09K7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f695c4ec7d9d24d40b4b207d1fd0656b00f25503 --- /dev/null +++ b/vlm/train/B1e4wo09K7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b10a42fb0708f5b88f348f0ebdb918281dac81c0b798345aa36ffa05f21f6e2 +size 575339 diff --git a/vlm/train/B1e4wo09K7/3.png b/vlm/train/B1e4wo09K7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..479c38ffb7c14b9a645f8a1443ca61e0cbce6e6b --- /dev/null +++ b/vlm/train/B1e4wo09K7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7613258be98ff72cd1ef1fed324a9d1e66653b585c531aad04d526b3e5f014b +size 551480 diff --git a/vlm/train/B1e4wo09K7/4.png b/vlm/train/B1e4wo09K7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..905d4e7faab3965b04c258de340ab5ad55d8c385 --- /dev/null +++ b/vlm/train/B1e4wo09K7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed39f6a14a61f46d8c7fff273216fea45e3dc03464881b495608526fce445b78 +size 633881 diff --git a/vlm/train/B1e4wo09K7/5.png b/vlm/train/B1e4wo09K7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7762ba92045f9ca00b587ac6f88f819db75c5552 --- /dev/null +++ b/vlm/train/B1e4wo09K7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f2e209656b49c9199743d5f7602f64870e5b80fcffb92e75a6213e48c0f23f +size 1073095 diff --git a/vlm/train/B1e4wo09K7/6.png b/vlm/train/B1e4wo09K7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a84a285a08393bbea2fcf4e7ee511b463f7eb324 --- /dev/null +++ b/vlm/train/B1e4wo09K7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1e19b416bc0e7f91a8cae671715409bdda6fffe94a53636e5b04725261d88c +size 653829 diff --git a/vlm/train/B1e4wo09K7/7.png b/vlm/train/B1e4wo09K7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..51d0281c99eabebfedf50d095e884dccd9856a10 --- /dev/null +++ b/vlm/train/B1e4wo09K7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ead628132a6ac4cb6c50a8c1ba2031dbd61294fd1cd5905e8e0542245ffe6cd +size 509078 diff --git a/vlm/train/B1e4wo09K7/8.png b/vlm/train/B1e4wo09K7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..894bd998da9e762e5c3012da4349dfd1ee10e9fc --- /dev/null +++ b/vlm/train/B1e4wo09K7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc749945370c1423da7c9e00a9c5ea965de1220eaa7b619463e62336520d2e4 +size 518684 diff --git a/vlm/train/B1e4wo09K7/9.png b/vlm/train/B1e4wo09K7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f04a6acf2db939c1cbc6c2012745a94fdf64f2d4 --- /dev/null +++ b/vlm/train/B1e4wo09K7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e36fe89797c82c5de39af0d484e7651d8d5e455f5a7c9bec54e93333468dfc +size 548868 diff --git a/vlm/train/B1e7hs05Km/0.png b/vlm/train/B1e7hs05Km/0.png new file mode 100644 index 0000000000000000000000000000000000000000..092a329b8790c3b036c79c425b2c0364817c9397 --- /dev/null +++ b/vlm/train/B1e7hs05Km/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a488dd3d831d5aab3b16aac434bfdf948396c717cfab49e15b012a1cb0094083 +size 513427 diff --git a/vlm/train/B1e7hs05Km/1.png b/vlm/train/B1e7hs05Km/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d01d44d1c9b5c7c478d017da39d063d4ac8ca715 --- /dev/null +++ b/vlm/train/B1e7hs05Km/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f60646c3b6f6efda6da4a6d0450e076f23325dc56783d9fffdbf3e25076171 +size 661927 diff --git a/vlm/train/B1e7hs05Km/10.png b/vlm/train/B1e7hs05Km/10.png new file mode 100644 index 0000000000000000000000000000000000000000..df8733b0d8ff97f3e80d073cd22d95eb8ec019fc --- /dev/null +++ b/vlm/train/B1e7hs05Km/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4933db3b5d3535dfbbbdd16eaa8dfe4d5dd1f3a5d053080c3eb6cd46868a6d +size 506749 diff --git a/vlm/train/B1e7hs05Km/11.png b/vlm/train/B1e7hs05Km/11.png new file mode 100644 index 0000000000000000000000000000000000000000..161c1af48a19bcc932da8c1334466cd4127ec989 --- /dev/null +++ b/vlm/train/B1e7hs05Km/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf9f2dcd1869011ff0094268c15a8182a22f3873b3c71e1d0c458d6f9568aeb +size 509004 diff --git a/vlm/train/B1e7hs05Km/12.png b/vlm/train/B1e7hs05Km/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bffbf4c913802d52d7ef0f2c59c4e7b148292331 --- /dev/null +++ b/vlm/train/B1e7hs05Km/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a850f49298635706a8c19f60a080b251326c060cbf4c9c5a5a3a33fb3515c8 +size 94395 diff --git a/vlm/train/B1e7hs05Km/13.png b/vlm/train/B1e7hs05Km/13.png new file mode 100644 index 0000000000000000000000000000000000000000..61ddda109460265c29db8bab743eae7466d51fb9 --- /dev/null +++ b/vlm/train/B1e7hs05Km/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7e7d9d0e5c4918c5e5bb1ba706b0ed3468c8d2c8ecf85b5689eab888bbf970 +size 506904 diff --git a/vlm/train/B1e7hs05Km/14.png b/vlm/train/B1e7hs05Km/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c6332da73ee51d772e229a62621f95a2f7a59ff5 --- /dev/null +++ b/vlm/train/B1e7hs05Km/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091b7b4a74ce4ba52867f3a1fc5b2cb1d47d9149028a61a44b38c705d709b13a +size 511265 diff --git a/vlm/train/B1e7hs05Km/15.png b/vlm/train/B1e7hs05Km/15.png new file mode 100644 index 0000000000000000000000000000000000000000..af25ddd102fbacc5f9f921eb4abcfef4cccad021 --- /dev/null +++ b/vlm/train/B1e7hs05Km/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccba476830087b12ce1795bd232fa8e7976ffb7ebf2b7032ec49d5f5820e7e2 +size 527349 diff --git a/vlm/train/B1e7hs05Km/16.png b/vlm/train/B1e7hs05Km/16.png new file mode 100644 index 0000000000000000000000000000000000000000..01a64385a24e8604e8744af45bf68f0fcdce2faf --- /dev/null +++ b/vlm/train/B1e7hs05Km/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841bc6444a64757094bccbe701d09fbb16a533f2d23a8bc4be907aef1600a90d +size 483689 diff --git a/vlm/train/B1e7hs05Km/17.png b/vlm/train/B1e7hs05Km/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7a4b3ed31bd0e004c0bf5bbe9b90ac440ce655 --- /dev/null +++ b/vlm/train/B1e7hs05Km/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a28addd5f8746758727108b37b167101975b794a5f945a82d095ba19450fd9 +size 370822 diff --git a/vlm/train/B1e7hs05Km/18.png b/vlm/train/B1e7hs05Km/18.png new file mode 100644 index 0000000000000000000000000000000000000000..60080a84d16c74f099a1c076407ea482201f26d1 --- /dev/null +++ b/vlm/train/B1e7hs05Km/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca09e1dbe1e2b4f82fbb60e4b590691ded6921ee2b63ca0f203a4bb8562f329 +size 434213 diff --git a/vlm/train/B1e7hs05Km/19.png b/vlm/train/B1e7hs05Km/19.png new file mode 100644 index 0000000000000000000000000000000000000000..2e1bbedd834cd341001b0cba25d0a14aad120334 --- /dev/null +++ b/vlm/train/B1e7hs05Km/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230dc13c9b830303bd5df1da34fe9cb096dd317b2d734c5ee2dd602021ac5af4 +size 310923 diff --git a/vlm/train/B1e7hs05Km/2.png b/vlm/train/B1e7hs05Km/2.png new file mode 100644 index 0000000000000000000000000000000000000000..76e04dd2e1ed238f42ebdd008e07e91c31913f8d --- /dev/null +++ b/vlm/train/B1e7hs05Km/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5431183345ba0a6dcc9605d0a6c6c44da075d2c8893195cc408282ee62613a29 +size 507652 diff --git a/vlm/train/B1e7hs05Km/20.png b/vlm/train/B1e7hs05Km/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5c0fb7dc7957d0a854014e6b5bf0165062124e8b --- /dev/null +++ b/vlm/train/B1e7hs05Km/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1e67fb3dd3a5e56ed5c88543c483bd422cacafc51340b3894ef14378fb84b3 +size 265378 diff --git a/vlm/train/B1e7hs05Km/21.png b/vlm/train/B1e7hs05Km/21.png new file mode 100644 index 0000000000000000000000000000000000000000..a66c69fdc754a8c14a9bd6ab8ffa3494c15eecf9 --- /dev/null +++ b/vlm/train/B1e7hs05Km/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf6d60053eeca7c6305c79917b307067fc6f3e30b4a9849e5f32e388e4fc1a7b +size 271632 diff --git a/vlm/train/B1e7hs05Km/22.png b/vlm/train/B1e7hs05Km/22.png new file mode 100644 index 0000000000000000000000000000000000000000..9d9ad0b756d2828b27fef0f7d3d379383fa89088 --- /dev/null +++ b/vlm/train/B1e7hs05Km/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cbc07e46858dd25dad336e5b2738ad8f95be78d50f881688dbcfbf45e49178 +size 252433 diff --git a/vlm/train/B1e7hs05Km/23.png b/vlm/train/B1e7hs05Km/23.png new file mode 100644 index 0000000000000000000000000000000000000000..def9f17043c35c7ad9fe13063d2ba16ac8375d0b --- /dev/null +++ b/vlm/train/B1e7hs05Km/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa4cb15c923c4f47ad876464d298b09fec9598e1a37684b5ec615baa8f074aa +size 290471 diff --git a/vlm/train/B1e7hs05Km/24.png b/vlm/train/B1e7hs05Km/24.png new file mode 100644 index 0000000000000000000000000000000000000000..53a1a569dcde1119efa486fa55876e6302865d1b --- /dev/null +++ b/vlm/train/B1e7hs05Km/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9989fc676e856e17140fc6b9ddeffa0268be1753706e29438c91d683b343f744 +size 392003 diff --git a/vlm/train/B1e7hs05Km/25.png b/vlm/train/B1e7hs05Km/25.png new file mode 100644 index 0000000000000000000000000000000000000000..771134ce3982529873fd3710a4168c518ffff754 --- /dev/null +++ b/vlm/train/B1e7hs05Km/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e50fa540a1318b0d59f6103f96099f9a3677955290e23b19c0db0a457cf3c9b +size 326897 diff --git a/vlm/train/B1e7hs05Km/26.png b/vlm/train/B1e7hs05Km/26.png new file mode 100644 index 0000000000000000000000000000000000000000..90153a4f3241f854167436230335bd8c3e97772d --- /dev/null +++ b/vlm/train/B1e7hs05Km/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b58b48541f407b965b12980d9c19771456c5c1af431a7e216017b595337c5f +size 288908 diff --git a/vlm/train/B1e7hs05Km/27.png b/vlm/train/B1e7hs05Km/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a647e3db94144e8685a720ff27010315de1472d5 --- /dev/null +++ b/vlm/train/B1e7hs05Km/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc33c7a9181c47c3961147fb22fd5333f20d27e8769679c742d8cad5362cbdcc +size 131695 diff --git a/vlm/train/B1e7hs05Km/3.png b/vlm/train/B1e7hs05Km/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0d38628cae29a70263ddb8f873c9181d3bbd0baa --- /dev/null +++ b/vlm/train/B1e7hs05Km/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83fd7110e158c264e8d86c151d39dd1943b64f096586c32a87773d93e46cd2f9 +size 465478 diff --git a/vlm/train/B1e7hs05Km/4.png b/vlm/train/B1e7hs05Km/4.png new file mode 100644 index 0000000000000000000000000000000000000000..783aa7215422a4e72aaffda126643503d79c65d5 --- /dev/null +++ b/vlm/train/B1e7hs05Km/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849a1c60600684a0c6c3911a54ba34baa312cb9ceeb783da511dfa4713736d09 +size 514525 diff --git a/vlm/train/B1e7hs05Km/5.png b/vlm/train/B1e7hs05Km/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3ad4a359e7968c70592aa90b3bfd58dd353497ec --- /dev/null +++ b/vlm/train/B1e7hs05Km/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78512be459e8dd9ead5aee57b571a795617a51b29fb7a4da6fe644cf8166a10 +size 488855 diff --git a/vlm/train/B1e7hs05Km/6.png b/vlm/train/B1e7hs05Km/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0454ddb7b6b00147656873a9066f1bf56869a5c7 --- /dev/null +++ b/vlm/train/B1e7hs05Km/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af48ffec21987a9fdba694ee54c6b32eee305d17f85a27ea1d2877a011f5613b +size 626888 diff --git a/vlm/train/B1e7hs05Km/7.png b/vlm/train/B1e7hs05Km/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d263244e24c5f309db842ef5ad6f91762159d0cc --- /dev/null +++ b/vlm/train/B1e7hs05Km/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7fb502ad03b1797d099d5fbb3b31b73294b7cc281380ab0e0670c4cd0a7e24 +size 697063 diff --git a/vlm/train/B1e7hs05Km/8.png b/vlm/train/B1e7hs05Km/8.png new file mode 100644 index 0000000000000000000000000000000000000000..099995240743dc7284a395d13b27a0d954c7cc3e --- /dev/null +++ b/vlm/train/B1e7hs05Km/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d06d9f9cc5ba4e61a1fb4c4194c1d2596c8756f96ad53553d85c664765dded3 +size 590355 diff --git a/vlm/train/B1e7hs05Km/9.png b/vlm/train/B1e7hs05Km/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b137f871349059f945835382a28b8ced05c45573 --- /dev/null +++ b/vlm/train/B1e7hs05Km/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc792e4d12397b6bebf5b80eedf78b5efcc6d13a32d7399744cbab59f0979cf9 +size 525759 diff --git a/vlm/train/BJeguTEKDB/0.png b/vlm/train/BJeguTEKDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0eadf6f8c2522c570d5d8c78a34b5342a24f30 --- /dev/null +++ b/vlm/train/BJeguTEKDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b272c8863abe1c2db06d6365dcdc62433a4dd3c6cd93b3f02f4d482f61c26401 +size 507067 diff --git a/vlm/train/BJeguTEKDB/1.png b/vlm/train/BJeguTEKDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5c26a6149ed2a66fa4004ad6cacb76621fca23e0 --- /dev/null +++ b/vlm/train/BJeguTEKDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65d5bd7f3281024f332e9596a1c4680cd427e96d61c2f5da12545b07400485c6 +size 647109 diff --git a/vlm/train/BJeguTEKDB/10.png b/vlm/train/BJeguTEKDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..109c6b93b36ee89757f616995cc9931695b32d9a --- /dev/null +++ b/vlm/train/BJeguTEKDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9915d6f06999c1fedb43c33975ccfe7fd062396d9e1486a5101ec6eeb70cb5b6 +size 451452 diff --git a/vlm/train/BJeguTEKDB/11.png b/vlm/train/BJeguTEKDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..790a52fc48411fb3486575611613a39e5a1d8718 --- /dev/null +++ b/vlm/train/BJeguTEKDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:839590474def4b164a7082bbcc706d0ae0000a0864f6a29419505b080df8269f +size 493888 diff --git a/vlm/train/BJeguTEKDB/12.png b/vlm/train/BJeguTEKDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b5df3197aa62584561a8069dcc73c7618f2d8ee7 --- /dev/null +++ b/vlm/train/BJeguTEKDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143e306920f44e726b58ea0adc66488916f96d3c30b108faff61c2cba55dd948 +size 418993 diff --git a/vlm/train/BJeguTEKDB/13.png b/vlm/train/BJeguTEKDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0819d8324f549a2c8fbc0671dfb6b512a2ea3f45 --- /dev/null +++ b/vlm/train/BJeguTEKDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4368315872de239f91b1c27f6812d35ce85ec3a96c643862f8b1455c0adaa4 +size 365015 diff --git a/vlm/train/BJeguTEKDB/14.png b/vlm/train/BJeguTEKDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b9e8d3febf63eb35912085ed5f5f66485412fd80 --- /dev/null +++ b/vlm/train/BJeguTEKDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19d8f4cfa1aeb2c3fa541782c6d9d43e9a6e55c4fbe6f48c035c28346767918 +size 2039190 diff --git a/vlm/train/BJeguTEKDB/15.png b/vlm/train/BJeguTEKDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c11345df60b65e486c2aa4831c39cae6120ae2d6 --- /dev/null +++ b/vlm/train/BJeguTEKDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9469cc3f5a2fe12917f764218a63a344af6f30791c2fd8fa6da0bed622022967 +size 1240394 diff --git a/vlm/train/BJeguTEKDB/16.png b/vlm/train/BJeguTEKDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c34fe48055695359b3c559e511b4c001e4fbb3f4 --- /dev/null +++ b/vlm/train/BJeguTEKDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15115cccc8b46433e203073cf26ce4e4b9ba5b65e65b6ed76cbe043e6100125b +size 1628922 diff --git a/vlm/train/BJeguTEKDB/2.png b/vlm/train/BJeguTEKDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..678ecf72d26f091d462f382d2c5faed2cfe32258 --- /dev/null +++ b/vlm/train/BJeguTEKDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbecf19750752870d41bb55b7406f544ee9e6ca9cc623fa37a8e49321b6aca1 +size 694053 diff --git a/vlm/train/BJeguTEKDB/3.png b/vlm/train/BJeguTEKDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..54a0291d4a4bab9e99a04d7ff4eb84e3781c85a8 --- /dev/null +++ b/vlm/train/BJeguTEKDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411d0ea340e30245a82d0b83367792cff98ac325d06bf60448ec1f1310406ccf +size 582089 diff --git a/vlm/train/BJeguTEKDB/4.png b/vlm/train/BJeguTEKDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4ec1dad986d624f236cec3563461a7f521094952 --- /dev/null +++ b/vlm/train/BJeguTEKDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba591c1158d6659ff1d6c7d4069674789290f1285b4006cf6bab1b7be2d99647 +size 551046 diff --git a/vlm/train/BJeguTEKDB/5.png b/vlm/train/BJeguTEKDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..22da5e9f9d5cd7493241a1bd919f128a6d8471d4 --- /dev/null +++ b/vlm/train/BJeguTEKDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af443cd0525262e55516b44c5dd521c3d786855a041ef9584a7eda909825ac0 +size 492492 diff --git a/vlm/train/BJeguTEKDB/6.png b/vlm/train/BJeguTEKDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd006e389c8832e9f859bf460f6fbb59491f499 --- /dev/null +++ b/vlm/train/BJeguTEKDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5d321d4ce32f931d7934435a621ac012cf857e7f6391787038a29043b45e23 +size 499483 diff --git a/vlm/train/BJeguTEKDB/7.png b/vlm/train/BJeguTEKDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5f4fd0dc34317b65670446ba017f01d4e2ae9363 --- /dev/null +++ b/vlm/train/BJeguTEKDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d62d71a9d0ddb6a919c6aec1f2d637e0c2d822ffa37a23e2a0afc1cc516f82 +size 567655 diff --git a/vlm/train/BJeguTEKDB/8.png b/vlm/train/BJeguTEKDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0c12abb1a8013202966d82d21735680554271164 --- /dev/null +++ b/vlm/train/BJeguTEKDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92789d043a3d4e07f7c4ab050fcde60a1287dea6173bb7bb8c2d59d64ec28c4d +size 570981 diff --git a/vlm/train/BJeguTEKDB/9.png b/vlm/train/BJeguTEKDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd099f840fada22b56ebe3ecf3eb7c3607e8b52 --- /dev/null +++ b/vlm/train/BJeguTEKDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1fec1cdb51378bd677c1f7a87e45dd1f3d7f85983451be1a89b5b57bb8ea11a +size 609667 diff --git a/vlm/train/BJxg_hVtwH/0.png b/vlm/train/BJxg_hVtwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..76139c46923381c636e881b7e5323158e1a5c671 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb8cd31a2cf6cb563cc81f4b7d0c1260e66de4ee239104c688446d78e2ec275 +size 518412 diff --git a/vlm/train/BJxg_hVtwH/1.png b/vlm/train/BJxg_hVtwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..979d7cb93c40dfc37de48c2d1f8382305c530b9d --- /dev/null +++ b/vlm/train/BJxg_hVtwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f11cd6d14bbb43952929e9c9874d175153a02bd8b042349a866c2d0ba0d5c323 +size 559211 diff --git a/vlm/train/BJxg_hVtwH/10.png b/vlm/train/BJxg_hVtwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..820e276532e97b2d7c36a57246b782a87c38d6a3 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efd829b4b8564f06a5bdd4a0aa510ad932642d3d484e21d2e42cfce1297dd1d +size 441896 diff --git a/vlm/train/BJxg_hVtwH/11.png b/vlm/train/BJxg_hVtwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d639a0b34432a66e6b652d8138c94c923672d249 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8725c7f7e7c8258889757a46eb94d8a88bbaabc6685178747201ea5cd332c8da +size 332068 diff --git a/vlm/train/BJxg_hVtwH/2.png b/vlm/train/BJxg_hVtwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5a6a1d20f0fc332d51681dfff29f28477b9f8194 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a43eb19c7ade9c117bee2b94ce5925e0e127ca9ad77ca1a17d7e7492bf4d46 +size 554136 diff --git a/vlm/train/BJxg_hVtwH/3.png b/vlm/train/BJxg_hVtwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f548addad051d9a7f607d59451e14285f1c0fccc --- /dev/null +++ b/vlm/train/BJxg_hVtwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67b0f9ce2efad2dfecc6a7176429d916978247215be9b3e40bb6d2e74e0f0d6 +size 458692 diff --git a/vlm/train/BJxg_hVtwH/4.png b/vlm/train/BJxg_hVtwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5642b874db54c94a8c3fb3c27141b02bc70cfef5 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad7b61be13ef5423e783e57ababbd55cba555a37f3646ee15ecb8d35c13d7a5 +size 556634 diff --git a/vlm/train/BJxg_hVtwH/5.png b/vlm/train/BJxg_hVtwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e3d273d1e7bb18104bdc144d24726102b4dcde --- /dev/null +++ b/vlm/train/BJxg_hVtwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af9c5ce197c4439c5ba422cb33747242c6309c101ea9e1dd31f230eaa6c5cbf +size 533578 diff --git a/vlm/train/BJxg_hVtwH/6.png b/vlm/train/BJxg_hVtwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e323e0452789af51232adef9d13ef7a8afe2ac84 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd5faac59a8b595a0d92e93dabb63becee75aaf89418c197cc536a8c77bb95a +size 548269 diff --git a/vlm/train/BJxg_hVtwH/7.png b/vlm/train/BJxg_hVtwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5495e07a5479e56babedca02fea4eeaa15302916 --- /dev/null +++ b/vlm/train/BJxg_hVtwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28830756a7baa145a497a4c194c7fa96115aa10ac09638c1d7d51d9ecb3cfa8c +size 583463 diff --git a/vlm/train/BJxg_hVtwH/8.png b/vlm/train/BJxg_hVtwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..659d658b4e40ec4098a7fb8ab963dbaa5a07ccbb --- /dev/null +++ b/vlm/train/BJxg_hVtwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a7758469a460abb3d2c5b5e1d19f5c5160d6f642ef2178ba60cbbe596cc5f4 +size 520575 diff --git a/vlm/train/BJxg_hVtwH/9.png b/vlm/train/BJxg_hVtwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..13076af477bb2da17d00877d9cce3e4a9062dede --- /dev/null +++ b/vlm/train/BJxg_hVtwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c4518ea1e787f9ab2d0fd05cf02a2f45a8dfef4de3ea14f09ba85b58e210f5 +size 586050 diff --git a/vlm/train/BkSDMA36Z/0.png b/vlm/train/BkSDMA36Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..0f9ef1a1d2d3a90a6efa62c058c59465ee808985 --- /dev/null +++ b/vlm/train/BkSDMA36Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60fa5658bc221d5f43496792cdd58cc3680a0dc43889a9cce846cc41ca2d89c0 +size 455010 diff --git a/vlm/train/BkSDMA36Z/1.png b/vlm/train/BkSDMA36Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..eaab3fe2e126fe42688f950180c545dde06f7cfc --- /dev/null +++ b/vlm/train/BkSDMA36Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc4fb2eeeea7e3b6019964d3767027e2a557b48482f80486404ba047040bb7c2 +size 569035 diff --git a/vlm/train/BkSDMA36Z/10.png b/vlm/train/BkSDMA36Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7a31c37268ad493f7f99ea7a6e5749b2e2544a8e --- /dev/null +++ b/vlm/train/BkSDMA36Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81b3f3ede3fc259330246e6b4875cf40858b5e7a49dfce261b19b9aa903944a +size 280248 diff --git a/vlm/train/BkSDMA36Z/11.png b/vlm/train/BkSDMA36Z/11.png new file mode 100644 index 0000000000000000000000000000000000000000..668136c20789df5d4b52d543ffc4ae5dfcbda25d --- /dev/null +++ b/vlm/train/BkSDMA36Z/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9add43e567af16022aa2aff225d37ae2b4d04b0b923713f4679a3f54a2c39a6f +size 337379 diff --git a/vlm/train/BkSDMA36Z/2.png b/vlm/train/BkSDMA36Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff07336efdd1607b3acee919c81b7d857a8a196 --- /dev/null +++ b/vlm/train/BkSDMA36Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f90937ff5ee6f7059878ed9bf9f1ddbdb182a0f978b01f5b628594d61f3c6b +size 439409 diff --git a/vlm/train/BkSDMA36Z/3.png b/vlm/train/BkSDMA36Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..378df4200f68109e28b55fcfdb7ac751aeeda9f7 --- /dev/null +++ b/vlm/train/BkSDMA36Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da56aee40eafb2674e82ff3607404cfd82c2dd4a4d3855b8ef1761c72c29fd31 +size 491447 diff --git a/vlm/train/BkSDMA36Z/4.png b/vlm/train/BkSDMA36Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..29a720bd647ea896156be10d4f6f7c44fae2d793 --- /dev/null +++ b/vlm/train/BkSDMA36Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ff56182fbe24841e548e9e80cc1de895a7fd69f82b352e8deb8a2ef9745cb3 +size 414960 diff --git a/vlm/train/BkSDMA36Z/5.png b/vlm/train/BkSDMA36Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3207ea96f3b7647693c24136e4c08483838a9944 --- /dev/null +++ b/vlm/train/BkSDMA36Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f12e6d58db126c7c3cdb2c38fb7fbd2ee447b03bf0142f0d3e0de26d007ade97 +size 441489 diff --git a/vlm/train/BkSDMA36Z/6.png b/vlm/train/BkSDMA36Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4a52f31da5fcc33027817ea4b0658cd992f31a79 --- /dev/null +++ b/vlm/train/BkSDMA36Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce332022edcb270f07b8b0a61e5c9187311252befb011f27ba86ff92ca6947ab +size 475789 diff --git a/vlm/train/BkSDMA36Z/7.png b/vlm/train/BkSDMA36Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..11b57c32cf0d0c42efe6d0064af2a9e7be7ed031 --- /dev/null +++ b/vlm/train/BkSDMA36Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402a3d74363369d9c68205da672408c91a3224a61eed6fb742622f9c752ecd1d +size 531409 diff --git a/vlm/train/BkSDMA36Z/8.png b/vlm/train/BkSDMA36Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..91c715763ad7dd8ad40352cdef94e3987ca46132 --- /dev/null +++ b/vlm/train/BkSDMA36Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f0e81b2537c7902fdfa745df47540945cd07275f3dc3fbabb10b9312f98feb +size 439114 diff --git a/vlm/train/BkSDMA36Z/9.png b/vlm/train/BkSDMA36Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a9616ec9aef20ba64df4df6787e4672677c9bec9 --- /dev/null +++ b/vlm/train/BkSDMA36Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9849ab9aa52f8ae064f1cba323490e7744f8edc57b0877724db437a5dad9908e +size 507915 diff --git a/vlm/train/BkjLkSqxg/0.png b/vlm/train/BkjLkSqxg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dd09fbdd01a92fa4046f539bf7166511253fd320 --- /dev/null +++ b/vlm/train/BkjLkSqxg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8501bdb9d1eb01ceb03bc3d8f756ad01c0a9251c303474bd8f445357c6aa8dac +size 481393 diff --git a/vlm/train/BkjLkSqxg/1.png b/vlm/train/BkjLkSqxg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a3ae153a5dcb489c31122e3fa9819e22b27f67 --- /dev/null +++ b/vlm/train/BkjLkSqxg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f6f054e3dd45921020e17cb4190171f0459d53ffe053574ba30abc1d38787ad +size 606809 diff --git a/vlm/train/BkjLkSqxg/10.png b/vlm/train/BkjLkSqxg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..381b55dab1921d3ed23f30fa3993a45b29742fd4 --- /dev/null +++ b/vlm/train/BkjLkSqxg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d595dfb64acbed0720177a89ef5e0e49d9cda7b26a60fe8f228ef2bd15f55e +size 329589 diff --git a/vlm/train/BkjLkSqxg/11.png b/vlm/train/BkjLkSqxg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f735f143862b10ed49395ac4a5eeab0132d2b706 --- /dev/null +++ b/vlm/train/BkjLkSqxg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc44c0dbce4625bb096278a918a88f93f588e4d7dfb3150af204afa20ec850d +size 423148 diff --git a/vlm/train/BkjLkSqxg/12.png b/vlm/train/BkjLkSqxg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ce75b5819609a2849140684e70b6115c685e6ad2 --- /dev/null +++ b/vlm/train/BkjLkSqxg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff29beb11756c0b0f64253074e128e6e36387137f2e8bdcb56e365b1c71c1b4 +size 168704 diff --git a/vlm/train/BkjLkSqxg/2.png b/vlm/train/BkjLkSqxg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f0cec2fe2d1c9f5ad4bfe09f3082556a45a2ebe7 --- /dev/null +++ b/vlm/train/BkjLkSqxg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb42309e09a4bae55bfbf3f424735eddbb541ac940687f6f75ba7c188a087fbc +size 589478 diff --git a/vlm/train/BkjLkSqxg/3.png b/vlm/train/BkjLkSqxg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..805fb6dff18391fe6ab9e43275439e9159aaff01 --- /dev/null +++ b/vlm/train/BkjLkSqxg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3b35479e6d6526ca464c00bf2b0ad2f38b6c84dcb390648a319bef74b44052 +size 469317 diff --git a/vlm/train/BkjLkSqxg/4.png b/vlm/train/BkjLkSqxg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d249dcd26029dcd8f6647aaa0648c6e767435dfb --- /dev/null +++ b/vlm/train/BkjLkSqxg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7dcfff739c3daeb748401d8b074e7f51ad412e74a8a8275b21b233f4e3a44f +size 553584 diff --git a/vlm/train/BkjLkSqxg/5.png b/vlm/train/BkjLkSqxg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbe992ddffb75abd47bf9ceb289ac894158e32e --- /dev/null +++ b/vlm/train/BkjLkSqxg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dae72966ef4aef4fc3ca796177b4ebda14dab79cd8aee9bc3d663e068f8cb24 +size 507562 diff --git a/vlm/train/BkjLkSqxg/6.png b/vlm/train/BkjLkSqxg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e510f51069c02f361dc03490acf97722dc3bfb0a --- /dev/null +++ b/vlm/train/BkjLkSqxg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ff47adfdde381870362469f1c4d178d977dc1bc46401295c19fd3cce6b75a68 +size 746995 diff --git a/vlm/train/BkjLkSqxg/7.png b/vlm/train/BkjLkSqxg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2db69e4ff9e3a7d969aa7a31c0bf71c877da771e --- /dev/null +++ b/vlm/train/BkjLkSqxg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd6c82b15cf10bf8ada3629feff770e31fed671cde70f65271cced3e0e4e006 +size 467310 diff --git a/vlm/train/BkjLkSqxg/8.png b/vlm/train/BkjLkSqxg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..edfbcffbe340fefa6b53ce0af00753703ba861d6 --- /dev/null +++ b/vlm/train/BkjLkSqxg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f38183aab084270c5d80e9321d4a5bc75fa4ee8ca4e20d05ebafe5035ee1ff +size 552097 diff --git a/vlm/train/BkjLkSqxg/9.png b/vlm/train/BkjLkSqxg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..33668b9d52571ead2ab804a763640db642f5bcd7 --- /dev/null +++ b/vlm/train/BkjLkSqxg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10554c6211f9e6bb5f15968041f9a94f6faa040be9bedb3fdd710b0d414de1dd +size 601446 diff --git a/vlm/train/ByC7ww9le/0.png b/vlm/train/ByC7ww9le/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b0262978de6144ad809e6e771bb3de57a2a50c44 --- /dev/null +++ b/vlm/train/ByC7ww9le/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45e908e8d75beceea30b6bf03829cd46c8719d72e7fb8895b7d20ce0e73a7011 +size 455125 diff --git a/vlm/train/ByC7ww9le/1.png b/vlm/train/ByC7ww9le/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd59b9110371ab774388d3b8e9fc9a5a3944153 --- /dev/null +++ b/vlm/train/ByC7ww9le/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff524a278f5a829e846ccd776b299b94b27a792cd5e98f88f7e94918aa1ff7b8 +size 582471 diff --git a/vlm/train/ByC7ww9le/11.png b/vlm/train/ByC7ww9le/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f164f464579895f2b96053552bd2c3bb7257287d --- /dev/null +++ b/vlm/train/ByC7ww9le/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0c0985ef7c58b6e5eb0ac92fcaf853abb6c8daf2968d6f992b9d6f1f180c40 +size 447241 diff --git a/vlm/train/ByC7ww9le/12.png b/vlm/train/ByC7ww9le/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3782ad48ee915295c183ce03007bddec1b4514a2 --- /dev/null +++ b/vlm/train/ByC7ww9le/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee367d4e689058c617576b868a2e5311b065e5a91bcfe211e42d8e09f9b6552 +size 591696 diff --git a/vlm/train/ByC7ww9le/13.png b/vlm/train/ByC7ww9le/13.png new file mode 100644 index 0000000000000000000000000000000000000000..68e649cfe00d02b62211cba6ba7660d753e4715e --- /dev/null +++ b/vlm/train/ByC7ww9le/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78241e2884619b2de32114cbc1ae39ccce657abfa6a4f1f8296384da41bf053d +size 456746 diff --git a/vlm/train/ByC7ww9le/14.png b/vlm/train/ByC7ww9le/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8bcd7121d3180ac73c228d3f6c7169aa4e6e3283 --- /dev/null +++ b/vlm/train/ByC7ww9le/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93df3457f4cb02b3e0596c18ad9e9bbdd3b200d907479fbbc47b81ea83daf16f +size 409073 diff --git a/vlm/train/ByC7ww9le/15.png b/vlm/train/ByC7ww9le/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e83ddc9b1e647f53561a140d3a6651e1efebe3a9 --- /dev/null +++ b/vlm/train/ByC7ww9le/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a0d914533aa84d4171c0684773a523eb8381ae65598d527c0493e0a098134d +size 333545 diff --git a/vlm/train/ByC7ww9le/2.png b/vlm/train/ByC7ww9le/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a44b246039a438ec63ec6070bc240a0931dfebea --- /dev/null +++ b/vlm/train/ByC7ww9le/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a85ca80e54374f331b416fd9ae1e2dc146959a886fca36b03c6ea6ec3d073a5 +size 473331 diff --git a/vlm/train/ByC7ww9le/4.png b/vlm/train/ByC7ww9le/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c33f5ca1769167b963b3261b0942ae9a9e846e3 --- /dev/null +++ b/vlm/train/ByC7ww9le/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37eeb8e2fe91dea18057c97a514f3c8ee8e89dea8049e1eade5342368d08c4e +size 439159 diff --git a/vlm/train/ByC7ww9le/5.png b/vlm/train/ByC7ww9le/5.png new file mode 100644 index 0000000000000000000000000000000000000000..770f8d49d304bd5e8cab53faf713dcbd4f974812 --- /dev/null +++ b/vlm/train/ByC7ww9le/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cd15f982475975188b8d8fa750413b81dd1edbdb62711d112485716ade6ccb +size 489036 diff --git a/vlm/train/ByC7ww9le/7.png b/vlm/train/ByC7ww9le/7.png new file mode 100644 index 0000000000000000000000000000000000000000..768b42a233e6f0b1ca3bb62a9e07f8fbcc83df95 --- /dev/null +++ b/vlm/train/ByC7ww9le/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5bbb405164ae9a8f1bd7113b320d196193edc7e61543fd2b3c406bfe62cb271 +size 552317 diff --git a/vlm/train/ByC7ww9le/8.png b/vlm/train/ByC7ww9le/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bdd068016f14c87552b8d46f94a3a01609b824ae --- /dev/null +++ b/vlm/train/ByC7ww9le/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cc623cb1d6370be1ddf9330f8cf02c440b4a70921be04bf959df72b0414066 +size 549318 diff --git a/vlm/train/ByC7ww9le/9.png b/vlm/train/ByC7ww9le/9.png new file mode 100644 index 0000000000000000000000000000000000000000..291280982b2e555407d40a4b0fac272e25dffadd --- /dev/null +++ b/vlm/train/ByC7ww9le/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07efdd65128a0215be8096a14eb8ffb642b143de266996a4d2f4da913d38d024 +size 518825 diff --git a/vlm/train/ByeSdsC9Km/0.png b/vlm/train/ByeSdsC9Km/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3c5b81539214e594ae37f7a306bdc104211fc802 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2def5d69b93667ca791ff4ac06fdd19987e56e544fa30e2a15b81336c6a7545 +size 464619 diff --git a/vlm/train/ByeSdsC9Km/1.png b/vlm/train/ByeSdsC9Km/1.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ba6b45f748563e2930dafab68b7f5dc8f26a60 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88d9d80625fe18145db6b5ae5adff753375f4985373e7a2a30f6e9b27ce6155 +size 508496 diff --git a/vlm/train/ByeSdsC9Km/10.png b/vlm/train/ByeSdsC9Km/10.png new file mode 100644 index 0000000000000000000000000000000000000000..372dd7be7fb2c5f779c734ad2d3c897abdd4b306 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e69f751d17c157eac8b90f56015a7d1df90f4a51dfc3c837708a9191a8a023d +size 466109 diff --git a/vlm/train/ByeSdsC9Km/11.png b/vlm/train/ByeSdsC9Km/11.png new file mode 100644 index 0000000000000000000000000000000000000000..dc5dc2f340171861d32073c13b3414f7b1386559 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f5136098439f2b385278961ca79aff809022e720a7950896e16dcc582ff847 +size 285138 diff --git a/vlm/train/ByeSdsC9Km/12.png b/vlm/train/ByeSdsC9Km/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4253555b67f90d1f2ba16b6c253049ea30487a8d --- /dev/null +++ b/vlm/train/ByeSdsC9Km/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8b7db2b3d562eda29ee70a6afebbf1b7563e64d4ad817eb57346f851959c77 +size 391194 diff --git a/vlm/train/ByeSdsC9Km/13.png b/vlm/train/ByeSdsC9Km/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ee991301c400d0bfc32926c2e42d77a678217e5c --- /dev/null +++ b/vlm/train/ByeSdsC9Km/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e9ab324859cfb5c8bd8fada2ce820211259caa37b07f27587ede22deff1198 +size 297053 diff --git a/vlm/train/ByeSdsC9Km/2.png b/vlm/train/ByeSdsC9Km/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7fc31bdbcc9f3d8c0e698cfde974d7cfc3fe9dc8 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a087257bccc5f1983965e8c321a4e7277753f60a07956bdd5e0c967c841a53 +size 482820 diff --git a/vlm/train/ByeSdsC9Km/3.png b/vlm/train/ByeSdsC9Km/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9940c18be87f0384b664a646bf4de2a5a33f353e --- /dev/null +++ b/vlm/train/ByeSdsC9Km/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f95902f519a7e0566dd4a91a1e312ce7eddb7de45578feb16a472dba3a98fa8 +size 420826 diff --git a/vlm/train/ByeSdsC9Km/4.png b/vlm/train/ByeSdsC9Km/4.png new file mode 100644 index 0000000000000000000000000000000000000000..87f00a8074f79885f9a994742630cf952809a457 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd87f677b45ea4a9847f01fc8ac5ed88e1200fcf69e956b565ccc2ae07d21ae4 +size 549233 diff --git a/vlm/train/ByeSdsC9Km/5.png b/vlm/train/ByeSdsC9Km/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8e3bed8a4741d99591e9449f676c8a2463a51c83 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc0c1adcef6ddd14a407f61371b7e5bd6b2a6e1173bae03e7daae45b9370e2b +size 506453 diff --git a/vlm/train/ByeSdsC9Km/6.png b/vlm/train/ByeSdsC9Km/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6b5978d94fb8a265dae6c985c9bf4f0ea1b9457e --- /dev/null +++ b/vlm/train/ByeSdsC9Km/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d9f7251ff843c3618be9d131d1140b9001e6d3991e623b6b90580e649f687c +size 463902 diff --git a/vlm/train/ByeSdsC9Km/7.png b/vlm/train/ByeSdsC9Km/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ce9991d0426fe5c932a89d7d1503d83ee5368236 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049967b572b2cae947cf544b7e7f1a17cdfd942a2f0607951b4684ef543542c9 +size 512840 diff --git a/vlm/train/ByeSdsC9Km/8.png b/vlm/train/ByeSdsC9Km/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ce54956b7c3b5ef0633c04c955fa268e4eb326d3 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d35f5e25bd10e3614cd4c8cfacb9c80b4c47942abfab4fcb5a746f6e080003 +size 509666 diff --git a/vlm/train/ByeSdsC9Km/9.png b/vlm/train/ByeSdsC9Km/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ad714a42918967982be4bbe8e8eedd278e58c8 --- /dev/null +++ b/vlm/train/ByeSdsC9Km/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0adbd6315b594f37bd670098783043ea70fd79ab0c0f539b2ee8004e6ffb89c +size 401221 diff --git a/vlm/train/CGFN_nV1ql/0.png b/vlm/train/CGFN_nV1ql/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4131791fad648aca3b9c442c267ebfe3951b4912 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3773e78de56275f66add8aefea666ca0c5b0580e4ce6c1260d427887cb1ca8 +size 458023 diff --git a/vlm/train/CGFN_nV1ql/1.png b/vlm/train/CGFN_nV1ql/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0fc32a334cbb0c88a642de47831b5cf9fdd9f3e0 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d11ae43ccd1d8142cc57dfe1803ebd87ee77d6e3fef3983354760a3b106082 +size 521540 diff --git a/vlm/train/CGFN_nV1ql/10.png b/vlm/train/CGFN_nV1ql/10.png new file mode 100644 index 0000000000000000000000000000000000000000..7660aa8e64aa4ac09105af3c022af5c64dd4afa0 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eda1e0a2ed70e427a11bd6740a8b08308790f01c7d2433c1340d6cc6544fb5b +size 576071 diff --git a/vlm/train/CGFN_nV1ql/11.png b/vlm/train/CGFN_nV1ql/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ef8bfa968d8c1cd2e26305faa382a19976497f66 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3dca3bfab234c52223eb742574486186ef0355cbc093ea2ddc7df87fc90907 +size 416825 diff --git a/vlm/train/CGFN_nV1ql/12.png b/vlm/train/CGFN_nV1ql/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a760ae8858c9420bdebee63d63dd2a0d8ecc63d8 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2739071c7a67c1012ee519b64a6ce8c30ac4351d262f2ca2c43da9a5c44b49bc +size 330548 diff --git a/vlm/train/CGFN_nV1ql/13.png b/vlm/train/CGFN_nV1ql/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8b045d724de9e5633d8e90eabc5dca273a7c44 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aafa600ffa07dfa4a35efb138caa501e5fb4a1a0e42481112e4d05e241722f87 +size 184617 diff --git a/vlm/train/CGFN_nV1ql/2.png b/vlm/train/CGFN_nV1ql/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f24a28538a2137e6cfe38ff869fde842ce494528 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66aab09be966484721576c043299e2c65f89496e988a9592d4e31296c3fd934 +size 516764 diff --git a/vlm/train/CGFN_nV1ql/3.png b/vlm/train/CGFN_nV1ql/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6f997f0e838cd4ea8c511d8f211de26a8d21e290 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6d99c0b403f90f371a5e9a7cb5483028edc70c1a81d7ed5c0d916a0ea67710 +size 452552 diff --git a/vlm/train/CGFN_nV1ql/4.png b/vlm/train/CGFN_nV1ql/4.png new file mode 100644 index 0000000000000000000000000000000000000000..aa6f8c3f887e70a0adae3ea9b819b0c238d49ec8 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04abe3b035968011299db9049e7299e46d6670e7d4fb4d85d7eba6c558277ea5 +size 504530 diff --git a/vlm/train/CGFN_nV1ql/5.png b/vlm/train/CGFN_nV1ql/5.png new file mode 100644 index 0000000000000000000000000000000000000000..571b55701084c0c5bc04e236091693b1f1118f32 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78c11b41cf868a090a08f9f2ea6ca9b40ad44a1fa83e05329fd4defa4a76f71 +size 481300 diff --git a/vlm/train/CGFN_nV1ql/6.png b/vlm/train/CGFN_nV1ql/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1c3c34209e862e657bf5b1d93c9c340224aebdb5 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e39a16db0e9a689092e3725970d83ec759225b5b4535a22eb97fa8353348005 +size 828124 diff --git a/vlm/train/CGFN_nV1ql/7.png b/vlm/train/CGFN_nV1ql/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fff0d8eac1132ff8af3154bfb122de5860ea9906 --- /dev/null +++ b/vlm/train/CGFN_nV1ql/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466ce7162da52a797049f82206610bbb8c8ff08d023b9cf12e0f471a2a813e17 +size 405527 diff --git a/vlm/train/CGFN_nV1ql/8.png b/vlm/train/CGFN_nV1ql/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7a1bddb8ae3209f055934f48c4016ca876b2ae8e --- /dev/null +++ b/vlm/train/CGFN_nV1ql/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b338a091a4dfdea2a2552e055b2f11e9b39b2984edd52c3552802a6e97ec7b +size 492191 diff --git a/vlm/train/CGFN_nV1ql/9.png b/vlm/train/CGFN_nV1ql/9.png new file mode 100644 index 0000000000000000000000000000000000000000..96a577316cf86b0c6eba126d8ef9e2d13bc6bf9f --- /dev/null +++ b/vlm/train/CGFN_nV1ql/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8846e533ecbb8d48b85d15af24311348d78f7144076784394b11a1f50f4a3f +size 545172 diff --git a/vlm/train/D1E1h-K3jso/0.png b/vlm/train/D1E1h-K3jso/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7181dbdef3079b6347091a0b77ed148a366f87db --- /dev/null +++ b/vlm/train/D1E1h-K3jso/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af2f9bb1a2fe5d32d814ba7504a01dc845cafa6dc1639747362e035ef4fcc4c +size 474497 diff --git a/vlm/train/D1E1h-K3jso/1.png b/vlm/train/D1E1h-K3jso/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6e05de1fd07f6a2f28c6d77a0becc3bb9a847692 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0172ed1091255a0bcf7e9373a0aad778989dfc71ece016be9a4fbe38e94417bd +size 816355 diff --git a/vlm/train/D1E1h-K3jso/10.png b/vlm/train/D1E1h-K3jso/10.png new file mode 100644 index 0000000000000000000000000000000000000000..be4236c049a8e533b804ef8af01f6f8ab8eeba9c --- /dev/null +++ b/vlm/train/D1E1h-K3jso/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18890ba31e56517545501102c203d4a1c8e800781b90a377298f7467fb059534 +size 233327 diff --git a/vlm/train/D1E1h-K3jso/2.png b/vlm/train/D1E1h-K3jso/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b1a3c144b164363d4d752536f4cea930b9cb1ea8 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f794954b9dfea76fd7d8d3edff4a6624dba611a184f8db570a65e8c032211f +size 568225 diff --git a/vlm/train/D1E1h-K3jso/3.png b/vlm/train/D1E1h-K3jso/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b71c7389757a96447c2518ee2978d06bbb9f8194 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c39bdd61581660318cfe7961df6e29e6a90a83a8d3e53a9cf1433c6a541d81 +size 446553 diff --git a/vlm/train/D1E1h-K3jso/4.png b/vlm/train/D1E1h-K3jso/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c848b2947612bbacdd1583e6d0c7f9169ffaacf6 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f3e84a67cae6283c8a7b9c88ebe476e32d2e82588280383d8d0a56f4997927 +size 461701 diff --git a/vlm/train/D1E1h-K3jso/5.png b/vlm/train/D1E1h-K3jso/5.png new file mode 100644 index 0000000000000000000000000000000000000000..aac99f22db9bc476201fac1ece9736fd67078893 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab93c88f591d00c1df748e9685119670fd44baf4e44e0485758a09f0178bf68 +size 613328 diff --git a/vlm/train/D1E1h-K3jso/6.png b/vlm/train/D1E1h-K3jso/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ced9a14953621d4f0fbb241a2ff3c5947bd3f26e --- /dev/null +++ b/vlm/train/D1E1h-K3jso/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45e0766572f9344e51a8b1efffec08035513143f57480dfb2010ea80366bc45 +size 764369 diff --git a/vlm/train/D1E1h-K3jso/7.png b/vlm/train/D1E1h-K3jso/7.png new file mode 100644 index 0000000000000000000000000000000000000000..358fcbd0cf8e851a86bf9de68b215e50b7cf829c --- /dev/null +++ b/vlm/train/D1E1h-K3jso/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9438995b3c79352079b18a2f1694af076fd1681b6d4e9c01bbda6c3fc9570322 +size 477646 diff --git a/vlm/train/D1E1h-K3jso/8.png b/vlm/train/D1E1h-K3jso/8.png new file mode 100644 index 0000000000000000000000000000000000000000..20ab6c062934b30a4f35625900b57fd65bdfa968 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66facef7ddf9d28b6cbe15fb9b51f94f55560a636f541505fd8f561be97c9fa9 +size 473375 diff --git a/vlm/train/D1E1h-K3jso/9.png b/vlm/train/D1E1h-K3jso/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a37fc4e0d297a9fa218864a0aaf1418690ad7750 --- /dev/null +++ b/vlm/train/D1E1h-K3jso/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a885187ff45c204a08b7e52bc6a20f2d05161f8fcaf2d10dd7c80ddb90f809 +size 476756 diff --git a/vlm/train/FGqiDsBUKL0/0.png b/vlm/train/FGqiDsBUKL0/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a9da6bb50b21a0219690c8c9583fbdea6619ef78 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b01c774d4a3d437c356d59d1d743aafb84c31be818454f3f25d4b9cf9261f8 +size 811963 diff --git a/vlm/train/FGqiDsBUKL0/1.png b/vlm/train/FGqiDsBUKL0/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3b795fb2ab02fa012dd6bc64c12739a21ac9494c --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbafa1bd44acd5674fa6ae435b6a550d71dfdf64f4904fa3b0ef97f4f664f63f +size 735044 diff --git a/vlm/train/FGqiDsBUKL0/10.png b/vlm/train/FGqiDsBUKL0/10.png new file mode 100644 index 0000000000000000000000000000000000000000..95ac8524b58a81928ce9c098a18ae5890f95c013 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65231ce3c7535e7caffe19dd3788721c37719e385fc94d070ba7016c8bed1df8 +size 535047 diff --git a/vlm/train/FGqiDsBUKL0/11.png b/vlm/train/FGqiDsBUKL0/11.png new file mode 100644 index 0000000000000000000000000000000000000000..738a070f4dedda6048a3b7cb2e82550a5be7edac --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0007eaa6c66815ea65156b2bd03fc71a615e43e557552c0932e8a80b08b7361d +size 116763 diff --git a/vlm/train/FGqiDsBUKL0/12.png b/vlm/train/FGqiDsBUKL0/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a4a5ee5a6bb5c2e7d17b829e14081ae484f9b60b --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc24260512ebe817fc8af6e160a80295e422589fe179850a031533da8e8acac6 +size 1611349 diff --git a/vlm/train/FGqiDsBUKL0/13.png b/vlm/train/FGqiDsBUKL0/13.png new file mode 100644 index 0000000000000000000000000000000000000000..187a566bd86bc89c5b8d5c21c967a15eecb59a75 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894a6f7e00c5f22f90d34c75fbace6896c9c5b55295628d09c8b22e24b1fe388 +size 1397766 diff --git a/vlm/train/FGqiDsBUKL0/14.png b/vlm/train/FGqiDsBUKL0/14.png new file mode 100644 index 0000000000000000000000000000000000000000..27c75025cf63432855352e4898cb3c5be6b71823 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169b8f52fd8eb534921a6426e6f073449039180f6f4dfb086c8ae401cb898baa +size 730223 diff --git a/vlm/train/FGqiDsBUKL0/15.png b/vlm/train/FGqiDsBUKL0/15.png new file mode 100644 index 0000000000000000000000000000000000000000..bff6986917caee0bd86cc68a2efafaebbae6ac33 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58d64ec11ca6e8545b26df90dc7184dabb54ffa88a50229b42c8ca7d087eb38 +size 478964 diff --git a/vlm/train/FGqiDsBUKL0/16.png b/vlm/train/FGqiDsBUKL0/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d68b238e923bab37209e553a3c70b41338f675 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3bda1ebac79ef850c5f7f99b03482e9f2c20c0320fd91459e092f566463349 +size 559561 diff --git a/vlm/train/FGqiDsBUKL0/17.png b/vlm/train/FGqiDsBUKL0/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d84026f81bf424b8ea10041ac31ada880633908d --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05f6e90569b9df0da0dd8bbc33f99883f848b9bc992917135db3c4fa1adba1d +size 604847 diff --git a/vlm/train/FGqiDsBUKL0/2.png b/vlm/train/FGqiDsBUKL0/2.png new file mode 100644 index 0000000000000000000000000000000000000000..822423e82780b49a0236d7b1efd4e705acb3be9d --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a70d9a0f4b66dd14d17eaa0310c3b349a463f07206ccb084e48c6003d1289a +size 617945 diff --git a/vlm/train/FGqiDsBUKL0/3.png b/vlm/train/FGqiDsBUKL0/3.png new file mode 100644 index 0000000000000000000000000000000000000000..09127edf2410839291acd94782393aaf300e0c37 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d79bc01ae2bf964bc66d05401e6457c2c69485b7edbd41169ed704038c4796d +size 722338 diff --git a/vlm/train/FGqiDsBUKL0/4.png b/vlm/train/FGqiDsBUKL0/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2a83ed110bed41823c8d445d900c6400cca7f60c --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9241e8acf258d167cf1ed11204ef89fc35566e378c1dcab740d79c087a984c7 +size 592105 diff --git a/vlm/train/FGqiDsBUKL0/5.png b/vlm/train/FGqiDsBUKL0/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8fa09d40d18351c8a2c1e4fd09614af14e9dee68 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c4086afc66b0f06a87af54e904c95297824a3b32cfa9715408622b26a0cc544 +size 557147 diff --git a/vlm/train/FGqiDsBUKL0/6.png b/vlm/train/FGqiDsBUKL0/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d84e99776fce360871d9e1411956ca9d1fd66569 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4bac7f68eb335d6cbf0290c1f3870551c781fa4fc4fdbd0c4d080d19bf2ff9 +size 1347566 diff --git a/vlm/train/FGqiDsBUKL0/7.png b/vlm/train/FGqiDsBUKL0/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f1f2291742c5c676eceaffb68dbe74c90cbe2962 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5588f2afef6d4e98a31bdc87d87cc0f7ce958199bf4265f2afe2e800b50678 +size 899695 diff --git a/vlm/train/FGqiDsBUKL0/8.png b/vlm/train/FGqiDsBUKL0/8.png new file mode 100644 index 0000000000000000000000000000000000000000..45db8203f9c3b14dc3e6123187a5743dfe9960ab --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b3e91da7c2fb0e948f3f223eee358f85a780954debff5bfb9b918a4cce9b7d +size 932271 diff --git a/vlm/train/FGqiDsBUKL0/9.png b/vlm/train/FGqiDsBUKL0/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3a89cb1b9afd909f3885da8f78c9131aba9018c8 --- /dev/null +++ b/vlm/train/FGqiDsBUKL0/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55d20cd79b64e936c3d5727f5836658649e6d361708d83b8b55e9857b774c8b +size 495452 diff --git a/vlm/train/GOfGGASIUkg/0.png b/vlm/train/GOfGGASIUkg/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5b4bfd821e79697f902f5bca3bd98362479dce2e --- /dev/null +++ b/vlm/train/GOfGGASIUkg/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a64cdec9191dbe11b59140939cc3a740736a4f039f2f9c3212abc67e6742da +size 461566 diff --git a/vlm/train/GOfGGASIUkg/1.png b/vlm/train/GOfGGASIUkg/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6c164dbcf415e741492d57825e83ad75e0ee6e3e --- /dev/null +++ b/vlm/train/GOfGGASIUkg/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d2c482c8906dc006e3e894a3cb573a2e57956b7b8063e2807d5c56eea00a35 +size 643608 diff --git a/vlm/train/GOfGGASIUkg/10.png b/vlm/train/GOfGGASIUkg/10.png new file mode 100644 index 0000000000000000000000000000000000000000..35c21199033d263d8c8b2dd25f5b16e32420518b --- /dev/null +++ b/vlm/train/GOfGGASIUkg/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a797fc90256dee231032d0a923438408cacf814d4c0d665489f518f25311f3 +size 644355 diff --git a/vlm/train/GOfGGASIUkg/11.png b/vlm/train/GOfGGASIUkg/11.png new file mode 100644 index 0000000000000000000000000000000000000000..17f134483bcbd7db30b596f51340ada6e2384c22 --- /dev/null +++ b/vlm/train/GOfGGASIUkg/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5bbb7d3da1100b6d5ce0e142eee86fa8a95d4604e22d5d8a561659809d28c4 +size 563600 diff --git a/vlm/train/GOfGGASIUkg/12.png b/vlm/train/GOfGGASIUkg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2e16b26bd571b770542db55ebb1d7d6701d873 --- /dev/null +++ b/vlm/train/GOfGGASIUkg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fce861545dd16d2a8b8d17835abc55385c46f92d46e8503a4bcf01030c5d6c +size 326341 diff --git a/vlm/train/GOfGGASIUkg/2.png b/vlm/train/GOfGGASIUkg/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c35dbd0ce67badb30227ecb1198d82b3d0f3016e --- /dev/null +++ b/vlm/train/GOfGGASIUkg/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3eb78e3f97b85411ab918001343c6a2f4e1a3d26bea963e491a796c03979d6 +size 603265 diff --git a/vlm/train/GOfGGASIUkg/3.png b/vlm/train/GOfGGASIUkg/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4eba05acabc8106eead0a15a76d4fe0eb6153e0c --- /dev/null +++ b/vlm/train/GOfGGASIUkg/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda89347a320b6ff568f4c20334517e778632656f3ae2113282b4dc36a5d8ab7 +size 608551 diff --git a/vlm/train/GOfGGASIUkg/4.png b/vlm/train/GOfGGASIUkg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f3ec6fef76a483f06821dbb2d4599547d2a24a08 --- /dev/null +++ b/vlm/train/GOfGGASIUkg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b43507a514fb9710926e86e3a35f18904e553539bf5ddf046c664e2e06e1bc +size 525768 diff --git a/vlm/train/GOfGGASIUkg/5.png b/vlm/train/GOfGGASIUkg/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cab08dc86b418188a28d6183f5323f7ff2871edf --- /dev/null +++ b/vlm/train/GOfGGASIUkg/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2ae6e239d4ca848aa3bf69b262083a59426f3c46841fe66e48b58e1c31b2d0 +size 590200 diff --git a/vlm/train/GOfGGASIUkg/6.png b/vlm/train/GOfGGASIUkg/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b23eae20ad0ec62faf6a2ce2b2eb0c8cc174e5dc --- /dev/null +++ b/vlm/train/GOfGGASIUkg/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54db227815703f15b7348f267a37cbd45bcdecabcd0e3ab122b90c99bfdddb38 +size 571176 diff --git a/vlm/train/GOfGGASIUkg/7.png b/vlm/train/GOfGGASIUkg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..36c99adfa3dbd6101605227df38c254ed76b1af4 --- /dev/null +++ b/vlm/train/GOfGGASIUkg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac5e4b77f11dfcd52bf8c5d32ee4ea5f4e9e6c1693d1c822440727de4fef161 +size 432486 diff --git a/vlm/train/GOfGGASIUkg/8.png b/vlm/train/GOfGGASIUkg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..72c9a50b312ab49d8f00d8a84f8ef396cff8e41b --- /dev/null +++ b/vlm/train/GOfGGASIUkg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd700d341a28b188871e5c1a0d4872284e8ce7a01a4f921f84bb2b28a976f201 +size 629694 diff --git a/vlm/train/GOfGGASIUkg/9.png b/vlm/train/GOfGGASIUkg/9.png new file mode 100644 index 0000000000000000000000000000000000000000..202d48f8335be8fa881d8cacf2f38f99eee65d61 --- /dev/null +++ b/vlm/train/GOfGGASIUkg/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b10a63e508101d27e91d19e8345a221272f3dfd351b71d1f2df7761d8a55a9 +size 597723 diff --git a/vlm/train/H1edEyBKDS/0.png b/vlm/train/H1edEyBKDS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4edc905a686680c84d8c2668abe156e1bcbba2ee --- /dev/null +++ b/vlm/train/H1edEyBKDS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cc64f9d91a018f27cb068d80cd4f7dc285abde02cec4e7005df4b5bedbc5df +size 472657 diff --git a/vlm/train/H1edEyBKDS/1.png b/vlm/train/H1edEyBKDS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9f526b59af70fe2603c81fde31ac9584b2bee47d --- /dev/null +++ b/vlm/train/H1edEyBKDS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f44aab1583f7df6ffe7f02b1f70ae72cbb6f21418ae15f16742a23bfb1e3e0b +size 619126 diff --git a/vlm/train/H1edEyBKDS/10.png b/vlm/train/H1edEyBKDS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..efd2bab7a975040327d1f23b2863c65385a952ba --- /dev/null +++ b/vlm/train/H1edEyBKDS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e36856b36cd59f395da1903c4b775c1024da80f3d9d563b6a696a59c8030e53 +size 580849 diff --git a/vlm/train/H1edEyBKDS/11.png b/vlm/train/H1edEyBKDS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b32c8b08cc056d430eb5639e9e12024a7ba57501 --- /dev/null +++ b/vlm/train/H1edEyBKDS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8652c755e2123ecc80863bc9eedcf886c807290d0ccbc7e944031c0be5ad3ef7 +size 592567 diff --git a/vlm/train/H1edEyBKDS/12.png b/vlm/train/H1edEyBKDS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8b8c447870afba1f2849a3c6b077836dd291aca5 --- /dev/null +++ b/vlm/train/H1edEyBKDS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c5cde32b813fc5324f8d60d8d456c33789fe639dbff0a5574e3f145b1fed7f +size 580417 diff --git a/vlm/train/H1edEyBKDS/13.png b/vlm/train/H1edEyBKDS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..378e1689d78da04d9059445ab224fe140aab3951 --- /dev/null +++ b/vlm/train/H1edEyBKDS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff572ecb2ce0f3f2b1de340c980bd4860666ef2d41ab9c67e1001a2e0c88250 +size 283871 diff --git a/vlm/train/H1edEyBKDS/14.png b/vlm/train/H1edEyBKDS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..7acd58eaff9083d9ea237388df01ccff01ceafaf --- /dev/null +++ b/vlm/train/H1edEyBKDS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9fe114072b0c567bc79f83d5105d73b8eec5c6a330a9b24b4100dc857e3fdca +size 474742 diff --git a/vlm/train/H1edEyBKDS/15.png b/vlm/train/H1edEyBKDS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e992478525a844fe4555ab1213e62633b8fea8 --- /dev/null +++ b/vlm/train/H1edEyBKDS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54b41fd563c81dbb70e68d29af3770b57299137781717a94ee73960c4ac95a9 +size 429845 diff --git a/vlm/train/H1edEyBKDS/16.png b/vlm/train/H1edEyBKDS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7fc2dc04fab7f5d578cf82a497cb3730a63a5906 --- /dev/null +++ b/vlm/train/H1edEyBKDS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d4e0b55c38eb31e1ff44a6bea1594fb074a555b276f43ccbb87702cb7418cf +size 474887 diff --git a/vlm/train/H1edEyBKDS/17.png b/vlm/train/H1edEyBKDS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d32858dd6ca0e11f86e08501a439e872ae2cffba --- /dev/null +++ b/vlm/train/H1edEyBKDS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f400ce651c3399c1e07c5e01863acff930a11b9a94f3eefefa5cedf9837ae0b8 +size 330363 diff --git a/vlm/train/H1edEyBKDS/18.png b/vlm/train/H1edEyBKDS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..f07ef93992a709788ed635a34b2aae92a263ed8e --- /dev/null +++ b/vlm/train/H1edEyBKDS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4932ce94e293bd2b800ecf8987610ca8701ca29d2fe064a3b6dfa26570471d95 +size 390011 diff --git a/vlm/train/H1edEyBKDS/19.png b/vlm/train/H1edEyBKDS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..7cf6e135e31caf3740d2189306b4be3e020169dc --- /dev/null +++ b/vlm/train/H1edEyBKDS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9566008cfc2138eb2999182a5ad90c4374e4680d0fd3f001b60b634e12c0952 +size 307050 diff --git a/vlm/train/H1edEyBKDS/2.png b/vlm/train/H1edEyBKDS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5ed88e2ef1d8e8945656f8c9501a8949c2180692 --- /dev/null +++ b/vlm/train/H1edEyBKDS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09459bb3447480fa249b28050d1245e8ea8366717ca8d70b3292b8d1b8aef5c9 +size 611700 diff --git a/vlm/train/H1edEyBKDS/20.png b/vlm/train/H1edEyBKDS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..76f4dfead1f653c2bc6e9982b87b69308a18803b --- /dev/null +++ b/vlm/train/H1edEyBKDS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce633d76419daf820e894b3c8caff07b91708d09b769fe439208d819cf01f1cb +size 300079 diff --git a/vlm/train/H1edEyBKDS/22.png b/vlm/train/H1edEyBKDS/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7bcf6306008ed8b9a19d37b713e1c1a3eeceeec3 --- /dev/null +++ b/vlm/train/H1edEyBKDS/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360f62f2e14a57359efb415918681fdfb3b050d44d218e3d495de4bb82462b79 +size 548442 diff --git a/vlm/train/H1edEyBKDS/23.png b/vlm/train/H1edEyBKDS/23.png new file mode 100644 index 0000000000000000000000000000000000000000..37c982dba469f90cf8fbcd619efe87718fdf3bd5 --- /dev/null +++ b/vlm/train/H1edEyBKDS/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa9a5dc76a2d352dcaeb83cc32908e26a08ff3d88e2881d51d0d687c3a4d3f3 +size 474828 diff --git a/vlm/train/H1edEyBKDS/25.png b/vlm/train/H1edEyBKDS/25.png new file mode 100644 index 0000000000000000000000000000000000000000..86348e91dde36b4a2ba974ed1ec51ea0783fa94d --- /dev/null +++ b/vlm/train/H1edEyBKDS/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f29c5b026c30252666002fb1776aa6cb6faaeb4964e057be77ac8d57638133c +size 358967 diff --git a/vlm/train/H1edEyBKDS/26.png b/vlm/train/H1edEyBKDS/26.png new file mode 100644 index 0000000000000000000000000000000000000000..d1144772ccf52d904e39ec43a290dbdbb32b12d2 --- /dev/null +++ b/vlm/train/H1edEyBKDS/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee5b3d68ea8dde02b63d96b133d727b249f55b350e166e394468417a9547fd2 +size 469350 diff --git a/vlm/train/H1edEyBKDS/27.png b/vlm/train/H1edEyBKDS/27.png new file mode 100644 index 0000000000000000000000000000000000000000..83bb90eff4ff0591537e91e7951dc0e4989c9bc4 --- /dev/null +++ b/vlm/train/H1edEyBKDS/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604fb8964a84288a9941e1bc07543df783b352e4e95971b69d00f0547c77538e +size 618058 diff --git a/vlm/train/H1edEyBKDS/28.png b/vlm/train/H1edEyBKDS/28.png new file mode 100644 index 0000000000000000000000000000000000000000..87bb164f79ae938900932949238fb9c5958019cd --- /dev/null +++ b/vlm/train/H1edEyBKDS/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8672a74223fec2059068500e8ece9ff5613dd1caadb752cfce1ce4112defd3 +size 256425 diff --git a/vlm/train/H1edEyBKDS/29.png b/vlm/train/H1edEyBKDS/29.png new file mode 100644 index 0000000000000000000000000000000000000000..8284354aadf911e4fb5841fc3d56e5223998fd94 --- /dev/null +++ b/vlm/train/H1edEyBKDS/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbb74a3a593da4a0414fa4c0bcf8867f1c0c5f54d3753b2de13ccbe6d43d7a7 +size 534666 diff --git a/vlm/train/H1edEyBKDS/3.png b/vlm/train/H1edEyBKDS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..082b3c59544115b011338c34d4f2bbb6354e4a2a --- /dev/null +++ b/vlm/train/H1edEyBKDS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51b9af73a5a6e322f7ff0042e4148c54a19bbe413a071b16c2062c959daadc0 +size 490793 diff --git a/vlm/train/H1edEyBKDS/30.png b/vlm/train/H1edEyBKDS/30.png new file mode 100644 index 0000000000000000000000000000000000000000..e821e41016be65ec2608a9e79033dd5ec4fc9bff --- /dev/null +++ b/vlm/train/H1edEyBKDS/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9296f4693550ed13efb9c7d0c397ec49b31d33fe3a24e390b22f5cce12d3c73f +size 223842 diff --git a/vlm/train/H1edEyBKDS/31.png b/vlm/train/H1edEyBKDS/31.png new file mode 100644 index 0000000000000000000000000000000000000000..ab865dd6768a48d1e216d2f4a0feb23e9fb5764d --- /dev/null +++ b/vlm/train/H1edEyBKDS/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46c8230751b37b80b361916892defa9e4305fe00a087fadc14ddb8233ebf8fe5 +size 651605 diff --git a/vlm/train/H1edEyBKDS/32.png b/vlm/train/H1edEyBKDS/32.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2d42df05b215aa86be85803b6b8caa4b8a84e8 --- /dev/null +++ b/vlm/train/H1edEyBKDS/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9abf04f0d3cc5ca7314e09bfee3c8955843114967e775679e29422eb2987306 +size 483493 diff --git a/vlm/train/H1edEyBKDS/33.png b/vlm/train/H1edEyBKDS/33.png new file mode 100644 index 0000000000000000000000000000000000000000..f0908d786248f2d3efa6bb8bf631307365c1c97d --- /dev/null +++ b/vlm/train/H1edEyBKDS/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4b96e44e231c379f05211877ea8273dc3442856e351a667e55a7c1773a9d77b +size 305101 diff --git a/vlm/train/H1edEyBKDS/4.png b/vlm/train/H1edEyBKDS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1cb01689fb9f9ac64bc47fc63db786432be37c23 --- /dev/null +++ b/vlm/train/H1edEyBKDS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762bea5b7e170dd2332db41fdf7efb456d60d1e0e2a76e3708547f207917ffcc +size 532357 diff --git a/vlm/train/H1edEyBKDS/5.png b/vlm/train/H1edEyBKDS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a9e235aaa6fb13dfd38df966041f7934f88c6ee0 --- /dev/null +++ b/vlm/train/H1edEyBKDS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a99a9f20012629e4cf06d352db09e7dd525ba431c8025d94ea25444ed2c96a8 +size 584678 diff --git a/vlm/train/H1edEyBKDS/7.png b/vlm/train/H1edEyBKDS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..725439449af0f704acee0dce73315ef80b59bdd8 --- /dev/null +++ b/vlm/train/H1edEyBKDS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b920017162374b79af605e510bee85825f9007c3692563f27b7f33e80da5484 +size 576535 diff --git a/vlm/train/H1edEyBKDS/8.png b/vlm/train/H1edEyBKDS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..48659b39166261269e3efde7fc4d2f1b9d79da28 --- /dev/null +++ b/vlm/train/H1edEyBKDS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0945baa76f35c4f2cf9b3e3faf8faf5b38b780760395344ae1681c0bf3effeb3 +size 645145 diff --git a/vlm/train/H1edEyBKDS/9.png b/vlm/train/H1edEyBKDS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6dd7a183e40c79f431bf1009bf69c070f7b645 --- /dev/null +++ b/vlm/train/H1edEyBKDS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0902fdefb1edd9a2843db1e84c2c5e66096cd655829b4bc1a03c6bbb10210dc +size 519256 diff --git a/vlm/train/H1gL-2A9Ym/0.png b/vlm/train/H1gL-2A9Ym/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b0cf4f1b50eabbf4415d26c2a499d4569e1f4524 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4aeb501aee8c883671b8e922ff9eb74d7cc7b0902619f00849f37880c0109b +size 522235 diff --git a/vlm/train/H1gL-2A9Ym/1.png b/vlm/train/H1gL-2A9Ym/1.png new file mode 100644 index 0000000000000000000000000000000000000000..438998fbd0fc0e2fc020ba85295a0c0e5f15e730 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f1fda8c577caa9a3e0a6e68b4b383f5fd20dc2e64c3765fa69dfd3beb7d895 +size 593012 diff --git a/vlm/train/H1gL-2A9Ym/10.png b/vlm/train/H1gL-2A9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6fd7a798038bd540f8e2fd5a366f9439c2f31cb5 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1b8b0bb5ec95c40019cd316bd3719fdb6b9c0e4ab154cc15b26e1c073fdbce +size 468867 diff --git a/vlm/train/H1gL-2A9Ym/11.png b/vlm/train/H1gL-2A9Ym/11.png new file mode 100644 index 0000000000000000000000000000000000000000..48952610905831ab5cafc0559205d1744c2df197 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763503c7451522df062faecaeb6280895c91e67fc984f4596772c045d79931aa +size 340365 diff --git a/vlm/train/H1gL-2A9Ym/12.png b/vlm/train/H1gL-2A9Ym/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a8607a73781bd94d1ae1973365b79580185ff5c8 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda11d7fa97e20895e6779d9b704b53ff4680879565ef5b1e6493856c4a8602f +size 433504 diff --git a/vlm/train/H1gL-2A9Ym/13.png b/vlm/train/H1gL-2A9Ym/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9576855333f57ab4b82b2e45c4e138c6f598aeac --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51dfc9cd52d0d2833bc8266bc3dda89c1ed1345999803abfbcefbfd1ccae09cb +size 231375 diff --git a/vlm/train/H1gL-2A9Ym/14.png b/vlm/train/H1gL-2A9Ym/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1efb0905172c43183057fe060c2b5f16883ece1f --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be24540774e253ea1e73ba2d5c3bf22786fc57b8e7d9215625453dee1148cb31 +size 213396 diff --git a/vlm/train/H1gL-2A9Ym/2.png b/vlm/train/H1gL-2A9Ym/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b3128a87d2be15ee2b690d54569ffa9c3563b226 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef7299183119621ef5473510dd52899e8435becbd2d20e98c32b357b30d26f2 +size 486120 diff --git a/vlm/train/H1gL-2A9Ym/3.png b/vlm/train/H1gL-2A9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6214f2b00ca38beb88daab2aa82e7ac0894d6b --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579863cf82035124791df4abfdddd9a0120937290a9b606b0fbdc82721678605 +size 554375 diff --git a/vlm/train/H1gL-2A9Ym/4.png b/vlm/train/H1gL-2A9Ym/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5aae2cc07098d79ca6e1a0dea32f13af575bd0e0 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e006860d794d13729996efdb04bfd96c449ecf238a67504e6ea4bc02e4abdcff +size 562739 diff --git a/vlm/train/H1gL-2A9Ym/5.png b/vlm/train/H1gL-2A9Ym/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b253202f56816b06d6e2dcd2cbe60a8c2f2cf41d --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8811b70f1d087f645d9aa37bd5d9626935481273a5d3a55e2f08b58dca93cb84 +size 494864 diff --git a/vlm/train/H1gL-2A9Ym/6.png b/vlm/train/H1gL-2A9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c66fc245635255949e6b669f2d116a4f166d369b --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e241171aeb69cf227a1db7e3d9c37e1db1133bd6aa0d3738fc00f64b9c40a67 +size 491787 diff --git a/vlm/train/H1gL-2A9Ym/7.png b/vlm/train/H1gL-2A9Ym/7.png new file mode 100644 index 0000000000000000000000000000000000000000..82a1887100da2a899daaca84f9d057ec2bd777c0 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a9a757a5d5fa42df889c937cfe1a3039ca8b7c2fd7d85df2a2ac917a594ebb +size 517052 diff --git a/vlm/train/H1gL-2A9Ym/8.png b/vlm/train/H1gL-2A9Ym/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1978686752b700cc3085bdcf3572b7df833210bd --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2ed442e4be7683df053ff01328fe07f2979381cf99563d6baacddd53543bbd +size 500766 diff --git a/vlm/train/H1gL-2A9Ym/9.png b/vlm/train/H1gL-2A9Ym/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fd055255fe5f2baef6c96d429991c4ebd42c0642 --- /dev/null +++ b/vlm/train/H1gL-2A9Ym/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e3885d3da831c757b0870a8d0bc4d5fa5fb458a0a144a3600d61ce8bfc1205c +size 503651 diff --git a/vlm/train/H1gfOiAqYm/0.png b/vlm/train/H1gfOiAqYm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..11734a6b3f2cf0b9c45d40bf912c03deb9db75a9 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68ea8de9df47ce9067feea4d0e88949fb4a276193cdc9baed0e2a55d2dac4d1 +size 522478 diff --git a/vlm/train/H1gfOiAqYm/1.png b/vlm/train/H1gfOiAqYm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d5b576e8fac9f148a8dfb45dac6cdb28684eab97 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f8ac911bbfed9b923274bf9eb733ae1205a31d26091dcb5eab6ddb34361967 +size 563529 diff --git a/vlm/train/H1gfOiAqYm/10.png b/vlm/train/H1gfOiAqYm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9fa41bfbafdec58436279f5e5fbe2c031cfcea65 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51399b14904d9ba0cbc484a1f2dcdf63ddc44bc889ebf07cb9ce01be14c95cc8 +size 497903 diff --git a/vlm/train/H1gfOiAqYm/11.png b/vlm/train/H1gfOiAqYm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..000367afdb7ca8b4d7f3bf02d7975b5ba28d10f2 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcb384c67e17d902bc2687e37d6a4480ab89a0cdf59a7e578672dbae2b0bf7 +size 347039 diff --git a/vlm/train/H1gfOiAqYm/12.png b/vlm/train/H1gfOiAqYm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..42a0262a1bea81e8e690930cda00d27ea01aed69 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa538c2c8be929d347feb031fce83ea5e47793122b9b65123afbc80f8808ebdc +size 402598 diff --git a/vlm/train/H1gfOiAqYm/13.png b/vlm/train/H1gfOiAqYm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..24a6ebef496a71534334a30d441a874bc199cda1 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00e6a1b99e32881daae8770d63d29fb080b1af7d7bfbb3b985c9ce029d78652 +size 419648 diff --git a/vlm/train/H1gfOiAqYm/14.png b/vlm/train/H1gfOiAqYm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..21c84a907b4f7c3a8338a3aede0f6ba7aaac5ad1 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6cc55458a07b299190e0f95cc7a8f80f65fb482aad246aeb077cd213444ba1 +size 228375 diff --git a/vlm/train/H1gfOiAqYm/2.png b/vlm/train/H1gfOiAqYm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..54f80dead6280041b0434c5fabed8f3adc178150 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad5e3d5876043754be541172714c0e39927e6cb21ec8db9edf2d83be68ed58f +size 416077 diff --git a/vlm/train/H1gfOiAqYm/3.png b/vlm/train/H1gfOiAqYm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d19e02a070a3ad6d23f1af1fdedcf7ae60f033ce --- /dev/null +++ b/vlm/train/H1gfOiAqYm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0bd0b66734c85eaf7a525b1905c00b609af2b7192635a421dc219faa3da9f7 +size 500760 diff --git a/vlm/train/H1gfOiAqYm/4.png b/vlm/train/H1gfOiAqYm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9d218127c789c60a7830740393aacd3f56c4fe --- /dev/null +++ b/vlm/train/H1gfOiAqYm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5119a8668d66b546dc6226f5081ca74f848ba7e8b2d8795ac0d3e76744894f +size 406330 diff --git a/vlm/train/H1gfOiAqYm/5.png b/vlm/train/H1gfOiAqYm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..60788c69251069c854af0e685e6cb20cefac1234 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39ddce198b584f156501b47db3f8531589e7986049d998829f396827712de6d +size 474395 diff --git a/vlm/train/H1gfOiAqYm/6.png b/vlm/train/H1gfOiAqYm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0a39dbfc8eac645b29fdde6ea93732ee6da94427 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464edf4dba36de07a3c599f15a134aaf9fb0e3665ce4a439500fc198be502693 +size 510889 diff --git a/vlm/train/H1gfOiAqYm/7.png b/vlm/train/H1gfOiAqYm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0de9c9789a8844ffd9efec18a8a9edecee20fa64 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cf875afed2a3fefad5d58300b91ccf732f9584e7adab6a2989f07e42c823cf +size 551588 diff --git a/vlm/train/H1gfOiAqYm/8.png b/vlm/train/H1gfOiAqYm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2f11a7677d45258c753f5423112b5583fe2efb0d --- /dev/null +++ b/vlm/train/H1gfOiAqYm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc6b0fcc0df4a8b1aa6e701d48029b557e7856c6647c211e5ce8dda1eccf33c +size 547641 diff --git a/vlm/train/H1gfOiAqYm/9.png b/vlm/train/H1gfOiAqYm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cb24876cfc64655196abc8a1b2adf064b53bcd75 --- /dev/null +++ b/vlm/train/H1gfOiAqYm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b12bbb7c26946f47e23bd23cdd2566c5925496538155403ec5dac544f85daa9 +size 494299 diff --git a/vlm/train/H1vEXaxA-/0.png b/vlm/train/H1vEXaxA-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..209b23ac8a790784ffa5ea89e78f30e66169e240 --- /dev/null +++ b/vlm/train/H1vEXaxA-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9013d67ddd6c639f3e1dfe37bdb3c781176b190c36f492571df30edebef79bab +size 446289 diff --git a/vlm/train/H1vEXaxA-/1.png b/vlm/train/H1vEXaxA-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4039e180abce244afc262fc3799cea29a554c06f --- /dev/null +++ b/vlm/train/H1vEXaxA-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d9170fb6667a2793dcd0fc4aded31e47bc1935ba14ccaa7714b0db48e62757 +size 516637 diff --git a/vlm/train/H1vEXaxA-/10.png b/vlm/train/H1vEXaxA-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..29c0c9ff88fdc8caee1c636ead838a1cc0a21eff --- /dev/null +++ b/vlm/train/H1vEXaxA-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:182136af4d18819021ebeaf60d8ae00e4f7f6d2394b25bdd752f6f924cc3643c +size 584324 diff --git a/vlm/train/H1vEXaxA-/11.png b/vlm/train/H1vEXaxA-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0b2e8a8b8c86af7fb6878ec06af64f34e15981ea --- /dev/null +++ b/vlm/train/H1vEXaxA-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146df68b868515f294d5173944e6f88d4ee0743839542234d258f65fda6faac9 +size 555325 diff --git a/vlm/train/H1vEXaxA-/12.png b/vlm/train/H1vEXaxA-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8de827ea5728c6714598b14321fd60f68d1d396e --- /dev/null +++ b/vlm/train/H1vEXaxA-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d371382a4f740f09129568d09b31c5b5c5b9e6b9c5ffd2eb662f5818e237ba +size 145094 diff --git a/vlm/train/H1vEXaxA-/13.png b/vlm/train/H1vEXaxA-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b648c0735023b898f8a123ffe9dbce4f9b5fa776 --- /dev/null +++ b/vlm/train/H1vEXaxA-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6608030e676ec2c27b7fa160937c00e4fdbf096b384fbbcb4b8e6ce1e3c51eae +size 454876 diff --git a/vlm/train/H1vEXaxA-/14.png b/vlm/train/H1vEXaxA-/14.png new file mode 100644 index 0000000000000000000000000000000000000000..39696feab3beb7ae878d9b2769d40b485bd1877f --- /dev/null +++ b/vlm/train/H1vEXaxA-/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d35edd542936df9a13fba0625773cd506b68e575f8ff2cc5d78bc56008b74c6 +size 831786 diff --git a/vlm/train/H1vEXaxA-/15.png b/vlm/train/H1vEXaxA-/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0e632eb63aaebcfe2df370ff9e6d3cfb036a402e --- /dev/null +++ b/vlm/train/H1vEXaxA-/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e219ce4ee1c1d676e623b499cb50db06adbdbf22e6cbf0ccb2bda80d04a4777d +size 437821 diff --git a/vlm/train/H1vEXaxA-/16.png b/vlm/train/H1vEXaxA-/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e22ae501e60bfc20d9b4e287fc1068761b1bea --- /dev/null +++ b/vlm/train/H1vEXaxA-/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966edb2bfe0aa833493f39e467ffa5addb169d339bbfeb36ee3c603f8c3acf36 +size 827572 diff --git a/vlm/train/H1vEXaxA-/17.png b/vlm/train/H1vEXaxA-/17.png new file mode 100644 index 0000000000000000000000000000000000000000..58427aa077645c52c072acd66bc5131c7c474e76 --- /dev/null +++ b/vlm/train/H1vEXaxA-/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3f793915ccad2e7aa22b8a64ae7d0730f27ad83e48a0bf074d1e609d59865c +size 1012238 diff --git a/vlm/train/H1vEXaxA-/2.png b/vlm/train/H1vEXaxA-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4e15f89d6fad70fe0987099df20a80930e28d932 --- /dev/null +++ b/vlm/train/H1vEXaxA-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3045fb18bf99cb268c712164746db92d974d4ee19e01365cf9ebd558c91aa6d +size 523991 diff --git a/vlm/train/H1vEXaxA-/3.png b/vlm/train/H1vEXaxA-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..405d2fc9de276129b6495d7d03c077ef38373bc7 --- /dev/null +++ b/vlm/train/H1vEXaxA-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:673810b423667dd7a272964afca1574e90855ca0364df459013f0d3633f5469b +size 484404 diff --git a/vlm/train/H1vEXaxA-/4.png b/vlm/train/H1vEXaxA-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..013315347be10f09bc6d777f60edc4d2e08d4011 --- /dev/null +++ b/vlm/train/H1vEXaxA-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753a7556fd63b0916fbe16b93f2cccdd95d4be2697024b9a2b0478e647f41708 +size 533369 diff --git a/vlm/train/H1vEXaxA-/5.png b/vlm/train/H1vEXaxA-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c78c1de9f41b1d656be5309a7a2bf1a3827c71e9 --- /dev/null +++ b/vlm/train/H1vEXaxA-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3194855ec3b32f2032c890989da6bf605aa4063fb502ef860174e7d56f76c86f +size 509745 diff --git a/vlm/train/H1vEXaxA-/6.png b/vlm/train/H1vEXaxA-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d519c595d6e66d2e524950d57d883a0b682c3358 --- /dev/null +++ b/vlm/train/H1vEXaxA-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa418edf8e206d171428fc687eedef826e71a479305be2f3a50294b69fc20da2 +size 512493 diff --git a/vlm/train/H1vEXaxA-/7.png b/vlm/train/H1vEXaxA-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c05e6f49c211bb43dbce1af74e352db169648fbe --- /dev/null +++ b/vlm/train/H1vEXaxA-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63fa05d886cd7601a554c0d9225a6c914efe0467ccc236657feaeea679c8a6a8 +size 571230 diff --git a/vlm/train/H1vEXaxA-/8.png b/vlm/train/H1vEXaxA-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f9eec9ff0fed9139b5ef99a2ebff9ad05a0dc7af --- /dev/null +++ b/vlm/train/H1vEXaxA-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b962f064894c1fb05e4567ad87e432b3f3390d18a82b525a6a412b16fa11381d +size 503102 diff --git a/vlm/train/H1vEXaxA-/9.png b/vlm/train/H1vEXaxA-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..447cc8974b54e9e0748320edb49e505743498ff7 --- /dev/null +++ b/vlm/train/H1vEXaxA-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab8adc4a8270eaac681a4ab665be8a5f27fde9d3bbb05485f141af521fd203d +size 517952 diff --git a/vlm/train/HJg_ECEKDr/0.png b/vlm/train/HJg_ECEKDr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f0653d122925e845c44557d929c3d9ea6f5a6aea --- /dev/null +++ b/vlm/train/HJg_ECEKDr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5260d7343c6a2f53e8f3293a18e87b3d29b6c66fb7f75528c0109939c55198 +size 510229 diff --git a/vlm/train/HJg_ECEKDr/1.png b/vlm/train/HJg_ECEKDr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e041c240b6a57d182b6d5c489ca77e60e82337b2 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194b953d5a2800c8d4f9fa9bb4eac7d0d74ebaf488daeff3f47ad9354d3119f9 +size 626931 diff --git a/vlm/train/HJg_ECEKDr/10.png b/vlm/train/HJg_ECEKDr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..63115d8c6623bb10394cb2ea5a1b45692ffe4201 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a332c684925c7e1618f4f56d3f313829775ef8a6cad906b666b14d9fb2966049 +size 171371 diff --git a/vlm/train/HJg_ECEKDr/11.png b/vlm/train/HJg_ECEKDr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..07b146ed85daa549ca1301dda21b6a40f03c16dc --- /dev/null +++ b/vlm/train/HJg_ECEKDr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a14e3db555f3a15e966ea5970c350dbb79156c222de02c50a246ca598964d45 +size 462334 diff --git a/vlm/train/HJg_ECEKDr/12.png b/vlm/train/HJg_ECEKDr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..620ff911f1cf78528190efb307babdb5fc4c3d9a --- /dev/null +++ b/vlm/train/HJg_ECEKDr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e51f86ac51baf537feca09b000bd0d96f9cbee62c36f9d742aea9b1423481ec2 +size 338051 diff --git a/vlm/train/HJg_ECEKDr/13.png b/vlm/train/HJg_ECEKDr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cda4b6a234d8d2b4fa0bc9d4a8c95ef530638fe8 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c7a0d4442d12192ec33fa284629d7d54233f18d97f24f657b670edb6e9f8731 +size 578366 diff --git a/vlm/train/HJg_ECEKDr/14.png b/vlm/train/HJg_ECEKDr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..233a0cf192f66bd8b02567b5de2559f69ec809e0 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bdf8d772b62041eb31342c22b8349a29b68054130ee0e0ccb9ba06fa88ffd03 +size 489894 diff --git a/vlm/train/HJg_ECEKDr/15.png b/vlm/train/HJg_ECEKDr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..df3a97979d6522d2299ab919f49882dbbffe0839 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd207fd35ddf77f1c885d83db2137087a134c09990d56a4abebce05d4772afae +size 574297 diff --git a/vlm/train/HJg_ECEKDr/16.png b/vlm/train/HJg_ECEKDr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..bf7a16c6a1b2d3053db909b310720f9a51228f7f --- /dev/null +++ b/vlm/train/HJg_ECEKDr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e168a5ae92696ab88fcf9dec265dcd612d11f65684d97571d84742003cb79434 +size 530256 diff --git a/vlm/train/HJg_ECEKDr/17.png b/vlm/train/HJg_ECEKDr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..43626dd7716d1159c31ff5b25495e371e569b402 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c9d43fe9aa2107c42b58e159e174bc689a9fa9f7a7c82411d0197eab34ec16 +size 478225 diff --git a/vlm/train/HJg_ECEKDr/18.png b/vlm/train/HJg_ECEKDr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..305449eb96459a88cf8c32f5d8aeea6b623db0b9 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647b51ef0841132d47285101474f86cfc358fc270311cb28e4c3081c7d3f1a58 +size 304356 diff --git a/vlm/train/HJg_ECEKDr/2.png b/vlm/train/HJg_ECEKDr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..904feab1d61854485a16ad3324ef416f1f672e26 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba4cfcb5d703dddf32aa6be6cec20eb5ede750af699ef61fb7329cca866b322 +size 613658 diff --git a/vlm/train/HJg_ECEKDr/3.png b/vlm/train/HJg_ECEKDr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fa44356ed0a8db2eaa0ae81982b2cdb5c2ef9543 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdc4f95ac1dfa91687dd7c7111bf8299d73e5f8d0a58347eeef295a65b3a5f2f +size 639152 diff --git a/vlm/train/HJg_ECEKDr/4.png b/vlm/train/HJg_ECEKDr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1b0db63ff5ecb79431542bba37aa9d136da96509 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba19eb39678102f36c6548d7f8d73ae817285599613266f5326cb6672b137ac +size 639813 diff --git a/vlm/train/HJg_ECEKDr/5.png b/vlm/train/HJg_ECEKDr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7584abbfe7e98d6acf7f9254a9118db83a00ac --- /dev/null +++ b/vlm/train/HJg_ECEKDr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fb9f8f58edd8cdc70dd7eb719e2aab9967abfce225a2a4f55a80421e4e06dd +size 761831 diff --git a/vlm/train/HJg_ECEKDr/6.png b/vlm/train/HJg_ECEKDr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..093a73a69a3c1e2321e7fe03b1b53c2021de9ca9 --- /dev/null +++ b/vlm/train/HJg_ECEKDr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b2d091ee552489240238727228fc50a286d6c7332ed60d2ff05dbb24c0ce35 +size 732946 diff --git a/vlm/train/HJg_ECEKDr/7.png b/vlm/train/HJg_ECEKDr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..16ce496000be9afc48852f4dce6872cf20bee05a --- /dev/null +++ b/vlm/train/HJg_ECEKDr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ebfb483ec233781235ec9bb2e0e6f403b9e126fd4eb86f58e3ee3cd80bc9b8a +size 624322 diff --git a/vlm/train/HJg_ECEKDr/8.png b/vlm/train/HJg_ECEKDr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d6669e63b0a714b148f1032b27a41ee76e0abb --- /dev/null +++ b/vlm/train/HJg_ECEKDr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353ae8ca4d7d7ebb95999ce7ce9c2452a99262e150f4b908c021ad787a80d01d +size 538848 diff --git a/vlm/train/HJg_ECEKDr/9.png b/vlm/train/HJg_ECEKDr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..50a3af55f3b91c8f37b4fffbf13ca1a518ae072a --- /dev/null +++ b/vlm/train/HJg_ECEKDr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0be8367be48586057fbac1e7cfb9d55f03217969ad59f764b5633b88c64f223 +size 561773 diff --git a/vlm/train/HJjvxl-Cb/0.png b/vlm/train/HJjvxl-Cb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..59eab51900dc31796323925c9afefc86a6431e91 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20660b18644a1756319fb469c9d4e7450b87bca8f57031abc42c4eafe7f6a772 +size 514872 diff --git a/vlm/train/HJjvxl-Cb/1.png b/vlm/train/HJjvxl-Cb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7e72cb627f777b23867920c1af9f6ec7beeef243 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a828ca547ef6f1feb63e4de2802a3af5292e4fa969ee5d8461191d5552868c5 +size 638830 diff --git a/vlm/train/HJjvxl-Cb/10.png b/vlm/train/HJjvxl-Cb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..00e0a89e6de36f53e0ac5e672bd68761483857c7 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2f085c20dd8128e57675dfd02d14820549aa01b2beab397e91b813f24c3451 +size 350989 diff --git a/vlm/train/HJjvxl-Cb/11.png b/vlm/train/HJjvxl-Cb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..090a7893c21774dd7ad08c936ed1b3855fad4f5a --- /dev/null +++ b/vlm/train/HJjvxl-Cb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a73ec14da80b14f8c8107c4bd47970023f4af545509e86c3392e5be23fd901 +size 417938 diff --git a/vlm/train/HJjvxl-Cb/12.png b/vlm/train/HJjvxl-Cb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..32e6f537bd94d8a9b669ea73a148dc514746eeae --- /dev/null +++ b/vlm/train/HJjvxl-Cb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6a663f687a496313a95539d4dfe0cfcbdf9e3b933d140187a2b0fc96504bf3 +size 457555 diff --git a/vlm/train/HJjvxl-Cb/13.png b/vlm/train/HJjvxl-Cb/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6419955df4506db23da1840660053de9ab62ffe5 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a29af36f0570069497dce8e5a4e5598999a639825e9d3395f11e2b2002b11e8a +size 612223 diff --git a/vlm/train/HJjvxl-Cb/14.png b/vlm/train/HJjvxl-Cb/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1c03bd52c7fcecedf892ac0c2cff7d04b52df68a --- /dev/null +++ b/vlm/train/HJjvxl-Cb/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd7c6bf0fc8d86a95e18d3c381f53464910563603d3f22ccd5a1dc416103a43 +size 172918 diff --git a/vlm/train/HJjvxl-Cb/2.png b/vlm/train/HJjvxl-Cb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e89e69dad9cb20e166d0ebb5d0aa85955fc6745e --- /dev/null +++ b/vlm/train/HJjvxl-Cb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:951eb60465c5439d45f34d9a0d69d2346a8776cbab1e445a20fdab3a67954efb +size 549450 diff --git a/vlm/train/HJjvxl-Cb/3.png b/vlm/train/HJjvxl-Cb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ee0e37f0c8a10e86c6487497a810223828c8948b --- /dev/null +++ b/vlm/train/HJjvxl-Cb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86bcb43b7f3721ce0a2fe7254091c681ca4af4eff6040bdbcdf23d8a8ce4d562 +size 536643 diff --git a/vlm/train/HJjvxl-Cb/4.png b/vlm/train/HJjvxl-Cb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9e69aa06712b7a2e762be5df95ec027295f3c313 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32e82de8aa9c395971cda33ba64bd8251ba81a80569d33850ee12d38c8e0624 +size 507278 diff --git a/vlm/train/HJjvxl-Cb/5.png b/vlm/train/HJjvxl-Cb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1ece8d8818ca015a81faa69430227f1ba4b3740a --- /dev/null +++ b/vlm/train/HJjvxl-Cb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c44279260135acc75570217ac40a2f417b7923c323b243b208818247dfb8a78 +size 563222 diff --git a/vlm/train/HJjvxl-Cb/6.png b/vlm/train/HJjvxl-Cb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..dc25fb92ecf7f461a244d266127fc5281f6b6354 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78d11aba5097468c99f99c5666caf5bd87fdf9643862a696edeb039d9f2dede +size 677287 diff --git a/vlm/train/HJjvxl-Cb/7.png b/vlm/train/HJjvxl-Cb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4c641d6cdd0b0346d9a776136b00642ab0fe970a --- /dev/null +++ b/vlm/train/HJjvxl-Cb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08161518725f59ad40a6412d7c91b2bb5d838c6a6e8ae1a300b21c0b64c5b43 +size 662245 diff --git a/vlm/train/HJjvxl-Cb/8.png b/vlm/train/HJjvxl-Cb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..6e2c62a1e213f1661b8146559fa66b9005a983ae --- /dev/null +++ b/vlm/train/HJjvxl-Cb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5796c6fd0023e1d1f86b0fc5075a8d072333a5436f44234ab95e85db90964b95 +size 535865 diff --git a/vlm/train/HJjvxl-Cb/9.png b/vlm/train/HJjvxl-Cb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d0f6d9bc8c475790d0a2cc11c3ddc625f7861311 --- /dev/null +++ b/vlm/train/HJjvxl-Cb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85feade5951242631e26ce69c48593f1729ee5545179ea874ca95e28e88de3c8 +size 532997 diff --git a/vlm/train/HJlLKjR9FQ/0.png b/vlm/train/HJlLKjR9FQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5e0d553541ca22686260ed467f1a89e0ddd67fa4 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d23b0fa7db9112b826ce14bc7be6aacef76e3cbef346414290e39aaee957e0 +size 501345 diff --git a/vlm/train/HJlLKjR9FQ/1.png b/vlm/train/HJlLKjR9FQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d997e7e6797f395905cc6a872151727206e45d4 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef11ec1958246cda7f1e423178b3a42c6fac823d1463ad36a869001118c96309 +size 622627 diff --git a/vlm/train/HJlLKjR9FQ/10.png b/vlm/train/HJlLKjR9FQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c12429cc29bde3d06af51126ed9eee7d38b8cd1b --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812d582b8a39be31fe16595ddd5d145dd74622804181ff33101daf07bf5162b5 +size 233620 diff --git a/vlm/train/HJlLKjR9FQ/11.png b/vlm/train/HJlLKjR9FQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f407ecd2b08d227d5663a2cfc11df9567b0d0ee0 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75957a2857ae30a4f8b2dfda62993f9739cffb2e73304946623f85180baa30ae +size 455256 diff --git a/vlm/train/HJlLKjR9FQ/12.png b/vlm/train/HJlLKjR9FQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6a516016e7fadae3ddcfef25c3defc259edd474f --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e14bc9ec00bfeb07ed122e6f89fb9d33527dd4c48b16cc3c1da65187ffc9fd +size 543011 diff --git a/vlm/train/HJlLKjR9FQ/13.png b/vlm/train/HJlLKjR9FQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3de7d6848e7e5d5a582fadfde710869e8e2f99c6 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5d8ffaec626be8d150addbcf0d3a5b8c2e3b978518735bd3562ed50ec49c88 +size 573945 diff --git a/vlm/train/HJlLKjR9FQ/14.png b/vlm/train/HJlLKjR9FQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4f965d704b11f1c1e970494fff216380781bd0d9 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ae9f15245da4a822a3b97d76424e2102742580d8e0259a70246ccdd6a1ba69 +size 299711 diff --git a/vlm/train/HJlLKjR9FQ/15.png b/vlm/train/HJlLKjR9FQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..20de69ebad0dae45b63a9234eafdd1a00b677c78 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab856e85130578a54235e4de2c07ee41263b91636a353bff5bfde40e06f71b3 +size 411896 diff --git a/vlm/train/HJlLKjR9FQ/16.png b/vlm/train/HJlLKjR9FQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d80436d8b0427101d46beed156ae5af4caa3a13a --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c070a539cbf5825e3d8345e479cf6ff8aa51768c81bd945a597d5c623818c1de +size 482677 diff --git a/vlm/train/HJlLKjR9FQ/17.png b/vlm/train/HJlLKjR9FQ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..11277ac81808821077ac176c8e6a7239a7919525 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb895e2d032f5686d376aac53169cf9b8b8563b3d61cbc74af77bd16d3af6bc +size 360419 diff --git a/vlm/train/HJlLKjR9FQ/18.png b/vlm/train/HJlLKjR9FQ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ebb882b8e7880ccb1769abca39a76caccefcd484 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8bb7cc343a1af60b74025b051732d2fd76dba01f8ff81c6021179a500bbfdd +size 316208 diff --git a/vlm/train/HJlLKjR9FQ/19.png b/vlm/train/HJlLKjR9FQ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b3a2506d529d9ace753f724148297f03180f0024 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54fda0b8b4c562e27ddcd35f812b094ee38126438b2780299152273c6a856b7 +size 423923 diff --git a/vlm/train/HJlLKjR9FQ/2.png b/vlm/train/HJlLKjR9FQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..54e49a124f0f11ba34f93f3236eba4a72c92cb78 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea79acb79e2e8e15fa3521712fb16a10020ada6b24b0a837fc15b667db04520 +size 557778 diff --git a/vlm/train/HJlLKjR9FQ/20.png b/vlm/train/HJlLKjR9FQ/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9464eb1265589e74238e160f0895b25a4ad59d9e --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5847bf1650db8e50c493d523e9fb671c742c619d51d60bc0ce3580f34accc748 +size 373436 diff --git a/vlm/train/HJlLKjR9FQ/21.png b/vlm/train/HJlLKjR9FQ/21.png new file mode 100644 index 0000000000000000000000000000000000000000..8a5adb1d8d10e0bec1d8c26b3d28c7fe79ab0c6c --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b905c641ae2f592f8a68139088609654cbb4c92e9d3c9b66db2239b51d87e1 +size 382904 diff --git a/vlm/train/HJlLKjR9FQ/22.png b/vlm/train/HJlLKjR9FQ/22.png new file mode 100644 index 0000000000000000000000000000000000000000..1e1417af31d1af99f94ee5bb6c41be7160085a30 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77da76b9fd2fbe15952c6f0b10a1f983d859e6cd5dc0a0d856c478dba8ce99b4 +size 203845 diff --git a/vlm/train/HJlLKjR9FQ/3.png b/vlm/train/HJlLKjR9FQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c3698a736b50e5bf84992dcb2585bf3fd922147 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c0318b45fcb5bf4b2531c8fb6b321b037d2bef0ae13aab1fd7741a56eb5974 +size 562052 diff --git a/vlm/train/HJlLKjR9FQ/4.png b/vlm/train/HJlLKjR9FQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..36c4b06b4c7ca0f10b089d1b056628681878a8c2 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdfc1dc8a04bc7262d6a67a3e48057dbd7e23cb3816b7263f7a2c17a0cd4db55 +size 606303 diff --git a/vlm/train/HJlLKjR9FQ/5.png b/vlm/train/HJlLKjR9FQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..10234188dabcd2bceffb5bd26a9a5099620dcfbd --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996fc58772ce589a6487d7f3c27079ac83558145f6b0b1428b92e035845350d3 +size 653502 diff --git a/vlm/train/HJlLKjR9FQ/6.png b/vlm/train/HJlLKjR9FQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..37f2dd42e83e1560feec72d434059ab27b7c547d --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2a257a736230bd7bfec2b4b421c75bed8a8ddd85d77c81c0c75cb14c97380e +size 633724 diff --git a/vlm/train/HJlLKjR9FQ/7.png b/vlm/train/HJlLKjR9FQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c63e5e5b7ec5b0016343831905981942551a82 --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e1524fbd30f2d9d7fefb4c522286b10518fbd6e18ffbcdbfdb474fb01eb5cc +size 672685 diff --git a/vlm/train/HJlLKjR9FQ/8.png b/vlm/train/HJlLKjR9FQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1ebc2f8bd84dbc3f286980f312e25b245c74691f --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb020897705303f08dfff50d4a8be7ae62723f5b935f1e75476c9d9f72e7dd22 +size 504294 diff --git a/vlm/train/HJlLKjR9FQ/9.png b/vlm/train/HJlLKjR9FQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..955d615068cd7ba61ea4c756dbbc10f2858ff1ff --- /dev/null +++ b/vlm/train/HJlLKjR9FQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5769972cb3e750e6ad727bfd33444b67753f3e494a545a8d7a693046b1afaad1 +size 496915 diff --git a/vlm/train/HJx-3grYDB/0.png b/vlm/train/HJx-3grYDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1625dedf922160c688374fb5fc22bdbf7239095d --- /dev/null +++ b/vlm/train/HJx-3grYDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e6155cef7da3891d4e887c1dff8fdcdaf4d3b60d4b1e088b0fb8dfd44c427f +size 491696 diff --git a/vlm/train/HJx-3grYDB/10.png b/vlm/train/HJx-3grYDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c77b9b5b333c75274f92c1cf5ec7d14ceff0c2e1 --- /dev/null +++ b/vlm/train/HJx-3grYDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f8902a5805be1408a347e781d74b31a61f08b3fdff6540f3faceeb726a6de0 +size 547433 diff --git a/vlm/train/HJx-3grYDB/11.png b/vlm/train/HJx-3grYDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..95e71d38d8236d8b4b87f985f93247a9edead468 --- /dev/null +++ b/vlm/train/HJx-3grYDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0db16cb15697c5a0dca26907a637972efb83bd2fba9601d247c5975eb4af37 +size 529678 diff --git a/vlm/train/HJx-3grYDB/14.png b/vlm/train/HJx-3grYDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..beda6e261586bb274506723fc4024940ec178ffb --- /dev/null +++ b/vlm/train/HJx-3grYDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62294ab911986126644fefbee9a37c873ba8a23aabd9abc013f8ba22e8b12b64 +size 421674 diff --git a/vlm/train/HJx-3grYDB/2.png b/vlm/train/HJx-3grYDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b672c01f22a0a0ced429b89a3ebdbbf20a02599 --- /dev/null +++ b/vlm/train/HJx-3grYDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9194a9af7dbbd2a3f667831180fd18ad153cf727b4e9a4646ad97d4a69250bbc +size 469317 diff --git a/vlm/train/HJx-3grYDB/3.png b/vlm/train/HJx-3grYDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..42fdd468dc224df8921784dd60eefcbf654f913a --- /dev/null +++ b/vlm/train/HJx-3grYDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf6e3b9e835327c7b76206e755ac32e9fe45963908fd3a48d0689f4febc6c09 +size 485488 diff --git a/vlm/train/HJx-3grYDB/6.png b/vlm/train/HJx-3grYDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d94718d940df2e131f456e490d3d1a3c62a4d5f3 --- /dev/null +++ b/vlm/train/HJx-3grYDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d174479553cb96925b7e046a6741d21057054c87d5c809e08f9b7afada57aa +size 621654 diff --git a/vlm/train/HJx-3grYDB/9.png b/vlm/train/HJx-3grYDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..790c1e9da64c129163b0af8d3127d6fc80b4629f --- /dev/null +++ b/vlm/train/HJx-3grYDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72bf5b59836376f2183dcdd447d4a16d63f9e9692a28de6e1d787986cc0558c4 +size 517612 diff --git a/vlm/train/HkgXteBYPB/0.png b/vlm/train/HkgXteBYPB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..594a5a81213ce111ea410d062eca34623e3a20d8 --- /dev/null +++ b/vlm/train/HkgXteBYPB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9c9a136422f0001ecdfd756ed8580387cfc71963ef25648f80a1e199e24b1c +size 502321 diff --git a/vlm/train/HkgXteBYPB/1.png b/vlm/train/HkgXteBYPB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..169f207af49c73896758bf9e346d8c82c8f641ff --- /dev/null +++ b/vlm/train/HkgXteBYPB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da97f30e37c253fd0563b607a442d20c8f1141d7a27a6e81dbaec1234e784e9a +size 577391 diff --git a/vlm/train/HkgXteBYPB/10.png b/vlm/train/HkgXteBYPB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4d238979d6a5e6aba428c7feef16309319c7f29f --- /dev/null +++ b/vlm/train/HkgXteBYPB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2b831d01cd4b130874d7fa23e80f6576e2321cfb65543e5a6597f240b9c7f7 +size 589079 diff --git a/vlm/train/HkgXteBYPB/11.png b/vlm/train/HkgXteBYPB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d974a34873a174009dd71954dfa46d1a6d17b7bd --- /dev/null +++ b/vlm/train/HkgXteBYPB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b551c6cf03559027c2978b945d5af88be55dfc51141132d1a7fcae962927899 +size 72490 diff --git a/vlm/train/HkgXteBYPB/12.png b/vlm/train/HkgXteBYPB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..208bfc1f6220aeef7172aa87f1de55c5675f0cf3 --- /dev/null +++ b/vlm/train/HkgXteBYPB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d223f1f8ef8a14a6f9b9ff2cc5951a4f2408b272e70e96319115d1979aef3a +size 345685 diff --git a/vlm/train/HkgXteBYPB/2.png b/vlm/train/HkgXteBYPB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..00be793a16086c64abc3167d1ed44d2407bae9e8 --- /dev/null +++ b/vlm/train/HkgXteBYPB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd119ac0f207d23e801c1704fbfda4127d5ace9b09570d373cb9821417667888 +size 546958 diff --git a/vlm/train/HkgXteBYPB/3.png b/vlm/train/HkgXteBYPB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..836ebdbc2c82fd1d72bd6ffa447b267a9eef1390 --- /dev/null +++ b/vlm/train/HkgXteBYPB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542c493554f09c86715e054c274c958bb6fb0e320b4f5565703d5b9e91f97d66 +size 578727 diff --git a/vlm/train/HkgXteBYPB/4.png b/vlm/train/HkgXteBYPB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..08bdaecc6bf0767534fe557f93507a5e8d2a67cc --- /dev/null +++ b/vlm/train/HkgXteBYPB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2883645880a7c5af5b0dff6e39dbe0fc68b1189d9a2aba1447189ac5b23394 +size 610378 diff --git a/vlm/train/HkgXteBYPB/5.png b/vlm/train/HkgXteBYPB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4eadac9a9273651e043a9078e3b81c8cc88517d9 --- /dev/null +++ b/vlm/train/HkgXteBYPB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17baca73d79f1d21d9368da8398bb21a8338e80348da2b8c6b44d052f629c756 +size 502846 diff --git a/vlm/train/HkgXteBYPB/6.png b/vlm/train/HkgXteBYPB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3292fcdb28860f25ada59d3120f09023ca1b0dcc --- /dev/null +++ b/vlm/train/HkgXteBYPB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267db8a689b96bcc622034cc7b446351c21010d021927148fcb1f439907e78d1 +size 560938 diff --git a/vlm/train/HkgXteBYPB/7.png b/vlm/train/HkgXteBYPB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c1b15c668f40a15eb26ce3edcd9d13eddb99289b --- /dev/null +++ b/vlm/train/HkgXteBYPB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10fd0c73b72b4ed0803f438e8f0822b94a49a76dd94e365b1d2e4fae8d74acb7 +size 550277 diff --git a/vlm/train/HkgXteBYPB/8.png b/vlm/train/HkgXteBYPB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0ba93fcc974f357890541b1d91cd55c7b3823ddb --- /dev/null +++ b/vlm/train/HkgXteBYPB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44ab7cb722d9b25c190df139784ffda63d373d2aece914d972c11e75303b96a +size 540903 diff --git a/vlm/train/HkgXteBYPB/9.png b/vlm/train/HkgXteBYPB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..97bc42cd6de094881b38ae83b66959ff23c0d5db --- /dev/null +++ b/vlm/train/HkgXteBYPB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bda528ea475321523a2f02bd9ce00a1b0ea92c89bf3585a8090769929b0732e +size 585846 diff --git a/vlm/train/HkxKH2AcFm/0.png b/vlm/train/HkxKH2AcFm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1f0ba086e51fdd92e5df41533960d1293a3b031b --- /dev/null +++ b/vlm/train/HkxKH2AcFm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5fbb722de7b85624f7acca68e2152ea7d39ca3a5da3e9600307c34fa69a4b0 +size 483134 diff --git a/vlm/train/HkxKH2AcFm/1.png b/vlm/train/HkxKH2AcFm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..98adb1b54f7406c973563bf700bd022ee1735bc4 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d21b949c952f13fbda33d6f27c9e8632c0e2ec74912d744aaa8888132653c3 +size 538343 diff --git a/vlm/train/HkxKH2AcFm/10.png b/vlm/train/HkxKH2AcFm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..15ef33d803eed1ecfe613e9e2ad40e376f66b28b --- /dev/null +++ b/vlm/train/HkxKH2AcFm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629db3cc748e9a4399214e3fb8734d6f7deba1b249559abc6d4055c95be6e4df +size 541531 diff --git a/vlm/train/HkxKH2AcFm/11.png b/vlm/train/HkxKH2AcFm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..85a985de42edb1d8cf0774c6c6905ba4cbb57e03 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce4256b9173cfa45579dfeb7ef9e737cc1994d3521a49bcafa43bcf8804942b +size 125832 diff --git a/vlm/train/HkxKH2AcFm/12.png b/vlm/train/HkxKH2AcFm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb1561390a8520b2bb266697e2dbddfa0a717d4 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cc0401c6a290812e9f463baa59dccb6c8f84e5992091d3476d94c9d6c6e16c +size 521318 diff --git a/vlm/train/HkxKH2AcFm/13.png b/vlm/train/HkxKH2AcFm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8c615ce0f1df8735750a401d77a73dc3a25ecc95 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37cc0e6d10734d78a1c1dc4cb9e3f7489e8d5a7be570d950d980f41289062dd3 +size 432452 diff --git a/vlm/train/HkxKH2AcFm/2.png b/vlm/train/HkxKH2AcFm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d9554303c69d3ab6c8497e88e2f6656521fa885e --- /dev/null +++ b/vlm/train/HkxKH2AcFm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9991cba2c6c84db86809269a43614aee124bf37c49fcdcfe601813ce47c4ccc +size 584705 diff --git a/vlm/train/HkxKH2AcFm/3.png b/vlm/train/HkxKH2AcFm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6952924c5b41c8f6cbb234f79f1660745fe931 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8040395ee19b142aee8cebbb2f8a41fe4bb75ad065391fc2f0f53921adb476c +size 577433 diff --git a/vlm/train/HkxKH2AcFm/4.png b/vlm/train/HkxKH2AcFm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..24da73a2c5ca5be6717e3766d0e214ac0c3ead9e --- /dev/null +++ b/vlm/train/HkxKH2AcFm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec1ba5db7ebb872003f39503c4454733780ead74724e54e83f350151f41f2414 +size 624284 diff --git a/vlm/train/HkxKH2AcFm/5.png b/vlm/train/HkxKH2AcFm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0fbfb1483c0653da36a18a16809bc3f70b0677 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1ab8f603b53c49f139928a0067a93713b1e71f771f7a4af9d759fd4dfbe072 +size 589792 diff --git a/vlm/train/HkxKH2AcFm/6.png b/vlm/train/HkxKH2AcFm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9be3f76bebd22100393339d497649aeebc01674a --- /dev/null +++ b/vlm/train/HkxKH2AcFm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ab6d74d1aabf313471fe1ac930d04df439cfb9642cd1edfb1030e3320e15b7 +size 566570 diff --git a/vlm/train/HkxKH2AcFm/7.png b/vlm/train/HkxKH2AcFm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..74a22d59896789fe848ab869826b00743bfc9d04 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6584067f9f252aeccbbde2abdfb1fce35ed50f16373c5c0308dce0cbcbae86b +size 535637 diff --git a/vlm/train/HkxKH2AcFm/8.png b/vlm/train/HkxKH2AcFm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..751bd26e4e8624ef01a8c1f2438962a988c1343a --- /dev/null +++ b/vlm/train/HkxKH2AcFm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc935a1eab59f91a1a06837c7df40297f23af1cfc0c6422fd6e70b46dccd1fc9 +size 517340 diff --git a/vlm/train/HkxKH2AcFm/9.png b/vlm/train/HkxKH2AcFm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..42c6faa1c160db91ee95d9bf9993805a2e88d7d5 --- /dev/null +++ b/vlm/train/HkxKH2AcFm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79fddb0eb9ce27c6c7e16c52c2139548e17063a9894b091e88a211a0d9cb1bb4 +size 563443 diff --git a/vlm/train/HygjqjR9Km/0.png b/vlm/train/HygjqjR9Km/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdbecf001b88e5cb0bb885b930ebcd72eaed70d --- /dev/null +++ b/vlm/train/HygjqjR9Km/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6214f100794a5528f6bf92c30163055004ac70a3669284dcd29071444208899f +size 510878 diff --git a/vlm/train/HygjqjR9Km/1.png b/vlm/train/HygjqjR9Km/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d631ba885acd0c2389c77ea582384d125d385a51 --- /dev/null +++ b/vlm/train/HygjqjR9Km/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0c9c4ea5b0be2076a590287cad3ba631709f775406ac6b775265208d09524f +size 579906 diff --git a/vlm/train/HygjqjR9Km/10.png b/vlm/train/HygjqjR9Km/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b6ebf909b6d9f924fc1e2b08a525a485bc0d5c --- /dev/null +++ b/vlm/train/HygjqjR9Km/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60c44a7fa5771a96c669119fa24d945084b8a2ed4b3c6b96d7ca0d00b8b2fe4 +size 216325 diff --git a/vlm/train/HygjqjR9Km/11.png b/vlm/train/HygjqjR9Km/11.png new file mode 100644 index 0000000000000000000000000000000000000000..10639a8bc3a4da985fcd5fa79a437ce8571c7046 --- /dev/null +++ b/vlm/train/HygjqjR9Km/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948ace1b427e294af35f42b7dad3f25fb8863a25dbbc48cbf7d42aa6890f0021 +size 525602 diff --git a/vlm/train/HygjqjR9Km/12.png b/vlm/train/HygjqjR9Km/12.png new file mode 100644 index 0000000000000000000000000000000000000000..18b6933b476a45cd238a319892435a586821e99f --- /dev/null +++ b/vlm/train/HygjqjR9Km/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f083529a4b9705d3151008a71fc5ca7ff105c83aff7bc111a8b5381b97be94 +size 726701 diff --git a/vlm/train/HygjqjR9Km/13.png b/vlm/train/HygjqjR9Km/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6570ba1adefb7ceda18631ea3f0e269e27c83b7c --- /dev/null +++ b/vlm/train/HygjqjR9Km/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6754cdc498ec7ae69a55093c313c9d155b5d54df0ca59cb07cdd9c60c0e556a2 +size 386812 diff --git a/vlm/train/HygjqjR9Km/14.png b/vlm/train/HygjqjR9Km/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee849030268478740e408dee6ce07ab7b53a576 --- /dev/null +++ b/vlm/train/HygjqjR9Km/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91885e96a42e6f8bbdd1a8c9e01e7ef2633337f1e46412d62dea7477fb4420a9 +size 527836 diff --git a/vlm/train/HygjqjR9Km/15.png b/vlm/train/HygjqjR9Km/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d64ef29bb4614f7b52e986c97042e24e8653363a --- /dev/null +++ b/vlm/train/HygjqjR9Km/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a01e41c47a7678ed8761051dbe566052d12633ccc4eb199800b3d2b7286a31 +size 503426 diff --git a/vlm/train/HygjqjR9Km/16.png b/vlm/train/HygjqjR9Km/16.png new file mode 100644 index 0000000000000000000000000000000000000000..07f197014b966374498a5e0b042cb9c917077881 --- /dev/null +++ b/vlm/train/HygjqjR9Km/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2a04bc6b830d69956fa8d68aa034de3ea902db70b93496b180139612fd40b4 +size 394434 diff --git a/vlm/train/HygjqjR9Km/17.png b/vlm/train/HygjqjR9Km/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5e2c35421ed91dc5e0a312c20fe31f0e34a3cac3 --- /dev/null +++ b/vlm/train/HygjqjR9Km/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6da53d13bc265a942d75acf9d3fe7287cffc42c7eb1cc6b3797506d54b0a6c0 +size 508076 diff --git a/vlm/train/HygjqjR9Km/18.png b/vlm/train/HygjqjR9Km/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c3fbc068e2c95929b2c6d961df432d0869e5fa97 --- /dev/null +++ b/vlm/train/HygjqjR9Km/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b7b6d2b75af36a6e494fc1c08b95e5583073f591c19f304d70c11aa3b01e62 +size 508033 diff --git a/vlm/train/HygjqjR9Km/19.png b/vlm/train/HygjqjR9Km/19.png new file mode 100644 index 0000000000000000000000000000000000000000..066019e7e508f91402940143083f7ee7c2f3a5bd --- /dev/null +++ b/vlm/train/HygjqjR9Km/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d0f62c17ddb364e3229e5f453d758330351de30cab7c526f039b113a7732e1 +size 502312 diff --git a/vlm/train/HygjqjR9Km/2.png b/vlm/train/HygjqjR9Km/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b8a36f8d95baebc0a2d885475b21012cecf8942b --- /dev/null +++ b/vlm/train/HygjqjR9Km/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef4f1a835077989771c409ddce79e6118e85416d4761c342e9061c6017cbfb8 +size 545301 diff --git a/vlm/train/HygjqjR9Km/20.png b/vlm/train/HygjqjR9Km/20.png new file mode 100644 index 0000000000000000000000000000000000000000..f9598aa77a343e4265cacec5e5fd86cc2f46f969 --- /dev/null +++ b/vlm/train/HygjqjR9Km/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d79c813d7c32d7b9429f75cb9be282cb5b3fb339b904e1559efb70b2d980f39 +size 307739 diff --git a/vlm/train/HygjqjR9Km/21.png b/vlm/train/HygjqjR9Km/21.png new file mode 100644 index 0000000000000000000000000000000000000000..efed06b160a86b7416059fa4ff06e9567c3b6b95 --- /dev/null +++ b/vlm/train/HygjqjR9Km/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0928e13d701c7a04031b918c82509454bd211c3c9293b980f47c00b998cff3 +size 300724 diff --git a/vlm/train/HygjqjR9Km/22.png b/vlm/train/HygjqjR9Km/22.png new file mode 100644 index 0000000000000000000000000000000000000000..512b118dd22e93140b2ea7d427a2118c87680f8a --- /dev/null +++ b/vlm/train/HygjqjR9Km/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0508126ae0830e6eb4b76520734c4dac162cae4bc5e2b3e8026f3266dc82f5e7 +size 2618093 diff --git a/vlm/train/HygjqjR9Km/23.png b/vlm/train/HygjqjR9Km/23.png new file mode 100644 index 0000000000000000000000000000000000000000..1d8fdcb8b303e58e2d0fe52e7acb4a382eb70e6a --- /dev/null +++ b/vlm/train/HygjqjR9Km/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fcca9d3d33baeb194af0f9df427fd3792da0690ad3ed2238d1262fd28b96144 +size 2523569 diff --git a/vlm/train/HygjqjR9Km/3.png b/vlm/train/HygjqjR9Km/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fba1d0f38b18947fb25e9e9fe99c02badf8973bb --- /dev/null +++ b/vlm/train/HygjqjR9Km/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c2a004fa8b9a3be81989fe6c900dbf229f5c9c93e91a36b7fe5f04aea4b03a +size 517958 diff --git a/vlm/train/HygjqjR9Km/4.png b/vlm/train/HygjqjR9Km/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6e1a4359e4df474b56172987bfa8f072243f3176 --- /dev/null +++ b/vlm/train/HygjqjR9Km/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c077ce6df24d644df75d790231643620e94e9dd7a04781765446ae3a18f6355e +size 575230 diff --git a/vlm/train/HygjqjR9Km/5.png b/vlm/train/HygjqjR9Km/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8322fd7dd94c1b713e2afdf2f3923ce0f4c0464a --- /dev/null +++ b/vlm/train/HygjqjR9Km/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8844282e59e2fbcedcd92b06831e90b7874b3b9513e97452694679bec2f5e9 +size 567694 diff --git a/vlm/train/HygjqjR9Km/6.png b/vlm/train/HygjqjR9Km/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e20af736ceffaba717cd05c000356ea84898527c --- /dev/null +++ b/vlm/train/HygjqjR9Km/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db1fc4eb17f1a70458ca7f90dc930a0ad89120e554702fa134eeed32315e0e4 +size 464946 diff --git a/vlm/train/HygjqjR9Km/7.png b/vlm/train/HygjqjR9Km/7.png new file mode 100644 index 0000000000000000000000000000000000000000..aac1393b725a4e1dba3a58e4d633cc452236c451 --- /dev/null +++ b/vlm/train/HygjqjR9Km/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc4bd742cbb7aecf2f79b590cdf719c8fcac7df23eff59b2b3fffa55045ec72 +size 610897 diff --git a/vlm/train/HygjqjR9Km/8.png b/vlm/train/HygjqjR9Km/8.png new file mode 100644 index 0000000000000000000000000000000000000000..058e4dd155bb847e644312cbc78dd85082aac356 --- /dev/null +++ b/vlm/train/HygjqjR9Km/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f468c9154fb3c41a672496f882e676e8b37bbce7f36527875b5734796f0dafc2 +size 492695 diff --git a/vlm/train/HygjqjR9Km/9.png b/vlm/train/HygjqjR9Km/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3d7ecb5230d92cdbf173453cf4d29ccc96d9c1 --- /dev/null +++ b/vlm/train/HygjqjR9Km/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f93d911a9383770a5307bec6ad49c8035a4ea9223a88e1a85a5dbfbf023659 +size 497460 diff --git a/vlm/train/JQznhE5mdyv/0.png b/vlm/train/JQznhE5mdyv/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ceb725d892ffb15d831a58d9e594ef389c8d7402 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412097b383a4e9b4f3d3241bf2a6557f9339521364c0900d8202a8a9b3677905 +size 382272 diff --git a/vlm/train/JQznhE5mdyv/1.png b/vlm/train/JQznhE5mdyv/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1a10cfcad0ebcb9dbaa8611803452cc553706254 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da26f5a3ab9f0973f88843dc0a791cf381fb9b1e489add06957d9ba5ae5df06d +size 561303 diff --git a/vlm/train/JQznhE5mdyv/10.png b/vlm/train/JQznhE5mdyv/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a84393770f4ce7eb4f882fe8358ecebd0ef51c60 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394337d0a9eb049cb1ec0551ad9a29c8044f9077bafcfa9486aea2144248b6e4 +size 477361 diff --git a/vlm/train/JQznhE5mdyv/11.png b/vlm/train/JQznhE5mdyv/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bbda6a86e7774c8674eb447284e13e236e675a2f --- /dev/null +++ b/vlm/train/JQznhE5mdyv/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4463d105d115069f38a60c8fc29b3882a4412f2aa7676e5b798ef88bf5d86f7 +size 487903 diff --git a/vlm/train/JQznhE5mdyv/12.png b/vlm/train/JQznhE5mdyv/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5772442a8d28144446a37ebd1b6f2e03e7a0a360 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459c70ab3204f706ce3ec7636bdd9877d97bc9ba3e08325b2ab2ef6f4ba1319d +size 446439 diff --git a/vlm/train/JQznhE5mdyv/2.png b/vlm/train/JQznhE5mdyv/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c71f27da372fadd241b8493a6edd6d8eb30d1852 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd005bd8ab672779e8f4fcf6065b953921abad4692611846b5d522fdedf4828 +size 522244 diff --git a/vlm/train/JQznhE5mdyv/3.png b/vlm/train/JQznhE5mdyv/3.png new file mode 100644 index 0000000000000000000000000000000000000000..689f8417855fc66c57aae3edfd5dc13f5f54ccdf --- /dev/null +++ b/vlm/train/JQznhE5mdyv/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289e4d97ed13f8810a0bc7dc4ccc5bff914747b180a0bdf092fa83030a4725a4 +size 503931 diff --git a/vlm/train/JQznhE5mdyv/4.png b/vlm/train/JQznhE5mdyv/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2af15724e4cc7a020b1dc08cc8b900835ee12840 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348f916c155bbb3e2fb48820263fcfc1d53b42764e7f34a6a42929f4feaa3537 +size 455083 diff --git a/vlm/train/JQznhE5mdyv/5.png b/vlm/train/JQznhE5mdyv/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ab961c592fbf30178a4c81207ba50349ae7c0ecd --- /dev/null +++ b/vlm/train/JQznhE5mdyv/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c9ce1f9d4867a593c104d29d6beab1a6852897f7f48ea4dd52ada6d10961d12 +size 598271 diff --git a/vlm/train/JQznhE5mdyv/6.png b/vlm/train/JQznhE5mdyv/6.png new file mode 100644 index 0000000000000000000000000000000000000000..766672c2408c84ae7f1ddc875ddb539d4b351d65 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402942a8c7d45db024e1f0bd5753f8c0cd6da848c0d9338d26849c26ea982d90 +size 458770 diff --git a/vlm/train/JQznhE5mdyv/7.png b/vlm/train/JQznhE5mdyv/7.png new file mode 100644 index 0000000000000000000000000000000000000000..16b3fa0f8e7af3c69baa8cf3534187e21efc96fd --- /dev/null +++ b/vlm/train/JQznhE5mdyv/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa0ef870482a4a651a1a954a6fe5b429d34f68434b1adeb64641097f78bd0c23 +size 485258 diff --git a/vlm/train/JQznhE5mdyv/8.png b/vlm/train/JQznhE5mdyv/8.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb407c613c9fb96e964792f430775e193398db5 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:040f3d0ac8081ca75c543a7cae96962a476d07c027ad3dc9ebf1c3b976811cd4 +size 471843 diff --git a/vlm/train/JQznhE5mdyv/9.png b/vlm/train/JQznhE5mdyv/9.png new file mode 100644 index 0000000000000000000000000000000000000000..18ed0d4c78adb4b4fa1530897eabbd3eabbd4969 --- /dev/null +++ b/vlm/train/JQznhE5mdyv/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54200f072f23dca889d2ae5145bf5f0011f67420ebc315776791b615bc01252d +size 519179 diff --git a/vlm/train/L80PLIixPIXTH/0.png b/vlm/train/L80PLIixPIXTH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..be8126692041bd3bd6cc13847b34b047e7d20db4 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b6c232fac4abc1f886bb80adf10f4c7b2872e30275e2ea81088507e0388e5b +size 470870 diff --git a/vlm/train/L80PLIixPIXTH/1.png b/vlm/train/L80PLIixPIXTH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..639382d58d30e761464fca010056972453ea0f21 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22c24c136e01be460e3c41d597409461a2f5cb57b9dc6dcadd9b78695887ad8d +size 434706 diff --git a/vlm/train/L80PLIixPIXTH/10.png b/vlm/train/L80PLIixPIXTH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0083cbf2e5075a6cdc3c1761dbd0115df5efa148 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570ae2ce3add7218722a1a78b509c3f82f2efcd344ebba28d83877f66b9c5804 +size 569362 diff --git a/vlm/train/L80PLIixPIXTH/11.png b/vlm/train/L80PLIixPIXTH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..015891ea423cbe1a4a1c5587ca01dec111856c04 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6cb42d075878d45df92ceb39923d4c104ad09680c893e6169a667465e654c26 +size 601060 diff --git a/vlm/train/L80PLIixPIXTH/12.png b/vlm/train/L80PLIixPIXTH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2a64495c68dca4ca342a0a8e8d5b2939a9e73446 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ce6f345484843cac8e582c9d8bd360a2eb29c2c6d1ed5c2ff7488908a28717 +size 125087 diff --git a/vlm/train/L80PLIixPIXTH/2.png b/vlm/train/L80PLIixPIXTH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28f81f768578a20fdec507e525b35162d8e4895f --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7278999ce3db9f732ab7c2353aa1a1f7c58172b29c6467fff8a866593e2797a +size 465390 diff --git a/vlm/train/L80PLIixPIXTH/3.png b/vlm/train/L80PLIixPIXTH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5ee6b30cd05e5307754cfd7cece5a8d7d2845e18 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab5e6b2710112616b467c344a093dc2268c91ea7ab92c5c399f51e27b87b5ae +size 512319 diff --git a/vlm/train/L80PLIixPIXTH/4.png b/vlm/train/L80PLIixPIXTH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c6874fb34851f813d69490f6cd381ee372f703a1 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cf2605df4f06947b2ab8e6312a6fcb607423cdcc06755f599d5af4b9644a473 +size 417507 diff --git a/vlm/train/L80PLIixPIXTH/5.png b/vlm/train/L80PLIixPIXTH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c6f9323c04a7b46365b4481e83f764c4cd6bef74 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c80734729e73a110c0ab1b8373ca6af91ddad74172f03becf008ca6111fe745f +size 455223 diff --git a/vlm/train/L80PLIixPIXTH/6.png b/vlm/train/L80PLIixPIXTH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0ecb33ef14364b44f9aa82539307e87547283305 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8dc3a589c61b0609f685011581245e2cdd1b827f1e3af5552549f086e2ad61 +size 460753 diff --git a/vlm/train/L80PLIixPIXTH/7.png b/vlm/train/L80PLIixPIXTH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..263b64ebd36ef72769a5198e14f0cd97e8cde765 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b995ca6a0c62cc916803e890e37faedb4d4362e72aff435c44d41b8e5ba969ab +size 521905 diff --git a/vlm/train/L80PLIixPIXTH/8.png b/vlm/train/L80PLIixPIXTH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..817d05b352b9501cec829b9a94f6facd2a23c257 --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d93e72f56b9816902bd0b87e7d31262b12c0ee353b32fb83d353780196463e8 +size 546595 diff --git a/vlm/train/L80PLIixPIXTH/9.png b/vlm/train/L80PLIixPIXTH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5d9e34bf8aba953d481387f76d12be155284426a --- /dev/null +++ b/vlm/train/L80PLIixPIXTH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9121190787e8b6792de243048ac6ab066ae27fe91629340c7ca8020fefbe0c +size 538642 diff --git a/vlm/train/LoUdcqLuPej/0.png b/vlm/train/LoUdcqLuPej/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2b642e5b8a8ebcddc552f65a777c07a054341298 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93441f0c66644e65db1bfb9dfcfd2ba3e8775b23ab1d2fd19a7049a22945ec7c +size 462156 diff --git a/vlm/train/LoUdcqLuPej/1.png b/vlm/train/LoUdcqLuPej/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2fa061d4bcaf967869f1cd7bf582af4394419af6 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c9aaceb280f0b432d360e16570b2b496ed18a4675c5c4817e00d33ce19b5a3 +size 612622 diff --git a/vlm/train/LoUdcqLuPej/10.png b/vlm/train/LoUdcqLuPej/10.png new file mode 100644 index 0000000000000000000000000000000000000000..69ca350f9b1eb8b952db47225296837832a7495f --- /dev/null +++ b/vlm/train/LoUdcqLuPej/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8232f342907dea66541d0e66622ba56c1b58bd8064c5576a89cee2525829ff95 +size 584087 diff --git a/vlm/train/LoUdcqLuPej/11.png b/vlm/train/LoUdcqLuPej/11.png new file mode 100644 index 0000000000000000000000000000000000000000..5d307c6d53ad9dad7c3cf9492038575b63c76e28 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e1ee4b41f6c3071783fe60e6b87d72b77e2eda024bd0d276684d5911b32e79 +size 568935 diff --git a/vlm/train/LoUdcqLuPej/12.png b/vlm/train/LoUdcqLuPej/12.png new file mode 100644 index 0000000000000000000000000000000000000000..627b78da396d58fcbfa18a3d2c8746b7b1b54406 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6375eb9e587177b838ac153c0e9db3f696eca0fdbdbb860376ebdc0be6aa7920 +size 531979 diff --git a/vlm/train/LoUdcqLuPej/13.png b/vlm/train/LoUdcqLuPej/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f5ebeecca983989c61b5108853d2b83c4a392e57 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d241d016dec1a8cae157e21d922b215366f5ac4510d553b681f3996c5f81cb58 +size 576508 diff --git a/vlm/train/LoUdcqLuPej/14.png b/vlm/train/LoUdcqLuPej/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3a4e36bb653b6e71c05135e1227b4cb358f3ec --- /dev/null +++ b/vlm/train/LoUdcqLuPej/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e06f5e0a34e6084ee69899fac0a66ae3fce2a98ca78f0214961015ea83bcb2 +size 564294 diff --git a/vlm/train/LoUdcqLuPej/15.png b/vlm/train/LoUdcqLuPej/15.png new file mode 100644 index 0000000000000000000000000000000000000000..84a99b7566c6da417c5df0da4af5e186b85a5c78 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7869641cd8c8ee39f2bef91c3f9c8b1276b82872b95ae8dba9dc9e02814fe068 +size 592405 diff --git a/vlm/train/LoUdcqLuPej/2.png b/vlm/train/LoUdcqLuPej/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1f9b56761b4aa67847c8e129e9f0948084cfba --- /dev/null +++ b/vlm/train/LoUdcqLuPej/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40745aa36bfa7eaccebf6da98d7a36f5c5c038b0a87b8f81da2ac081e75de93b +size 614998 diff --git a/vlm/train/LoUdcqLuPej/3.png b/vlm/train/LoUdcqLuPej/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7f28469f6c67d7c53e6c754be933cbabcfe452e1 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8d4047465c4da4b3bbbe875623f4bf75b0b492a54ee169365a1b51554d6e57 +size 488272 diff --git a/vlm/train/LoUdcqLuPej/4.png b/vlm/train/LoUdcqLuPej/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7edaae490dfeafebed8a59f24419871d043e967b --- /dev/null +++ b/vlm/train/LoUdcqLuPej/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c36db43dfedcf474255488882b99394989730173271a5eb857f47c3bd27ec7 +size 583222 diff --git a/vlm/train/LoUdcqLuPej/5.png b/vlm/train/LoUdcqLuPej/5.png new file mode 100644 index 0000000000000000000000000000000000000000..63228410363b435ac539a8778d31303d7464d28f --- /dev/null +++ b/vlm/train/LoUdcqLuPej/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8cc6ef0014b6ebb811c87e11832abe69953d871226c4a3f7b45fa869d19a10c +size 753124 diff --git a/vlm/train/LoUdcqLuPej/6.png b/vlm/train/LoUdcqLuPej/6.png new file mode 100644 index 0000000000000000000000000000000000000000..980d1af882c7c03036d6f57e23c7db072ee5a4d6 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1166a9a374a8b1d2c0847679ec427f2f613875ac45af21835399bc18b1afbae +size 562861 diff --git a/vlm/train/LoUdcqLuPej/7.png b/vlm/train/LoUdcqLuPej/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0fde67f3c54b3e0e1cb9910cb025671a3f8373d8 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05a2da6522b10b026c32a4f0bfcb1881f71a81c5574c659a0ccfa2ecd3ca3cd +size 561122 diff --git a/vlm/train/LoUdcqLuPej/8.png b/vlm/train/LoUdcqLuPej/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7f77f13e3534245e6df7a28251066cb52c6cb792 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43e9f2348068c0954c98b0da9453d4ce4d7ef1d69495688740a22495268eecbf +size 604397 diff --git a/vlm/train/LoUdcqLuPej/9.png b/vlm/train/LoUdcqLuPej/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a651556cd170b9130bf8f34e25e6349336f2d541 --- /dev/null +++ b/vlm/train/LoUdcqLuPej/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea842049bf8b00a266ef792976de87acfd6823d90e6b5d217796460d58290be6 +size 674705 diff --git a/vlm/train/MDsQkFP1Aw/0.png b/vlm/train/MDsQkFP1Aw/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ac1a9dda749131954a36e3b4573284e7c76dcdc0 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d349cb9783e83a0fe03dce367459b7a77526d3167f1a977fff1338626d7434c +size 651723 diff --git a/vlm/train/MDsQkFP1Aw/1.png b/vlm/train/MDsQkFP1Aw/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9dfd63e0288bd3e6c8a9afa91a3b88145320d5a3 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f22852b645bc372d20f20b0fb4629ef83d761b1ed3fe4035df301f3c2be302c5 +size 610061 diff --git a/vlm/train/MDsQkFP1Aw/10.png b/vlm/train/MDsQkFP1Aw/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0b063ebc35ab18177eff1a0f5fb2c43c162dcc73 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b39ea9601936a4ca44746efcdcbc8f4f96cf1291aa7ae7f30d2f8e081270449 +size 545062 diff --git a/vlm/train/MDsQkFP1Aw/11.png b/vlm/train/MDsQkFP1Aw/11.png new file mode 100644 index 0000000000000000000000000000000000000000..eccc044a75d91533bb75707edc06dc2b7ec49c88 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e121d49b3119e7e47a95dc0004dea5d62760de7f7260eef5b042eb7befe80b6d +size 475821 diff --git a/vlm/train/MDsQkFP1Aw/12.png b/vlm/train/MDsQkFP1Aw/12.png new file mode 100644 index 0000000000000000000000000000000000000000..a3c1ddff6c2011917f069d644fb106324cc338d0 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d283837cbcbc6a505db034be1553929504175001f1746c2310f1c5e84d3d16 +size 1498842 diff --git a/vlm/train/MDsQkFP1Aw/13.png b/vlm/train/MDsQkFP1Aw/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f3b719eacd4a9eab89c388ad95f27300e4a35127 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805300c0d94ef8d3a578a96d324608fd7c039fbe32e48a1a0f1e7bcafc2f6f9b +size 1597246 diff --git a/vlm/train/MDsQkFP1Aw/14.png b/vlm/train/MDsQkFP1Aw/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b85dd2c5b1132a201c077bb3881f11cfc7fa5c72 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf906cd1d551236ea03571de7035bca3713f0c95af629b2dacdf68bb4db6524b +size 1509947 diff --git a/vlm/train/MDsQkFP1Aw/15.png b/vlm/train/MDsQkFP1Aw/15.png new file mode 100644 index 0000000000000000000000000000000000000000..25b85fe244548439ebdbffb5262213cc29381816 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a66001be183ca30c65156ac4a27394b286901783108de73b230ee4e9a076c7b +size 1021127 diff --git a/vlm/train/MDsQkFP1Aw/16.png b/vlm/train/MDsQkFP1Aw/16.png new file mode 100644 index 0000000000000000000000000000000000000000..cd5e19bf3b582d108ebfd420fd8031302cd96fc9 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49662b8376de817aeeff5220a7630549d662a70bdac9fdae7beb9813f2b86459 +size 541151 diff --git a/vlm/train/MDsQkFP1Aw/17.png b/vlm/train/MDsQkFP1Aw/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f22de2ca0dfff16ed19d53c2c282e593b0dc1350 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a10fa3cc3dfbac3955c57508ae43c805600ed14d98f1c6ca50a28093bb392765 +size 464347 diff --git a/vlm/train/MDsQkFP1Aw/18.png b/vlm/train/MDsQkFP1Aw/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9c84d8e62532f6e2dda1f00bd8d2fba0911a336c --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47d564afdd8b6bfb0d714cb2ae54e0e04d1bec8afa908fe0fcdf82a08fae0174 +size 484654 diff --git a/vlm/train/MDsQkFP1Aw/19.png b/vlm/train/MDsQkFP1Aw/19.png new file mode 100644 index 0000000000000000000000000000000000000000..7479854b33562c9147a0551f8946698d5c38f841 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a6e63815be3ed6a082f7032f72a5983c81b04669deea0385bd6d5fb4e191a9 +size 468216 diff --git a/vlm/train/MDsQkFP1Aw/2.png b/vlm/train/MDsQkFP1Aw/2.png new file mode 100644 index 0000000000000000000000000000000000000000..895fe4c23a5ea7eec9fe24df9ed5c4acf7bd5799 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58eca56d0d8f56674981a55724097a6cb119b12329483d638adb499df5a12df2 +size 539464 diff --git a/vlm/train/MDsQkFP1Aw/20.png b/vlm/train/MDsQkFP1Aw/20.png new file mode 100644 index 0000000000000000000000000000000000000000..7ff3c96777bd6b36e79c78d0cdb42121b154d61f --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199fe2b49242ff9fb417b9396afb14fef3abd4a54792ad75009f40a2051add05 +size 443573 diff --git a/vlm/train/MDsQkFP1Aw/21.png b/vlm/train/MDsQkFP1Aw/21.png new file mode 100644 index 0000000000000000000000000000000000000000..cbcb136891af30695c0a953124393e9c385830c4 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e07c6f244e3ae190d7a7966d42feeadc53c19aba8d13bd5c9383c78d5415b4 +size 512679 diff --git a/vlm/train/MDsQkFP1Aw/22.png b/vlm/train/MDsQkFP1Aw/22.png new file mode 100644 index 0000000000000000000000000000000000000000..37cc54d566d0049556364335e0c53b2a46b9a75a --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa2533cac6fc1621b05463988dcd2ec655f1902547f33a85f72f228e550aee6 +size 347268 diff --git a/vlm/train/MDsQkFP1Aw/23.png b/vlm/train/MDsQkFP1Aw/23.png new file mode 100644 index 0000000000000000000000000000000000000000..0b71d053af1ee2d8e41df814d9ac35568c81f039 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9eab163e48128e57f76abc63a5ece54b827e7fef9ab1dceb20998bdc41d3885 +size 321556 diff --git a/vlm/train/MDsQkFP1Aw/24.png b/vlm/train/MDsQkFP1Aw/24.png new file mode 100644 index 0000000000000000000000000000000000000000..ea4bd9a593517a1c15746e20745554d92e41306a --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8198e908d0ab3dd04ad03d031fd4e19e74be4c566b19be307a8316a91459240 +size 272825 diff --git a/vlm/train/MDsQkFP1Aw/25.png b/vlm/train/MDsQkFP1Aw/25.png new file mode 100644 index 0000000000000000000000000000000000000000..286766b67f22d0d7aa32dc64bb78c070e0e59503 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4331253506c9b30677eaa49d2c4acfdbd60c17abf87b78fe84280b49b35a1e2 +size 279174 diff --git a/vlm/train/MDsQkFP1Aw/26.png b/vlm/train/MDsQkFP1Aw/26.png new file mode 100644 index 0000000000000000000000000000000000000000..371a03c2bdc38e8aa5656ebc54b6545d3f1b0eda --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894f68c92f98d81c229f4c088e1e0f8f99c313ddf865c6d292deeea40af24f81 +size 275014 diff --git a/vlm/train/MDsQkFP1Aw/3.png b/vlm/train/MDsQkFP1Aw/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3c6538cb5fba23dbf7f2d06138138caac4e027d7 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13953bc01b10a0cfbda0d57cc8a98bc8a3c5658ce82a0932b2eb996cf7df11db +size 562717 diff --git a/vlm/train/MDsQkFP1Aw/4.png b/vlm/train/MDsQkFP1Aw/4.png new file mode 100644 index 0000000000000000000000000000000000000000..93b548a4e4f2c2acd3716350972e7ea741bf80b1 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de8e0921a84d837d06fc4f5291e641fd9fd2e05695550c8e0e80696b029c228 +size 544120 diff --git a/vlm/train/MDsQkFP1Aw/5.png b/vlm/train/MDsQkFP1Aw/5.png new file mode 100644 index 0000000000000000000000000000000000000000..59fe7cca0659161ce6c44573b6a912b6f2fb7bb1 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f50f2f3b241c502fe57327ee37e3ed5b4f19992da742b388038c3870aa5034c +size 426207 diff --git a/vlm/train/MDsQkFP1Aw/6.png b/vlm/train/MDsQkFP1Aw/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4533bd0d4c73d38bf787528d97a47711537849cf --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca6e60cfef5e1f8e51a30c0d14b35aede7f97076b1598de606e5a486404fb2d +size 599741 diff --git a/vlm/train/MDsQkFP1Aw/7.png b/vlm/train/MDsQkFP1Aw/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2c3cd40551ac601be82ccd8b8660ac7f372f62aa --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b05f27bcfe0e2aeb3cf3cb8bb6d5c6b5be238feae37385182b3bc00c01e26d +size 548615 diff --git a/vlm/train/MDsQkFP1Aw/8.png b/vlm/train/MDsQkFP1Aw/8.png new file mode 100644 index 0000000000000000000000000000000000000000..35a57627be9775eaec2d6d9a5beb84352a5ecb30 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f924595d1bb175df04e55c40cdf7aa5a11c4c2eb4d4249e9c6dd2f345d3f3d7 +size 618519 diff --git a/vlm/train/MDsQkFP1Aw/9.png b/vlm/train/MDsQkFP1Aw/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3f2d59e21a76fa13d5a58748ae85de241e23cf06 --- /dev/null +++ b/vlm/train/MDsQkFP1Aw/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5947f3761211db5a5e5e6b84af89b14cd54de3d6fcdccb982936d262dbb8d578 +size 568654 diff --git a/vlm/train/N5hQI_RowVA/0.png b/vlm/train/N5hQI_RowVA/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f022c713f87cd0043eb86e659eb17853e2065a6c --- /dev/null +++ b/vlm/train/N5hQI_RowVA/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad7ed4cb80decef9f3e56dd158ca5dad7b71b2fd7fbec2c7a73a9830bcda0d5 +size 410287 diff --git a/vlm/train/N5hQI_RowVA/1.png b/vlm/train/N5hQI_RowVA/1.png new file mode 100644 index 0000000000000000000000000000000000000000..11e1e9e7065009a5e42cb55a3d591d88d7f51b28 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e70c8f0d8dfd5f7d0eaef3b6929ed12bc94bab33150ad2ab28802acc0d3e24 +size 509132 diff --git a/vlm/train/N5hQI_RowVA/10.png b/vlm/train/N5hQI_RowVA/10.png new file mode 100644 index 0000000000000000000000000000000000000000..778cdb6f374ec6196595676e96bd490c70ebd709 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c4c26f22bd357dd01f659fa549d48da6e487edadddb23769735fc7b723a713 +size 590699 diff --git a/vlm/train/N5hQI_RowVA/11.png b/vlm/train/N5hQI_RowVA/11.png new file mode 100644 index 0000000000000000000000000000000000000000..25ae0be817375ac7f66e3391a8484b288662ab17 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e4ce3adc1dbd4935e176202bc46da4eb9388a2f2e205064415abd5d79b32e6 +size 418827 diff --git a/vlm/train/N5hQI_RowVA/2.png b/vlm/train/N5hQI_RowVA/2.png new file mode 100644 index 0000000000000000000000000000000000000000..96b28d0a4fefa4c24b0ada918ea657c0a2bc6f08 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415c08fcdb03056f05057b63d3881961f76c16660a79e3ccb46d71b9ee8cf4f8 +size 591249 diff --git a/vlm/train/N5hQI_RowVA/3.png b/vlm/train/N5hQI_RowVA/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4373a3f2fdeff4be761541f1dfcdb576da60e8ec --- /dev/null +++ b/vlm/train/N5hQI_RowVA/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6037261cd1812344973c8f1897772752aad87437e7e958aa2fa2b82825f8d3 +size 518033 diff --git a/vlm/train/N5hQI_RowVA/4.png b/vlm/train/N5hQI_RowVA/4.png new file mode 100644 index 0000000000000000000000000000000000000000..62eda96ce589aa883391b18dbe81b237eff50ed7 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0572a71df47ebce0df4e03c03c3df614c99ca525ff4c41fb474a85c58c62d6ad +size 557732 diff --git a/vlm/train/N5hQI_RowVA/5.png b/vlm/train/N5hQI_RowVA/5.png new file mode 100644 index 0000000000000000000000000000000000000000..89b7465cc50a47e1422dd5686607245b4ca6c750 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ceb5c879c5fc39ffc6d6621c6b1fd372d6477ea67025aae8716d84acb49bffb +size 546209 diff --git a/vlm/train/N5hQI_RowVA/6.png b/vlm/train/N5hQI_RowVA/6.png new file mode 100644 index 0000000000000000000000000000000000000000..91adcb865c864acb18ac01f324dee822ff1c24cb --- /dev/null +++ b/vlm/train/N5hQI_RowVA/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4c2e520dc31e95b23692911ec7b90ea8a99c23def2aace71a872016bbeb72c +size 545032 diff --git a/vlm/train/N5hQI_RowVA/7.png b/vlm/train/N5hQI_RowVA/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2612735e400ca243e1b03202c6e3aa34c118a23d --- /dev/null +++ b/vlm/train/N5hQI_RowVA/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526754e4832d37802cefc676b50d8510f31e88d965e91466d2b56a0c5299a0e1 +size 602972 diff --git a/vlm/train/N5hQI_RowVA/8.png b/vlm/train/N5hQI_RowVA/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8192c970b235384a709970d8145a30f228637884 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e7b0295fb0679e54f4dd7f7820ab83df3c9194cc91a003306e49dbb7abb201 +size 499781 diff --git a/vlm/train/N5hQI_RowVA/9.png b/vlm/train/N5hQI_RowVA/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e90946b6490b5bae96b170f40b1dea2dd4ab62a6 --- /dev/null +++ b/vlm/train/N5hQI_RowVA/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce989983af29a17344d2621dd799f658af3820746bac163552825daf563b4c9f +size 515300 diff --git a/vlm/train/NfZ6g2OmXEk/0.png b/vlm/train/NfZ6g2OmXEk/0.png new file mode 100644 index 0000000000000000000000000000000000000000..03a8379252beb3bb5cf4098882dff6ab17401ba9 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b7b9252ab483ec064992f6d8e93b585e4a9b33e794f5a34bd509196db448ae +size 530070 diff --git a/vlm/train/NfZ6g2OmXEk/1.png b/vlm/train/NfZ6g2OmXEk/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a68caf5e1f36d6f0e80c8414905397e70cbd8e9b --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1516c4eae4be0a9875592dbb28faa8dbe880c842ea6c8760bdb0bad36663dd +size 545522 diff --git a/vlm/train/NfZ6g2OmXEk/10.png b/vlm/train/NfZ6g2OmXEk/10.png new file mode 100644 index 0000000000000000000000000000000000000000..01ec2f65203519ce70b5540c5b8360eb296119b6 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2329b6b9bf50a17c90b4e6480a3e5f0f4c6636870e6dcaf8cbcc6a83e6ac3c +size 513074 diff --git a/vlm/train/NfZ6g2OmXEk/11.png b/vlm/train/NfZ6g2OmXEk/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0ca6b5fac96eebc46dd8c8ea2e7072c9080ed4b2 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9b69cdbf761fb60eda24498c899ddd1e46ca89f80ef476550ca64768490511 +size 577961 diff --git a/vlm/train/NfZ6g2OmXEk/12.png b/vlm/train/NfZ6g2OmXEk/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9669f8d326dc67574a8a71669d27bcebbadacc10 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eba026d5e9da0a4732cf6839ccd2d815dbfe0b84f37ff60ac6be4cdad15722a5 +size 432465 diff --git a/vlm/train/NfZ6g2OmXEk/13.png b/vlm/train/NfZ6g2OmXEk/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3fe7d26319bbc7b66273873d5767c33dd4f2e598 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a956ff68eee0f2e2cad5a4e795b267014d5c83e7a3c1bd0bcafb87c6393837 +size 332571 diff --git a/vlm/train/NfZ6g2OmXEk/14.png b/vlm/train/NfZ6g2OmXEk/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5f4fa98f2cd3281ca7f54ac387c79764ac450528 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98d05499623c70d1f81d2d8153ab1d8483fd945b4ab32a5308b0e4e6bcb046d +size 664730 diff --git a/vlm/train/NfZ6g2OmXEk/15.png b/vlm/train/NfZ6g2OmXEk/15.png new file mode 100644 index 0000000000000000000000000000000000000000..49319b84152d5245ef8ae99f2bce7579c977d5e8 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0ed1b20d206800091f29cf081d4b33e11389b4814e18440e29360a62bbd3eb +size 515218 diff --git a/vlm/train/NfZ6g2OmXEk/16.png b/vlm/train/NfZ6g2OmXEk/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9dd3b97b39fcd82dc25bfc4e49af177f39c6ebba --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5109d973c3d85472900505a47860558850419890984ccb62152bcf3b9e34edf6 +size 346781 diff --git a/vlm/train/NfZ6g2OmXEk/17.png b/vlm/train/NfZ6g2OmXEk/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ac1ccddaffeedbdbe62faa4290b633e2715a0095 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2695d285d63f62091ec1b8328fb33efc166f3aab003d4cd257b1e89b655b3ad8 +size 253309 diff --git a/vlm/train/NfZ6g2OmXEk/18.png b/vlm/train/NfZ6g2OmXEk/18.png new file mode 100644 index 0000000000000000000000000000000000000000..ce3b582e6bbd464a0c104fef0d6dd5b7148f863b --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bffbf1e708ca90e9bccf79508e2e85171f6ead6295f877f17bb070fc59cd13f +size 446451 diff --git a/vlm/train/NfZ6g2OmXEk/19.png b/vlm/train/NfZ6g2OmXEk/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1d701f0216a97d4c74bf2ca55b1a038de1047a --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58205c585f831107fd0db8c3ed2266dca76feffe82a0d799e980c8df96725687 +size 509389 diff --git a/vlm/train/NfZ6g2OmXEk/2.png b/vlm/train/NfZ6g2OmXEk/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5909e29f662ccec85638e6e86a4662637acdbdd7 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdca17c048be5aea666d83d63bfadb4e1b9bf7a411f75caa96a260ae7f07a57 +size 599219 diff --git a/vlm/train/NfZ6g2OmXEk/20.png b/vlm/train/NfZ6g2OmXEk/20.png new file mode 100644 index 0000000000000000000000000000000000000000..366c8ea5bb030fcf3c1ddc4bbc6e8ee7fa93a3b6 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2982c6bca52dc4e1277c55d63ea7701ee040d230e52a42fcc83ce531983be5d5 +size 543742 diff --git a/vlm/train/NfZ6g2OmXEk/21.png b/vlm/train/NfZ6g2OmXEk/21.png new file mode 100644 index 0000000000000000000000000000000000000000..761dd063b2a3dc7f513f7185a78bc8868e0e5430 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61ef54fb6ac20202e7a09c3c04dfa48e32bd4b956ed14eebdd43ae4064ee5bab +size 239514 diff --git a/vlm/train/NfZ6g2OmXEk/22.png b/vlm/train/NfZ6g2OmXEk/22.png new file mode 100644 index 0000000000000000000000000000000000000000..50a20a06f9b2ab6f65c1989f11afe9a0c31971bf --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da25942d62171bff621998cefdaaedf062fe9e0c071e7af21c350966533017be +size 276394 diff --git a/vlm/train/NfZ6g2OmXEk/3.png b/vlm/train/NfZ6g2OmXEk/3.png new file mode 100644 index 0000000000000000000000000000000000000000..51c7d8b0533a458ed9cac4738643bae832bbf3cd --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3245a9e682e4cc05608c7167ed85ab2196f712bfa03e0d5a980402dbe09f2a6 +size 457285 diff --git a/vlm/train/NfZ6g2OmXEk/4.png b/vlm/train/NfZ6g2OmXEk/4.png new file mode 100644 index 0000000000000000000000000000000000000000..edc9cb5d78f4f50be1159ea0de54dbf294ccb37d --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa02d18199263b1d72f70a1a0d2b7d2af77514cbf79f62cf3214f51cd69cdc8 +size 497020 diff --git a/vlm/train/NfZ6g2OmXEk/5.png b/vlm/train/NfZ6g2OmXEk/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d084587d67cb0e6d9ddcb0664b328bd04fb8809 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fb7ecff63a9c8d869046a7b3dd60da8c77cd5249c65b8491917bdfb4734b2f +size 555291 diff --git a/vlm/train/NfZ6g2OmXEk/6.png b/vlm/train/NfZ6g2OmXEk/6.png new file mode 100644 index 0000000000000000000000000000000000000000..affa83eeb59f732af32d21bcbc687e93a94941d6 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316b5bda70c3b6f8601d4b6ac97f4f0b80d37bf484f91b5363ae0f06f13508ff +size 621440 diff --git a/vlm/train/NfZ6g2OmXEk/7.png b/vlm/train/NfZ6g2OmXEk/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac80da5e9f04f291fb10ba7eef7b54fb0c21db6d --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e26a5163ef082f161655f657178c7cd3e3d412e5d9acace25c0e10c29c5580 +size 517397 diff --git a/vlm/train/NfZ6g2OmXEk/8.png b/vlm/train/NfZ6g2OmXEk/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9ac0322e645fccd78311443ad15be25f678129f9 --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1869b68aac08a15abca6ebd8c5bc4da716abb2370e118b9d0cfb216aa3e6f254 +size 607909 diff --git a/vlm/train/NfZ6g2OmXEk/9.png b/vlm/train/NfZ6g2OmXEk/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a8cea1317c7abbba18f1096efed1c54b21e65b8d --- /dev/null +++ b/vlm/train/NfZ6g2OmXEk/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a067a9543b91e825da400e285899c25fa11e50bdac7bedf68f30b5167d57dcd +size 551443 diff --git a/vlm/train/PxTIG12RRHS/0.png b/vlm/train/PxTIG12RRHS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bf9bba2b4dca025ab2a89aa882d4b24c699d38df --- /dev/null +++ b/vlm/train/PxTIG12RRHS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4df964c868bb76c0c0bb5e6e082c1e808daa0c8718afd2cdb4237cbd3197264 +size 513466 diff --git a/vlm/train/PxTIG12RRHS/1.png b/vlm/train/PxTIG12RRHS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..008f0584b1764ead07c7db58ed5972bfd940901e --- /dev/null +++ b/vlm/train/PxTIG12RRHS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f9082dd1ef9cfe14ccd0b1a9c818a86d2f2f80897e9fb51fdf66240efe6479 +size 767231 diff --git a/vlm/train/PxTIG12RRHS/10.png b/vlm/train/PxTIG12RRHS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c42dd47fc0b8bd952a8953208d35e5c00d38bb03 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a806a84eb91778d5f1b5dddb09b00419811a10d7c602cff269d582fb00e37f8f +size 539318 diff --git a/vlm/train/PxTIG12RRHS/11.png b/vlm/train/PxTIG12RRHS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f131d506c93f1ca8bfad390276095739106e67b2 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fceb9c9c20f9bf0a52bea208543c7b6466800c5598cdde13a581dea806afaa +size 447484 diff --git a/vlm/train/PxTIG12RRHS/12.png b/vlm/train/PxTIG12RRHS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5b73175d6b1f2f9ae58eb8dc1a227daf9f79ee61 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9991397f3acc76092f171c4ee599359debf5e5e12b59b22cd966bb89108b7b68 +size 517608 diff --git a/vlm/train/PxTIG12RRHS/13.png b/vlm/train/PxTIG12RRHS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..f257eec5a96727ed3214c4a50e57fbaefa23901f --- /dev/null +++ b/vlm/train/PxTIG12RRHS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ef03a691340b5fc584a69675eefc5ec50bf659a40a573e116e38fab18a9136 +size 424148 diff --git a/vlm/train/PxTIG12RRHS/14.png b/vlm/train/PxTIG12RRHS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3e735abf98cbff45eadd85f9ff0203ed1724ca82 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f9e6cabb1e021b2f808099cf21f0631530a4184adff4cbd64616aa11135e32 +size 507695 diff --git a/vlm/train/PxTIG12RRHS/15.png b/vlm/train/PxTIG12RRHS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c65a3634797a16e2ec51ab1e8833fd04f270ce31 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee18237e93a1166a0b8085e177b3dec6087b6f906ffb71980f283ec0d18d7ce0 +size 485363 diff --git a/vlm/train/PxTIG12RRHS/16.png b/vlm/train/PxTIG12RRHS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..cf28e3582f5852bf4a4d3606dc179fa4a28ed059 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdd755dacd5e84a8658dbc98cfdf54fabac4a6daf5eb0ed203fa3b35227b149 +size 326242 diff --git a/vlm/train/PxTIG12RRHS/17.png b/vlm/train/PxTIG12RRHS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..044c40b11a1b252e82834c96fe0cb9ab41d3722f --- /dev/null +++ b/vlm/train/PxTIG12RRHS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c1dfbd6d76f5309ea6441586b4ffb7d28e19dcc90b3a69b6342dbb797fc22b +size 491804 diff --git a/vlm/train/PxTIG12RRHS/18.png b/vlm/train/PxTIG12RRHS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3dbb6bd787700a63dd92e3c57cc38394b1bbd2d1 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba2ada563450f7c1839e5922776ae4517a34eb41e2fb87fbfe627a69bd77848 +size 476052 diff --git a/vlm/train/PxTIG12RRHS/19.png b/vlm/train/PxTIG12RRHS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..8a735527b3b48b60105bf29cdc5d296d046c3aba --- /dev/null +++ b/vlm/train/PxTIG12RRHS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d61a2dae779597dd97c8a48b84f55bce890faa5de703d4fd132bc3dc6847edca +size 2455246 diff --git a/vlm/train/PxTIG12RRHS/2.png b/vlm/train/PxTIG12RRHS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e0c3eed2916cbce1e546465867188597f496c76b --- /dev/null +++ b/vlm/train/PxTIG12RRHS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb2902a45c6b5be286a3d8df6996f43ed977c117f0a358bc971fc739a513f40 +size 548671 diff --git a/vlm/train/PxTIG12RRHS/20.png b/vlm/train/PxTIG12RRHS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d23bbe10d15094659edd04305aa90b48aaec445f --- /dev/null +++ b/vlm/train/PxTIG12RRHS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca7a7f7db73bc1807114e34ff17951e9cef96be9e0340fc13d32a24a8e960bb +size 383867 diff --git a/vlm/train/PxTIG12RRHS/21.png b/vlm/train/PxTIG12RRHS/21.png new file mode 100644 index 0000000000000000000000000000000000000000..6f0f941fd845f3a822f6f0d5e459b22c8761c658 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53b9c4473c04986f078a7b6dae1309e12ff5c707fd39a014a2d402afd0a2e95 +size 434991 diff --git a/vlm/train/PxTIG12RRHS/22.png b/vlm/train/PxTIG12RRHS/22.png new file mode 100644 index 0000000000000000000000000000000000000000..2f0a06f4513305da3a5c2a390ecf461f88c94ff1 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162429f28721f16db35b0f144a254645ee22fa89ddf1e39a06e50587b4a02c54 +size 985909 diff --git a/vlm/train/PxTIG12RRHS/23.png b/vlm/train/PxTIG12RRHS/23.png new file mode 100644 index 0000000000000000000000000000000000000000..3ac2244046c49759c891563f16209d1f15127ae2 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d9e0b232b2b73218cec8ac9469fc741accc06f5ed7ec0ce67ee2caf3da1b3a +size 537107 diff --git a/vlm/train/PxTIG12RRHS/24.png b/vlm/train/PxTIG12RRHS/24.png new file mode 100644 index 0000000000000000000000000000000000000000..80135b53b4267e0b4e5aa58655105e89b9cbeb5a --- /dev/null +++ b/vlm/train/PxTIG12RRHS/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1a705108478ff23de5ed01fcf11dae6184c1a1bd107d54656c31fe06111518 +size 468503 diff --git a/vlm/train/PxTIG12RRHS/25.png b/vlm/train/PxTIG12RRHS/25.png new file mode 100644 index 0000000000000000000000000000000000000000..05851310b9554027be9da75424f4d31b67b56b82 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8375718ee1dd844bb14e0e4a149b9f8e9f14db5ed83a88e957a96002719097f +size 636658 diff --git a/vlm/train/PxTIG12RRHS/26.png b/vlm/train/PxTIG12RRHS/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c4bcf7860abc663b9932329ccfaee5a2d9f0d2ad --- /dev/null +++ b/vlm/train/PxTIG12RRHS/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890f945bb1f95d6428fec445412c588dcaabb04ff1878a288039f7707f6ec166 +size 3082425 diff --git a/vlm/train/PxTIG12RRHS/27.png b/vlm/train/PxTIG12RRHS/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2282700005ab478e001fad95ce2e7b5675d6fa3a --- /dev/null +++ b/vlm/train/PxTIG12RRHS/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06f2362de34bbd106cf8d7a8d20eb110095c45404abc1ca99196f79851bd17b +size 2070219 diff --git a/vlm/train/PxTIG12RRHS/28.png b/vlm/train/PxTIG12RRHS/28.png new file mode 100644 index 0000000000000000000000000000000000000000..679a435b518a0115fe40374f9e0eb50b9120482c --- /dev/null +++ b/vlm/train/PxTIG12RRHS/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16dd2bd74c85570de735c96236ac3e22f5ab6955229013da2ff711d8ae80eefa +size 541621 diff --git a/vlm/train/PxTIG12RRHS/29.png b/vlm/train/PxTIG12RRHS/29.png new file mode 100644 index 0000000000000000000000000000000000000000..d64ac753964a997f7d0e5f4ad0423f3ea911bcea --- /dev/null +++ b/vlm/train/PxTIG12RRHS/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42989dc4bb485f83fd89d0377425aa23972111e5f21fb99af61a851273348d5c +size 2155682 diff --git a/vlm/train/PxTIG12RRHS/3.png b/vlm/train/PxTIG12RRHS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..aefe995a41cc43fa2b1b961583f093186c49e272 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5708fd03052fd38a67153b4cdbec6fa9bd10cb9af778e78dd6cd2a54c12f5e11 +size 738347 diff --git a/vlm/train/PxTIG12RRHS/30.png b/vlm/train/PxTIG12RRHS/30.png new file mode 100644 index 0000000000000000000000000000000000000000..9c721022b8b26c950d9b11d9094ec7e661ff29e5 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7340ef5ea4fbe391802acf9eca6d659727d476131fa2f330539bc0cf7cec956 +size 423792 diff --git a/vlm/train/PxTIG12RRHS/31.png b/vlm/train/PxTIG12RRHS/31.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe04f52eadd5bcac4eae23ae8a3154b655566af --- /dev/null +++ b/vlm/train/PxTIG12RRHS/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48994cc0f14ae3dca41419c0aba444b5f1b37052761b31be9e1115634290b535 +size 213997 diff --git a/vlm/train/PxTIG12RRHS/32.png b/vlm/train/PxTIG12RRHS/32.png new file mode 100644 index 0000000000000000000000000000000000000000..2a6d5fc6c23abeb1c4f82e0a1ac51d42f994257f --- /dev/null +++ b/vlm/train/PxTIG12RRHS/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e076b65b3a11783bf4e34ce92f58bd76b3a91d889b1e7ba4c21c5e51fa183e94 +size 2410202 diff --git a/vlm/train/PxTIG12RRHS/33.png b/vlm/train/PxTIG12RRHS/33.png new file mode 100644 index 0000000000000000000000000000000000000000..4296a2ed0c15d3d4d613dc03b88ff9970161b94a --- /dev/null +++ b/vlm/train/PxTIG12RRHS/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd1f6d113338b5e2774aa58eb2ebf297f7da853117a2486cd02f8c0ae2127a83 +size 2613968 diff --git a/vlm/train/PxTIG12RRHS/34.png b/vlm/train/PxTIG12RRHS/34.png new file mode 100644 index 0000000000000000000000000000000000000000..fa777b2787186558e76cae1fc780bf6975747c43 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10281d1e2942399ad83f6329378c3a87af2a573e2fcb09ee56201eac9f0088a9 +size 2303564 diff --git a/vlm/train/PxTIG12RRHS/35.png b/vlm/train/PxTIG12RRHS/35.png new file mode 100644 index 0000000000000000000000000000000000000000..27bdcc4b2a9af9c42ee4d0af890b9f86640f2b47 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0758d1af3627d62cc5359461457a28fa6577d890134d68b4cb128f923d3282ac +size 2532500 diff --git a/vlm/train/PxTIG12RRHS/4.png b/vlm/train/PxTIG12RRHS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e049eedf5a6aae1c885eab83841248b2eed2c8f2 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed233788977f8c67bac22a36e2d52e4352139d82bcf23a8c7f2eb52c2e927bc5 +size 486680 diff --git a/vlm/train/PxTIG12RRHS/5.png b/vlm/train/PxTIG12RRHS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1dd2f8c91c84fc1f613a2f0dcc34244b8acce1d6 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86191fc839ec23bf694310c397ca1120e0fd7dcb94ebf46a8a9bea6de536afc +size 611883 diff --git a/vlm/train/PxTIG12RRHS/6.png b/vlm/train/PxTIG12RRHS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..14e6f28b04b5cb14b29f0b9e231d3da7dd5c772e --- /dev/null +++ b/vlm/train/PxTIG12RRHS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f225235801d4be0da8cc1540e43ca56037a5dedf7298f77cc8f8329c0a2653d +size 670810 diff --git a/vlm/train/PxTIG12RRHS/7.png b/vlm/train/PxTIG12RRHS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..1b546713f96acce02bb73db6f466125ea77b0637 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348e8102c90fc786f7670f028867f0125aacc14a455648bd2cafae2246944611 +size 844284 diff --git a/vlm/train/PxTIG12RRHS/8.png b/vlm/train/PxTIG12RRHS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1a1c3dc2e4b617ca0ebb373000634c30e248b5ad --- /dev/null +++ b/vlm/train/PxTIG12RRHS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce0045f93cc1f8ea338c97257880408f57e7eeb2b65855771004870e13b173b +size 1138476 diff --git a/vlm/train/PxTIG12RRHS/9.png b/vlm/train/PxTIG12RRHS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5fa167cacbc11119a01af16518e761bc3486eb48 --- /dev/null +++ b/vlm/train/PxTIG12RRHS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f029f6d87247ec17ba9cec353c550b928bc694e0e4bb366372a0a5118de45cf +size 519432 diff --git a/vlm/train/S1PWi_lC-/0.png b/vlm/train/S1PWi_lC-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2878944f8c6246c9f7714c11b0e7753e5da99996 --- /dev/null +++ b/vlm/train/S1PWi_lC-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239047669fb608e43da9ac7f9068ee94f9a5d86373ce97b21b8d0293843d104d +size 415833 diff --git a/vlm/train/S1PWi_lC-/1.png b/vlm/train/S1PWi_lC-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ff46fa5b385d13ec715eb89314239c3dd59b3d5f --- /dev/null +++ b/vlm/train/S1PWi_lC-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de481402678dc6d7cc22e41f8b807ac82a7772c9652e582853c2949393d206e7 +size 318672 diff --git a/vlm/train/S1PWi_lC-/2.png b/vlm/train/S1PWi_lC-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..09bcac34601f9a241c60cb8374bab350ee65e3f3 --- /dev/null +++ b/vlm/train/S1PWi_lC-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e692116b18c56568db4c640bb3021abfd677b8ff7d08d6095996bd957a2ba4e9 +size 466536 diff --git a/vlm/train/S1PWi_lC-/3.png b/vlm/train/S1PWi_lC-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc658ac029fcb21702f05a3bb24f97442dc53b8 --- /dev/null +++ b/vlm/train/S1PWi_lC-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b993b27699b7f756b4fd209228d82dbfaae6d4284850ff4d71e8a204964f24 +size 420101 diff --git a/vlm/train/S1PWi_lC-/4.png b/vlm/train/S1PWi_lC-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4272918a6db53662fc54f6da5b4b68692c31a801 --- /dev/null +++ b/vlm/train/S1PWi_lC-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d7815db3ffea52084a468ab48c655a1f7572feaf94db5bfa93e7a869435b831 +size 461676 diff --git a/vlm/train/S1PWi_lC-/5.png b/vlm/train/S1PWi_lC-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..449c6b3138277414ef530ca9d72d7b11f5169a33 --- /dev/null +++ b/vlm/train/S1PWi_lC-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb7a027ab598d2a841e6003aa3751ebec5d18c043e679224d742d6b0944ae7f +size 643706 diff --git a/vlm/train/S1PWi_lC-/6.png b/vlm/train/S1PWi_lC-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cd949e93dad3961cabccd79a0aae7cc7d9136b05 --- /dev/null +++ b/vlm/train/S1PWi_lC-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3e9d7cfb9b818cb7e2810761cbd22e908045d48e24cd36c5c62ecf94cb03d2 +size 212774 diff --git a/vlm/train/S1eYHoC5FX/0.png b/vlm/train/S1eYHoC5FX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..201cb84f6ec9b4c0b2b71738130497b60718aa34 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8deb92818e46d30cff99bda1fa8efe2b2414ee9a49d06ba6d47ab15966f4c99 +size 555109 diff --git a/vlm/train/S1eYHoC5FX/1.png b/vlm/train/S1eYHoC5FX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d3be3d9ec37219abdc0781d999cfc45df13ac6e0 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da31eb4ad5f494dc06194dae8797426662b4189ec45e87bbb04bb6d830169330 +size 539581 diff --git a/vlm/train/S1eYHoC5FX/10.png b/vlm/train/S1eYHoC5FX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..40cf3075c7d9bc71665e7a9edf2763fc0b2ed98b --- /dev/null +++ b/vlm/train/S1eYHoC5FX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60189fc7e79f7963cfd70ce4234b739be71d5f153f71b12b133fb0e2b1c027aa +size 409428 diff --git a/vlm/train/S1eYHoC5FX/11.png b/vlm/train/S1eYHoC5FX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8e625adb4b1b4e8ff383980abb5f1696511a8e --- /dev/null +++ b/vlm/train/S1eYHoC5FX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2922c1fa244ab433176034b287c66f5d8957f0fb7f1217e834ed0f8bb612e0 +size 543780 diff --git a/vlm/train/S1eYHoC5FX/12.png b/vlm/train/S1eYHoC5FX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3c75f5d2eaf875903e5f7d032cf240a0953f5b0a --- /dev/null +++ b/vlm/train/S1eYHoC5FX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83e571129b22c5caa8661e7586e37ab7388bd4ec37cfba7c1cc6b155f5b4344 +size 507621 diff --git a/vlm/train/S1eYHoC5FX/2.png b/vlm/train/S1eYHoC5FX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f151aa396b23ab2fc1ee77f5b9c3113c189fd311 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12bd0e6824cb34cad41dc808b59862e6fee38b6bd431e2be0d29ad70dc58819 +size 475777 diff --git a/vlm/train/S1eYHoC5FX/3.png b/vlm/train/S1eYHoC5FX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1ce2819677def62e905cc5fb265725394476364a --- /dev/null +++ b/vlm/train/S1eYHoC5FX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095bc3c95c5b86a4ddd955af50c19c6a82703491ccab9a29a20b177c6f655193 +size 504393 diff --git a/vlm/train/S1eYHoC5FX/4.png b/vlm/train/S1eYHoC5FX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..505e9b2c3f0958d12d2613c7d979807702e12bf9 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cdf16bc0ea0ed5fc2afbccb786d71f87e61e656c2a5b607934af834a2e4268d +size 538676 diff --git a/vlm/train/S1eYHoC5FX/5.png b/vlm/train/S1eYHoC5FX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..81380ce5884157c4beb803872bc495afe091430f --- /dev/null +++ b/vlm/train/S1eYHoC5FX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de40839e7ddb7915c3a21b828ce577ffef8a987ea4edb69443c2aa8ba267a916 +size 482678 diff --git a/vlm/train/S1eYHoC5FX/6.png b/vlm/train/S1eYHoC5FX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cbece24a8ae7117e100dcd5caa723fb09bc6607b --- /dev/null +++ b/vlm/train/S1eYHoC5FX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0d20c49f273e80b8a7a54bf8f1f102186765d4d9ed8337bc21e65e61472c88 +size 549699 diff --git a/vlm/train/S1eYHoC5FX/7.png b/vlm/train/S1eYHoC5FX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cc2b0efe570c6cb05f7725253b056da2d3c92e36 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bcec179868e481d7c32d6a35da5a91b9e85dcf8b977856f40897a048994a252 +size 611578 diff --git a/vlm/train/S1eYHoC5FX/8.png b/vlm/train/S1eYHoC5FX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..28b292ed50ecd96bd494889b954fe16c75e58167 --- /dev/null +++ b/vlm/train/S1eYHoC5FX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992409ad9c373b58ecc6d00666848a8c7534d7ec85880775fde533912e7e1097 +size 462525 diff --git a/vlm/train/S1eYHoC5FX/9.png b/vlm/train/S1eYHoC5FX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5de3b46d5e6c6525b8ddd5643f45b0d464d2e18e --- /dev/null +++ b/vlm/train/S1eYHoC5FX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736ef968207773c7a54d8da586593cf4dd29be66a42b230f451e05ecf0715789 +size 491974 diff --git a/vlm/train/S1x4ghC9tQ/0.png b/vlm/train/S1x4ghC9tQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a4b67d333b0da7d78175218dc138ed51660a4448 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05522fa475ef1bbef433dbc6236ece0a7a53736cc96a9cc18b8dfb3aedc7d40c +size 471044 diff --git a/vlm/train/S1x4ghC9tQ/1.png b/vlm/train/S1x4ghC9tQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2e52bf96eda1df5e6631519e3334b8cbaf446f68 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef431a9261d930ff748ac339dd10cb981d57fa0371fb1095abbcf51cf2c43eb +size 542186 diff --git a/vlm/train/S1x4ghC9tQ/10.png b/vlm/train/S1x4ghC9tQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..483b5480782d73eac22cdcdbd9156cab792e5df9 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184c52e437e6be5686f83075835454566c08315e024c6858d0cd8cce2b095317 +size 555123 diff --git a/vlm/train/S1x4ghC9tQ/11.png b/vlm/train/S1x4ghC9tQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..34f03cb47135639958a02f4a9ad8be1dc1aa6a1a --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc77ba985f681afd66db16682ccc27794f746d19977ec74bc196bbeaf3d25fa +size 193684 diff --git a/vlm/train/S1x4ghC9tQ/12.png b/vlm/train/S1x4ghC9tQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6a76d8b171a10d7091e717051e5a937a4471cf41 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feee071c6e63f25870c01ccb7a51755db6a7f024865ebdb46974b2e34dbdda63 +size 433490 diff --git a/vlm/train/S1x4ghC9tQ/13.png b/vlm/train/S1x4ghC9tQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9a8e8be560a3fa20c472c2f6468b8b06c51ad383 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4b88cae4da63f7308d06643e31a6308c477b516941ea81a35e9628456b1516 +size 467216 diff --git a/vlm/train/S1x4ghC9tQ/14.png b/vlm/train/S1x4ghC9tQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1fc08e4483a58fa0aa01af6171561b1e7c74bea7 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e8d78580e3875e60a54cec8f785148faa8b46904326171b4557ac98ed3aa668 +size 436029 diff --git a/vlm/train/S1x4ghC9tQ/15.png b/vlm/train/S1x4ghC9tQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ed0dcb6aa4d968a84a5c7c8b35917a92e06db5b3 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1425d423e9bb28db16e78edb7dbaefeb314ab39f2092fa7cfa7b83df0fb6cf6 +size 373030 diff --git a/vlm/train/S1x4ghC9tQ/16.png b/vlm/train/S1x4ghC9tQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e3224dcb80041f26822258135edbb59619cf266e --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a001f560fb7c6032534c604674f516bbd65120da03b008cf83c3f226fffa207 +size 70809 diff --git a/vlm/train/S1x4ghC9tQ/2.png b/vlm/train/S1x4ghC9tQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3b8f1758d50dfd5ac9eaba034fb5b93a2655b7a3 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3391b063693cf574a5b480b7f43a336b588e934a3920905fd0b7ba0510b9eed0 +size 540000 diff --git a/vlm/train/S1x4ghC9tQ/3.png b/vlm/train/S1x4ghC9tQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..befd6e0b981b4d60b97733cfc775c238dbc3b6ee --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c94b479ac4ba6b0060720764da27fb5c52034e0d5c295e633454e08be1cd2e2 +size 508746 diff --git a/vlm/train/S1x4ghC9tQ/4.png b/vlm/train/S1x4ghC9tQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a7a81481873bded6df91782fe818454be6ef00b7 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3a4eb6889acbc305129ba7804e56cf8594235b00166d87f7fde6baf9849579 +size 518811 diff --git a/vlm/train/S1x4ghC9tQ/5.png b/vlm/train/S1x4ghC9tQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..497d691d8e0cce1b771545302d7b453a97c90a8d --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4949825c9b072f09feb8b7488bc26c732d01da9d2c0a9f4b20abb98b35ef8ab6 +size 579418 diff --git a/vlm/train/S1x4ghC9tQ/6.png b/vlm/train/S1x4ghC9tQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d833cac988b110ebc2b03548cd74a6ddf8d928 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c593a00711536705a3685398519db2e8e90118ba645f15a08c896355ac78d70 +size 533680 diff --git a/vlm/train/S1x4ghC9tQ/7.png b/vlm/train/S1x4ghC9tQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..82ecba77cf45af55d1dde6f6a3e5f6bb9768f824 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d76eed022944a64a322863d76e81fc882a3e58b9eb2a5a42d886642fa40253d +size 613723 diff --git a/vlm/train/S1x4ghC9tQ/8.png b/vlm/train/S1x4ghC9tQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..177a7f78ffa1af58d2d7b38159f5e0ba03c63631 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54949bc9b279e62684f8678d06eea048219f37ea76324a7d5c3ad08c07d471d9 +size 680694 diff --git a/vlm/train/S1x4ghC9tQ/9.png b/vlm/train/S1x4ghC9tQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..67dd956bad04f8b0d70e5b1325370badb1dfe7c0 --- /dev/null +++ b/vlm/train/S1x4ghC9tQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa989c684f729fbc0df161d8eca9d4dd71b7df98fdc934f5eeff9e55fed8bfba +size 510446 diff --git a/vlm/train/SJc1hL5ee/0.png b/vlm/train/SJc1hL5ee/0.png new file mode 100644 index 0000000000000000000000000000000000000000..589b194e0dd6dd98f994b38981754695c942fbb5 --- /dev/null +++ b/vlm/train/SJc1hL5ee/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd93ba19a0deae2b584e9f8b1d3cd6b03d2335c5ed7ccbe46a1c1a1353058cb +size 484299 diff --git a/vlm/train/SJc1hL5ee/1.png b/vlm/train/SJc1hL5ee/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c1f5832b9cbf503e95d81d34ef654b72599d85 --- /dev/null +++ b/vlm/train/SJc1hL5ee/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713ae5bd815be562def6786346b04d2d6c7e94159bc4799dd3c7c74e623ae023 +size 613358 diff --git a/vlm/train/SJc1hL5ee/10.png b/vlm/train/SJc1hL5ee/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dd18e7a09732a80c2ecc71cac53883dce93c7f4a --- /dev/null +++ b/vlm/train/SJc1hL5ee/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb9a6279107f6dc753a7f98e7db42095fc18204c9ed41e4523b4a87c62e2802 +size 434040 diff --git a/vlm/train/SJc1hL5ee/11.png b/vlm/train/SJc1hL5ee/11.png new file mode 100644 index 0000000000000000000000000000000000000000..037ff947ca521c57b2e10d43991ee9f40ffe619e --- /dev/null +++ b/vlm/train/SJc1hL5ee/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4167353f6f8df9c9098e2cf44f72d77fe16ee3275f86657b49277c47844c56 +size 237510 diff --git a/vlm/train/SJc1hL5ee/12.png b/vlm/train/SJc1hL5ee/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bb196666ad61329becc6860bd97e377862ae5777 --- /dev/null +++ b/vlm/train/SJc1hL5ee/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248036f22c5993a4c2a6182187458f0dc8bedae5e3c1d74a9c4eccb73df4fdb1 +size 186548 diff --git a/vlm/train/SJc1hL5ee/2.png b/vlm/train/SJc1hL5ee/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0f4960e3b713e366302ae787820e0f06a0a425b4 --- /dev/null +++ b/vlm/train/SJc1hL5ee/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a007a5b9d474401c72795473c6f67a94d00bcac40bd042acff208d36e7ba0f5 +size 464884 diff --git a/vlm/train/SJc1hL5ee/3.png b/vlm/train/SJc1hL5ee/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b2914f0ee6b2a9808d9dd457d299ee55f6dab304 --- /dev/null +++ b/vlm/train/SJc1hL5ee/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad0aeca78e562e1763a0eb8f93be71e092fc2645084901628d4f8905e8f5604 +size 555765 diff --git a/vlm/train/SJc1hL5ee/4.png b/vlm/train/SJc1hL5ee/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bded52cdaa282cbb2f2824bf21594d29916c952e --- /dev/null +++ b/vlm/train/SJc1hL5ee/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3129f1699df16f01381c9f43003832d57d721b3a5db6558ad8af03b2616137f5 +size 442593 diff --git a/vlm/train/SJc1hL5ee/5.png b/vlm/train/SJc1hL5ee/5.png new file mode 100644 index 0000000000000000000000000000000000000000..afd312b35dfb6f7d039600885920dfe95fb528a0 --- /dev/null +++ b/vlm/train/SJc1hL5ee/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c735fb3f39094a880de7112ae3048239b118bb07c7634fc93bfc406f98e04e12 +size 366569 diff --git a/vlm/train/SJc1hL5ee/6.png b/vlm/train/SJc1hL5ee/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8199c94c45163887d8db3b06f3788dd537f1adf3 --- /dev/null +++ b/vlm/train/SJc1hL5ee/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa3f65aaca39617aa9342afb39af8102f5ebcc4e6ccde143737b2f673dfcf32 +size 472607 diff --git a/vlm/train/SJc1hL5ee/7.png b/vlm/train/SJc1hL5ee/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f9140fa6e1b85371f8ffce888c324e39a8724ad5 --- /dev/null +++ b/vlm/train/SJc1hL5ee/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897c951a2e206d53ce248e71a49d05a0f35e0347c167a263b80295010e6a404a +size 495820 diff --git a/vlm/train/SJc1hL5ee/8.png b/vlm/train/SJc1hL5ee/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1067804d0da48dd0e09bb2acbde7641e559ab85f --- /dev/null +++ b/vlm/train/SJc1hL5ee/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a68ade7a5c25b67a0ebdcae310282adaf33e647ad17fb56f78e8cac3aa5fbc5 +size 512232 diff --git a/vlm/train/SJc1hL5ee/9.png b/vlm/train/SJc1hL5ee/9.png new file mode 100644 index 0000000000000000000000000000000000000000..eda4bd3cc90a70d348f407a532ba8fb45626f156 --- /dev/null +++ b/vlm/train/SJc1hL5ee/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:250541c0361344f238e7ec99093f022a1c82b8680c7468549e30191b479a0f4d +size 486550 diff --git a/vlm/train/SJeD3CEFPH/0.png b/vlm/train/SJeD3CEFPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..5f71b4c4b06c646c90dabaf9405df0d4241978a1 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52b7ee06581c1d6635fdb8b1cf96185a0a81b264ba6d03a5cafad83cb5f846b +size 486388 diff --git a/vlm/train/SJeD3CEFPH/1.png b/vlm/train/SJeD3CEFPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0cf0926bc9232d1cee18d044bec525236c7ba5ee --- /dev/null +++ b/vlm/train/SJeD3CEFPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6385286d4e157387a5e7ad8f5aff092d07b8d0713baaebd47dfa82bc313e0fd +size 461987 diff --git a/vlm/train/SJeD3CEFPH/10.png b/vlm/train/SJeD3CEFPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5e97539fe94c258eabb2c921310e9d01fb4ec237 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec49eeb484d915db51193f2be54c376a14108001a8430bf907b81bd4e3b0f532 +size 555424 diff --git a/vlm/train/SJeD3CEFPH/11.png b/vlm/train/SJeD3CEFPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3d2dc0db1cdf880537fc7c7b6972b1797467a1d6 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07afb09b5e7cf7fc054094cf6c42cb05677ee17d4a931cc5adfcc8157f76d85 +size 279091 diff --git a/vlm/train/SJeD3CEFPH/12.png b/vlm/train/SJeD3CEFPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..18c33ac733fe90d3516ee458eb4dbfddf8883ff2 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be0466707bab0d22de4ce70c6b48bba6111907ca356d3bb8a195a35e6e4754d +size 403581 diff --git a/vlm/train/SJeD3CEFPH/13.png b/vlm/train/SJeD3CEFPH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..df7342cf7210e67c95fa7298a8f3a48029c88122 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029c542c7e1555715d57c2153961351b8e5295ff9becb31ed195a17bbb016c8f +size 513105 diff --git a/vlm/train/SJeD3CEFPH/14.png b/vlm/train/SJeD3CEFPH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e82864afbfd1ad27446a339f7a4b18490b5c9d91 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a017998eb998ef30ac7fc5504f7e6fc97f8d370a049c4023ec320793c4d20d45 +size 451906 diff --git a/vlm/train/SJeD3CEFPH/15.png b/vlm/train/SJeD3CEFPH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6641f6aae82a4cafca60b5476f11814e4849b3a1 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e1b83511fee8697c4858af3eae824d68f80c31bdd3e5d406dd62f65ced5225 +size 419982 diff --git a/vlm/train/SJeD3CEFPH/16.png b/vlm/train/SJeD3CEFPH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..89ea62f7a25a01a08eefff72f79f1892ccce2125 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c1a07ca91f5ac1e75c9e96b68cf1f54bbf2de17fe7442fd1f6d20fdb2d5da0 +size 227447 diff --git a/vlm/train/SJeD3CEFPH/2.png b/vlm/train/SJeD3CEFPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..560a24d5bf481b414b122aec1c3ee5f8da704cde --- /dev/null +++ b/vlm/train/SJeD3CEFPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9622388e98987dd723a6260efe7e5a48988ff9e91a1d50f73325cfee63f8df82 +size 457821 diff --git a/vlm/train/SJeD3CEFPH/3.png b/vlm/train/SJeD3CEFPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6109ae2c185d0ed1d66e1e6c16a73d6576ba37aa --- /dev/null +++ b/vlm/train/SJeD3CEFPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9c5781a7ea60cb2d300652b290873c0d00c583f3f9ec71ac49c001f448b66f7 +size 388890 diff --git a/vlm/train/SJeD3CEFPH/4.png b/vlm/train/SJeD3CEFPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a0d5c764b3e61a2f8e3625c4256135d0b0d605ca --- /dev/null +++ b/vlm/train/SJeD3CEFPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c28844dd62714409ca6b77c289862832ee5390576bf27348e8676264af40ce +size 539926 diff --git a/vlm/train/SJeD3CEFPH/5.png b/vlm/train/SJeD3CEFPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a74c4b88348a9972fc8dd14cb815f2db914124d7 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced6ef2320b6c0c4b8c3035569a53bd4fe486b59c47019357d31572571daafd2 +size 659005 diff --git a/vlm/train/SJeD3CEFPH/6.png b/vlm/train/SJeD3CEFPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1d74983a31bf13248703ac965622c5f4af6514ca --- /dev/null +++ b/vlm/train/SJeD3CEFPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace9ac8a4346c88b1a1476f5ffa9570ac35737679ae37e13b141d0f3c68d594f +size 661084 diff --git a/vlm/train/SJeD3CEFPH/7.png b/vlm/train/SJeD3CEFPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..6b6ffd11690e705bce12d0a9e5e57b37f57956f9 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487f6208d6b7b4dd9471fd91fd1897976ab2772e26112779a41f94ff24b51d13 +size 497006 diff --git a/vlm/train/SJeD3CEFPH/8.png b/vlm/train/SJeD3CEFPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0717d1ecd37975c2863dee1a02fdc8b673caedc8 --- /dev/null +++ b/vlm/train/SJeD3CEFPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1b84d30e9079f63a2fa83b3dc4f62026e5e5429477225b11c8203987c329ff +size 677049 diff --git a/vlm/train/SJeD3CEFPH/9.png b/vlm/train/SJeD3CEFPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..be03702d90b49451b45c70f3b75b216d85d3855f --- /dev/null +++ b/vlm/train/SJeD3CEFPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df553f6be0566757613f7c88885496b931922a59607a3fc2fb4df523f225dea9 +size 495113 diff --git a/vlm/train/SJgaRA4FPH/0.png b/vlm/train/SJgaRA4FPH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..74709f8f171793b9de4124c62b77ac3a0c00c14a --- /dev/null +++ b/vlm/train/SJgaRA4FPH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d56febab586a6582bed93b2fd3ddfd8ae33befa7f9719bedbe18657d3153f0 +size 373643 diff --git a/vlm/train/SJgaRA4FPH/1.png b/vlm/train/SJgaRA4FPH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..57ab3270a86c5041400601eeabc993f86e0af135 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96d11d562eb19b239fba9df6ead7aa1d7d248f2cbc2d90dc81ea99766dac015a +size 504816 diff --git a/vlm/train/SJgaRA4FPH/10.png b/vlm/train/SJgaRA4FPH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cf9e7d0e106512852093ff42488796abcc73a25b --- /dev/null +++ b/vlm/train/SJgaRA4FPH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c5fb5d5d1e600f52f10fe29dcd9edb7cbd08889d4cad85c9e391e294eb2d61 +size 481557 diff --git a/vlm/train/SJgaRA4FPH/11.png b/vlm/train/SJgaRA4FPH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..217706c26d7699d7d903f853823d3a8585ed6b0e --- /dev/null +++ b/vlm/train/SJgaRA4FPH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7921325e1c3d04bdf3fcddb891aeafca764613056ef2e976d99e474186908a6 +size 503511 diff --git a/vlm/train/SJgaRA4FPH/12.png b/vlm/train/SJgaRA4FPH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bfa7a6c771e74a504c2429ddbe68dbc84cc46a2d --- /dev/null +++ b/vlm/train/SJgaRA4FPH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426e1429797eb920df4c8ae91d343d38b0ad1754d548ae143d3314371e050f35 +size 503593 diff --git a/vlm/train/SJgaRA4FPH/13.png b/vlm/train/SJgaRA4FPH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bf24bc0b86b47b0984211ba9593958917f25d037 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6826145adcaa873699ab1108eaceaba0061238ec175663f502d0d84f334ff5c +size 502420 diff --git a/vlm/train/SJgaRA4FPH/14.png b/vlm/train/SJgaRA4FPH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..902442b442ac2303f1e417dc9ad9a404ea8407a0 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89aadafe17e2f9b414e50c4ac2431907998593fc71f2bb223b387c718e76f42e +size 468835 diff --git a/vlm/train/SJgaRA4FPH/15.png b/vlm/train/SJgaRA4FPH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cb701b1d38b553f086f008604272f8dedf7689ce --- /dev/null +++ b/vlm/train/SJgaRA4FPH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2e62007d9addaf04b26360be4852c7efc569a1c30ebd7a4b3cc4b102282752 +size 358937 diff --git a/vlm/train/SJgaRA4FPH/16.png b/vlm/train/SJgaRA4FPH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..21cd758b8fc419ff3d285983d999261f7789dfad --- /dev/null +++ b/vlm/train/SJgaRA4FPH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0165944b3431f34492a09c8e02ac00fa70ce4f3d79a1f139e69b63fe9a13503a +size 376496 diff --git a/vlm/train/SJgaRA4FPH/17.png b/vlm/train/SJgaRA4FPH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f5353ed433ac0dfc6d1ebc01a7b634649ea47a00 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6940fe15c8f05185c044e4847c652f09444464e449a79081455932e004c35b6 +size 315305 diff --git a/vlm/train/SJgaRA4FPH/18.png b/vlm/train/SJgaRA4FPH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0e75c63e98045297cbdc44a614304549fcb41199 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d30555ae1c255992140cbe31ec33b2531953583a7507f0c57895e69e6e397f9 +size 200532 diff --git a/vlm/train/SJgaRA4FPH/19.png b/vlm/train/SJgaRA4FPH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..4087abd42c546756dcb375d4932cb09dba16fca7 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87b4b37997f27145b878d6032783220a7feac2f82b8f3dcb837062f197edf56 +size 394272 diff --git a/vlm/train/SJgaRA4FPH/2.png b/vlm/train/SJgaRA4FPH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..141a2249d5ece7889ff376622ba14c93708dabed --- /dev/null +++ b/vlm/train/SJgaRA4FPH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1da64fd1fb9e923771246ecd5fd9bc1da2a0490a40ded722fc46958d82a91ce +size 472896 diff --git a/vlm/train/SJgaRA4FPH/20.png b/vlm/train/SJgaRA4FPH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..3f3d596d4ac8592a6a39ba51047c9881965c23cc --- /dev/null +++ b/vlm/train/SJgaRA4FPH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd8c14ccab9da2e8ba4ed426532375b01e068b75643344b537f8d6b161c5bd3 +size 410706 diff --git a/vlm/train/SJgaRA4FPH/21.png b/vlm/train/SJgaRA4FPH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..0c315182580f6e82d0e83c378cc7b37ac210e022 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a25d6942bafd6f70ca9dd8fd04ae76eb9a69c8c5ad1a298e11d5f0652ea012 +size 129306 diff --git a/vlm/train/SJgaRA4FPH/22.png b/vlm/train/SJgaRA4FPH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..38e1d3d497f6d5d0f52a0e7113b2d5120d75fb59 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69feb65fa1ab1cd0416276f87638e5905551c086c83070e075bbc8039ddefea8 +size 424541 diff --git a/vlm/train/SJgaRA4FPH/23.png b/vlm/train/SJgaRA4FPH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..7bd99f4be0374172633c28fd815a782262beee94 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5798cbbc8bf837c2ba66f3f90b4058341292917f8a7c674283e093380141ccbe +size 404211 diff --git a/vlm/train/SJgaRA4FPH/24.png b/vlm/train/SJgaRA4FPH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..79e853807b15b132eee7533adb0c96e2507f02ab --- /dev/null +++ b/vlm/train/SJgaRA4FPH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe0d93a937c713a8dbff22843c820fd5d37746c7b7cb415531c4ce8716d6fd5 +size 359998 diff --git a/vlm/train/SJgaRA4FPH/25.png b/vlm/train/SJgaRA4FPH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..c9f1270fc577f032fe1b6af15a0e37400fdabb8b --- /dev/null +++ b/vlm/train/SJgaRA4FPH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65139377b5d7f5aa18711bcb1202d20e1fca7bfa7aa3b35b38b4f93fe476a2ec +size 532185 diff --git a/vlm/train/SJgaRA4FPH/3.png b/vlm/train/SJgaRA4FPH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..00f6e31793ce95f7ea9b45318261f000ad43a024 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ecbbc0aabca41af23c26b06dea5f06127bb66a9aa473eedbde804c3ca45cfa +size 527096 diff --git a/vlm/train/SJgaRA4FPH/4.png b/vlm/train/SJgaRA4FPH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fdb25f94a3a433364423adf1c23b311c81c0053d --- /dev/null +++ b/vlm/train/SJgaRA4FPH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d01ce89255a71c4e02028e95ecc272c881c7acdeca441674272dbdbf4b46dd +size 538853 diff --git a/vlm/train/SJgaRA4FPH/5.png b/vlm/train/SJgaRA4FPH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a35c0a30f95f3ac969b5892f6d36d0184ce0a08c --- /dev/null +++ b/vlm/train/SJgaRA4FPH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8fa36b4bb9656b5451664df78854f04503b7c8b85f6ed61c5f4472ac5e13c31 +size 439184 diff --git a/vlm/train/SJgaRA4FPH/6.png b/vlm/train/SJgaRA4FPH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..46e0d4b17b670b69fc719687c32520ad0e8bf28b --- /dev/null +++ b/vlm/train/SJgaRA4FPH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677b130606c23df7655af69b7703a89380d97ce9e66776c705edc38ec719279a +size 548114 diff --git a/vlm/train/SJgaRA4FPH/7.png b/vlm/train/SJgaRA4FPH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..245b3021dc6deff30c8e5c164b82c1c036a70749 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b880791a7d13fb7fd1f670bf915b7bd4112d917fd05e8dd4d9fc9764c6aaa68a +size 482100 diff --git a/vlm/train/SJgaRA4FPH/8.png b/vlm/train/SJgaRA4FPH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a22c7bb710576de54043c49f6a412ba66818e2ea --- /dev/null +++ b/vlm/train/SJgaRA4FPH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad110488a1c2043a27c5fae3e5ecd7a734bd27656c34b42d832bdd2ae48bf4bf +size 621543 diff --git a/vlm/train/SJgaRA4FPH/9.png b/vlm/train/SJgaRA4FPH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fcbcead639acf2feab371f993317bdf06103caf0 --- /dev/null +++ b/vlm/train/SJgaRA4FPH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ae0106a4537cfb918bda1625c7512abe66f08507d3ce977a8e92b7c3e6c80c +size 466336 diff --git a/vlm/train/TJSOfuZEd1B/0.png b/vlm/train/TJSOfuZEd1B/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3e6989c9dc006bc20cdde1178af573e401dd2df3 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aea3774c60031035161034bddb974d61963b80e9f7455675e5b0066f235cbe8 +size 498314 diff --git a/vlm/train/TJSOfuZEd1B/1.png b/vlm/train/TJSOfuZEd1B/1.png new file mode 100644 index 0000000000000000000000000000000000000000..61bba6854f1d9105bd601000c0b340c8f17c753c --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08da9ae350f2216758e4a7689d5c2fc50d094e314eca7e3333be7efd80e78a6 +size 470212 diff --git a/vlm/train/TJSOfuZEd1B/10.png b/vlm/train/TJSOfuZEd1B/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e8603ca1adc8b3596594999d65fd12f957882811 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369f491c6d2847691b0913caa365694eb58e9a0c3843269c6d5119caf6c3f135 +size 333954 diff --git a/vlm/train/TJSOfuZEd1B/11.png b/vlm/train/TJSOfuZEd1B/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7bdcc6c7f3baa7b4cd680eeeb21fea8fc36a8874 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57ca7ef3196d7bc57ee122c4f814b4043ea16f791cd32a2a148db8c73278e9d +size 461164 diff --git a/vlm/train/TJSOfuZEd1B/12.png b/vlm/train/TJSOfuZEd1B/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4f45c2b089bd57ea6cdff6589a2518ce9a26a2a8 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75a48090e110646cf262e6bd6b599414680bdc9efe0d212a4d5849877466808 +size 375882 diff --git a/vlm/train/TJSOfuZEd1B/13.png b/vlm/train/TJSOfuZEd1B/13.png new file mode 100644 index 0000000000000000000000000000000000000000..ed894721e2370ba917334780880b4dcb11827168 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b596a5b445bcfcd17b057b45e5a6b8e3b149349668f39f1ebb2072124aa11b3 +size 268338 diff --git a/vlm/train/TJSOfuZEd1B/14.png b/vlm/train/TJSOfuZEd1B/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e6bf478c07f1d7865e9d23d7be0dc4deeb1678c8 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507ed8abe0baa557ec592b5a6aaae77daef5d36d1777ceb7c4e3799b7e5db545 +size 413496 diff --git a/vlm/train/TJSOfuZEd1B/15.png b/vlm/train/TJSOfuZEd1B/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ac967402ed50c4bc9bbecb55352b83ba7b7edb2b --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a37d452e7901ec70c0f12471d7196391d5394b8333ffa10b94532d4cd7b9ac9 +size 574854 diff --git a/vlm/train/TJSOfuZEd1B/16.png b/vlm/train/TJSOfuZEd1B/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c6aa609411a02c4e4b4efc7052520997734f5da4 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880a8da2364c7014c56c5b2882c366b5d30157386d0f4560ec07a28ff4a6c721 +size 320475 diff --git a/vlm/train/TJSOfuZEd1B/17.png b/vlm/train/TJSOfuZEd1B/17.png new file mode 100644 index 0000000000000000000000000000000000000000..17a2c15793177d84c26aa9191c0d93c6dcb64d8f --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7a3666cdd130f492e1a0f4db1ec4f078370d6281c3dd96dc5dfe83b4d405c5 +size 394838 diff --git a/vlm/train/TJSOfuZEd1B/18.png b/vlm/train/TJSOfuZEd1B/18.png new file mode 100644 index 0000000000000000000000000000000000000000..324f6035cbc6e6ac4444df57bc518fc08d382ca2 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4047fca36d5033a37ce4933be48dc503a69d543755ef6a35c64d10669d79d402 +size 402607 diff --git a/vlm/train/TJSOfuZEd1B/19.png b/vlm/train/TJSOfuZEd1B/19.png new file mode 100644 index 0000000000000000000000000000000000000000..48bffc00c6e518eb2624e491c06498d566cdf773 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3ce20923753a0ef7be55ec86e0f129f2c900e2e105c75a43dee80bd229c59e9 +size 589595 diff --git a/vlm/train/TJSOfuZEd1B/2.png b/vlm/train/TJSOfuZEd1B/2.png new file mode 100644 index 0000000000000000000000000000000000000000..67794c897dfba254abf651b17183332c90e2e64a --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910fe247b3a9ce93b23e163919b5cbf4b01033434725f2afc74902cbb9696fa7 +size 484830 diff --git a/vlm/train/TJSOfuZEd1B/20.png b/vlm/train/TJSOfuZEd1B/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4a99e997fe5924c6d74195c1097b8b4ce9e9cae7 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:579969df2fd7d82863cf684834462e53d4d73e475c00bf6f5b270abe058c0515 +size 387760 diff --git a/vlm/train/TJSOfuZEd1B/21.png b/vlm/train/TJSOfuZEd1B/21.png new file mode 100644 index 0000000000000000000000000000000000000000..374dc8e0201efba303f3d35943961fb7e542b001 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4612501e75fc1f38056b598f41717bc8c286bbb8951dfe690a19e223ba6aaa +size 391464 diff --git a/vlm/train/TJSOfuZEd1B/22.png b/vlm/train/TJSOfuZEd1B/22.png new file mode 100644 index 0000000000000000000000000000000000000000..f14d188bdc4c93191dee8ab67e9b03b9b8a4c193 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7632a58474027636dcb9ee5608e0d2d342facfd17a5679ab11ae10ac0e5247a +size 427033 diff --git a/vlm/train/TJSOfuZEd1B/23.png b/vlm/train/TJSOfuZEd1B/23.png new file mode 100644 index 0000000000000000000000000000000000000000..b41aacab17d61b0773910ff90c4c285577c85d75 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b0c95a590e785d4fca58decf31ab5fa9a3d45ad158c908d98d1d5442cb1f41 +size 414038 diff --git a/vlm/train/TJSOfuZEd1B/24.png b/vlm/train/TJSOfuZEd1B/24.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c26e84a23787b594d71e5af2ca033338f18a55 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79bee72f7f33e6af870c532750f52814727265ee12b3e3d9bb3cfb131254c9da +size 353078 diff --git a/vlm/train/TJSOfuZEd1B/25.png b/vlm/train/TJSOfuZEd1B/25.png new file mode 100644 index 0000000000000000000000000000000000000000..b829a6edf9d96ad63f599ddf0dfb5bca595163c1 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699e02cf738f98f13bc99bc9732b0b255b1dd4db714b2ce51ebcf19a718dcea0 +size 326480 diff --git a/vlm/train/TJSOfuZEd1B/3.png b/vlm/train/TJSOfuZEd1B/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5e1b3927a78846fcd6d8d1c49525470352998d --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df4f1de834dba4253c447afcf7ccaa483c01d6c50048ff881ac6511596df7b3 +size 461120 diff --git a/vlm/train/TJSOfuZEd1B/4.png b/vlm/train/TJSOfuZEd1B/4.png new file mode 100644 index 0000000000000000000000000000000000000000..65da1aa88497e2c9f2db22a7567bb47231fb6b99 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b376dc48c9b46114608d93cdceb7d1a61c7e319fb7e39eea3559caf36a2b24ca +size 604154 diff --git a/vlm/train/TJSOfuZEd1B/5.png b/vlm/train/TJSOfuZEd1B/5.png new file mode 100644 index 0000000000000000000000000000000000000000..333ecaafea7fe66753983ecf6e795ab4029cb23f --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b0cf926ae685c087add92657d2fe5b294bdeaea0d4d7c1281618b735f11cd8 +size 607401 diff --git a/vlm/train/TJSOfuZEd1B/6.png b/vlm/train/TJSOfuZEd1B/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5f10b645942d08704d695b34b105c8684d508452 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef1e75b813f77e2b516d42377d3f49b4bde7e05fbdd6e019988fc47957f79f5 +size 563060 diff --git a/vlm/train/TJSOfuZEd1B/7.png b/vlm/train/TJSOfuZEd1B/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f36f2f483ffebc963b67ea12839c79f2e3578b0a --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706eb26834e09dc42e9df6d31fbb28da9736cfd29f956c3e9deed8ff176394c4 +size 483379 diff --git a/vlm/train/TJSOfuZEd1B/8.png b/vlm/train/TJSOfuZEd1B/8.png new file mode 100644 index 0000000000000000000000000000000000000000..82a6d51978e378f9852092ff8a83041e25115504 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f4c3dfc05cd4600e886b0bd25bd4e0c1d4ce8844eafd4e8fe901cfd21c5469 +size 561290 diff --git a/vlm/train/TJSOfuZEd1B/9.png b/vlm/train/TJSOfuZEd1B/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ee63a3465db0a3fb294f7c7097a3eb36d2976600 --- /dev/null +++ b/vlm/train/TJSOfuZEd1B/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9744a2a8fc27214417db0e26cde0dbca38dc23b1699ddfc6bafb5a2f399d6386 +size 542941 diff --git a/vlm/train/U_mat0b9iv/0.png b/vlm/train/U_mat0b9iv/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cf7d178da83094f40f3aab4e2a8ad7eea34c7ee7 --- /dev/null +++ b/vlm/train/U_mat0b9iv/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e2d30c77d3cdf070985b4e44037d3d3622989405c1c8a6c5ad41949982736e2 +size 500154 diff --git a/vlm/train/U_mat0b9iv/1.png b/vlm/train/U_mat0b9iv/1.png new file mode 100644 index 0000000000000000000000000000000000000000..9e12ed8e364b770c823287717387735f2d8b14aa --- /dev/null +++ b/vlm/train/U_mat0b9iv/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce94b4edd796e5e728327328e17738ab9604fd73117021af226430bb028a474 +size 649715 diff --git a/vlm/train/U_mat0b9iv/10.png b/vlm/train/U_mat0b9iv/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c56d80c1a6b26c49f2ac8df97391b04951832e04 --- /dev/null +++ b/vlm/train/U_mat0b9iv/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f73826c96c6ea6e17fb90b6c860fe763cec335eb5ba2d5f878584ae16ced3ca +size 514781 diff --git a/vlm/train/U_mat0b9iv/11.png b/vlm/train/U_mat0b9iv/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ee9117a2987a2e295950b9f5945a0171f0cc7a8f --- /dev/null +++ b/vlm/train/U_mat0b9iv/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0e751326d955f085b870a99fece021b4fa0029d7d10f361144554291a49453 +size 575212 diff --git a/vlm/train/U_mat0b9iv/12.png b/vlm/train/U_mat0b9iv/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4f1ffb52b6ce23d7d49312aec54c43724ef40c57 --- /dev/null +++ b/vlm/train/U_mat0b9iv/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e6bc1c2c2d150ef166fdb792c4a2646a6dcd7784a7751091079fb8da12ac37 +size 221032 diff --git a/vlm/train/U_mat0b9iv/13.png b/vlm/train/U_mat0b9iv/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad66090da13b21f88630e945a77ab5c2e157d98 --- /dev/null +++ b/vlm/train/U_mat0b9iv/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eea2f1b2806e9660ed2f516d02020c8ec85771187998d2cb5076f66d373cb96e +size 454518 diff --git a/vlm/train/U_mat0b9iv/14.png b/vlm/train/U_mat0b9iv/14.png new file mode 100644 index 0000000000000000000000000000000000000000..48c23536aab10f5ed54fb51cfc0983db792e4240 --- /dev/null +++ b/vlm/train/U_mat0b9iv/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7813deb4b8fa5b93f1ee4017e376c56cb859e8f2786cc4d1993e6c5432741cc5 +size 348491 diff --git a/vlm/train/U_mat0b9iv/15.png b/vlm/train/U_mat0b9iv/15.png new file mode 100644 index 0000000000000000000000000000000000000000..4e00825c3ae7328ca3241e544de1a4395eadf35f --- /dev/null +++ b/vlm/train/U_mat0b9iv/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e873e40b0ecbf6dae9a1b15941fc3697df8aa03d3f8693993670e0fd1ec215 +size 327882 diff --git a/vlm/train/U_mat0b9iv/16.png b/vlm/train/U_mat0b9iv/16.png new file mode 100644 index 0000000000000000000000000000000000000000..ce4bae3d876cbfff46d29d67aad038d32c6dcea5 --- /dev/null +++ b/vlm/train/U_mat0b9iv/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b957f04bc00506b8818b0e2200e1f24cc88da7873fc8ca227bf759f10721b2 +size 302154 diff --git a/vlm/train/U_mat0b9iv/17.png b/vlm/train/U_mat0b9iv/17.png new file mode 100644 index 0000000000000000000000000000000000000000..293870c562ef9c1630060540bb29397f555ace04 --- /dev/null +++ b/vlm/train/U_mat0b9iv/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f500e94653731e1ec1b5d9f4eb110072c26ae1a2fcce9ac1aa52d10fc4f64a +size 343679 diff --git a/vlm/train/U_mat0b9iv/18.png b/vlm/train/U_mat0b9iv/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c00d432c274af40dc8cacad4d4b5052e600b22b1 --- /dev/null +++ b/vlm/train/U_mat0b9iv/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f776842cafbde0177f3366a943902bc729451c945d0c0bad079f3a70f0f9ed +size 347549 diff --git a/vlm/train/U_mat0b9iv/19.png b/vlm/train/U_mat0b9iv/19.png new file mode 100644 index 0000000000000000000000000000000000000000..93d01d56c3576aa59742c66b0a5b1eda31aa2497 --- /dev/null +++ b/vlm/train/U_mat0b9iv/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7471a2b6ea4aed18d29351618ff8d2a7d28e0a7912ebb765f7d9af367eba3667 +size 468907 diff --git a/vlm/train/U_mat0b9iv/2.png b/vlm/train/U_mat0b9iv/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b9daa8dda9387c8793e0d15239afe7114d5a8d26 --- /dev/null +++ b/vlm/train/U_mat0b9iv/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5bcd20451d132705e0470004beadd0c441ea6232a17d18afc0dc6b83b73255 +size 646073 diff --git a/vlm/train/U_mat0b9iv/20.png b/vlm/train/U_mat0b9iv/20.png new file mode 100644 index 0000000000000000000000000000000000000000..37576825162de09ac77e69e6994494cd8b2d6764 --- /dev/null +++ b/vlm/train/U_mat0b9iv/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80d717c3327b2c06e7a58c85de8b092c056d6ab9b547f410a307b885b675102 +size 431405 diff --git a/vlm/train/U_mat0b9iv/21.png b/vlm/train/U_mat0b9iv/21.png new file mode 100644 index 0000000000000000000000000000000000000000..0b37387ee13aa46763a4a0c3260f6d3f6f196b95 --- /dev/null +++ b/vlm/train/U_mat0b9iv/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5929ea0606949dcce2b49a130116e83dd15f6af3ee3c1ba87316f4d29c2c6fc6 +size 478112 diff --git a/vlm/train/U_mat0b9iv/22.png b/vlm/train/U_mat0b9iv/22.png new file mode 100644 index 0000000000000000000000000000000000000000..26cb4fafa734a20e647318c1415c356172f970f4 --- /dev/null +++ b/vlm/train/U_mat0b9iv/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a0423a747578980ca87d24fbd6aeb026f4275319c4b098401fa11c7f20674d +size 509670 diff --git a/vlm/train/U_mat0b9iv/3.png b/vlm/train/U_mat0b9iv/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a8684694171262b99a9af882b0a94a8370f15da8 --- /dev/null +++ b/vlm/train/U_mat0b9iv/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d51e07c6c0160384e19d97a36c3ea062e0de90ce800a10adf041d229e8334d +size 615362 diff --git a/vlm/train/U_mat0b9iv/4.png b/vlm/train/U_mat0b9iv/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5b58eac8f6a304639eff2790a9167408ba847355 --- /dev/null +++ b/vlm/train/U_mat0b9iv/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678bdc6b9c192125bf42cd09dd022714001fa81839120e058e31aad09d46e8dc +size 553746 diff --git a/vlm/train/U_mat0b9iv/5.png b/vlm/train/U_mat0b9iv/5.png new file mode 100644 index 0000000000000000000000000000000000000000..578a94d33a4422ef7c7a2e5b56c747f7aedd6723 --- /dev/null +++ b/vlm/train/U_mat0b9iv/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab14908749f8bb3bf2161446b8914a613fd0cf0bd6ff2ab3d2700391b54bcbaf +size 601124 diff --git a/vlm/train/U_mat0b9iv/6.png b/vlm/train/U_mat0b9iv/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f81e06a76ac42f2f97e93f5ffeea9aff555c8638 --- /dev/null +++ b/vlm/train/U_mat0b9iv/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f69498534fe9c4d8131a1fe9f9054f2682c2b03c5bef9985dbf772efe95a5c +size 583404 diff --git a/vlm/train/U_mat0b9iv/7.png b/vlm/train/U_mat0b9iv/7.png new file mode 100644 index 0000000000000000000000000000000000000000..10ea133ec7b91c7bb60ca5fa27cac59c997a375c --- /dev/null +++ b/vlm/train/U_mat0b9iv/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52398d9abdf575a18b711f351ac9b2e20753ec3ccebc825e740715293ecefdd5 +size 590377 diff --git a/vlm/train/U_mat0b9iv/8.png b/vlm/train/U_mat0b9iv/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3b93edb31965a2b3545180097c3ed9bf94afe954 --- /dev/null +++ b/vlm/train/U_mat0b9iv/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ca441dbc937c4184af32b218351f148c1767a52f76662c1be91b8dc7b846ad +size 584232 diff --git a/vlm/train/U_mat0b9iv/9.png b/vlm/train/U_mat0b9iv/9.png new file mode 100644 index 0000000000000000000000000000000000000000..343d894e86f89da8ca43c81270a9f20be0478bdf --- /dev/null +++ b/vlm/train/U_mat0b9iv/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5932daf70c0b89c9a2240174d08bae44fe555ea216481db437153c77fa7521 +size 524360 diff --git a/vlm/train/nWSZ30wrEw3/0.png b/vlm/train/nWSZ30wrEw3/0.png new file mode 100644 index 0000000000000000000000000000000000000000..029e90b9166f4d8108cd1d9a33f41df625c6f3da --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32fa2b3e532267ea55f1759ae94ecde4206f5a88c6d13cb18dd463053572099c +size 441808 diff --git a/vlm/train/nWSZ30wrEw3/1.png b/vlm/train/nWSZ30wrEw3/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3eb4bbeaddcd833d8097ddb663e07939d9d159e4 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e1637b54da1e7126627f1d6787a67bace56115595b6f7dbbd890a3b7899b3d +size 517577 diff --git a/vlm/train/nWSZ30wrEw3/10.png b/vlm/train/nWSZ30wrEw3/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c67bccf02cec20731089019562910ecc30c7abf4 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bee3dcf8a15fae9e78056dedd7f5d6502e3b2760dbf5e6d4528dcf3689325f46 +size 578255 diff --git a/vlm/train/nWSZ30wrEw3/11.png b/vlm/train/nWSZ30wrEw3/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a61091f9f94f47d9faeb8bc6b75795642999fbe2 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e477bdcbb5e5391daa9cb077b768618d94447cd26ef7f8191aa2dcd3c21cfa32 +size 471355 diff --git a/vlm/train/nWSZ30wrEw3/2.png b/vlm/train/nWSZ30wrEw3/2.png new file mode 100644 index 0000000000000000000000000000000000000000..15c4d06b0f785f437d9cfc15af879f650fe7796c --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e162017a130b1166896403a8b3613aedc7a23a51d222e1b362ca1c852c5cab +size 587189 diff --git a/vlm/train/nWSZ30wrEw3/3.png b/vlm/train/nWSZ30wrEw3/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9045611e501c849318303b623982b0fdf3451b1f --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e70fbe5873e8117fa7aa0962ae4a65e85bceb5972bd74e5137692e2d5373756 +size 507459 diff --git a/vlm/train/nWSZ30wrEw3/4.png b/vlm/train/nWSZ30wrEw3/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9250e769833192e4a4af0d00b5a768cdd56aebd1 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889d0e40cf1740eb51ae2e1569c0f9f593b3e09526c7669e5d97fcde5cd7657e +size 541083 diff --git a/vlm/train/nWSZ30wrEw3/5.png b/vlm/train/nWSZ30wrEw3/5.png new file mode 100644 index 0000000000000000000000000000000000000000..81b1b297b5b7c0c3b10c8ae02d709ea5d802bd14 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e90be8006fe946825ffa407d5448a5591b724208263d7187ddc9cb96e79170e +size 554061 diff --git a/vlm/train/nWSZ30wrEw3/6.png b/vlm/train/nWSZ30wrEw3/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9eb43d3d5be840e79029790d7b11cdcbf47ed21f --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a6149d65888d9b1267692dc74ac2f64f95eec84d72d756670ef386fec2a498 +size 542440 diff --git a/vlm/train/nWSZ30wrEw3/7.png b/vlm/train/nWSZ30wrEw3/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0460132d2a4067f35e3995b09a1ca248a9104c0c --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:129905ba4bf68adc33feb9e0ef5b627eb56b834647b48538fb1249632d59f446 +size 549357 diff --git a/vlm/train/nWSZ30wrEw3/8.png b/vlm/train/nWSZ30wrEw3/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0553db63dd2a22f3fc6e5c7eafd55dfed479df6a --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124d9527333cd5c5656860febe874af6b3e7a6c2a2e89f914b5549f38af315a0 +size 577884 diff --git a/vlm/train/nWSZ30wrEw3/9.png b/vlm/train/nWSZ30wrEw3/9.png new file mode 100644 index 0000000000000000000000000000000000000000..88abc378901d3766be12b1a327d45348042cf539 --- /dev/null +++ b/vlm/train/nWSZ30wrEw3/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c275a834cccda5789171ccb920d2dc0bf82c8cf3541beeee21ec5900935da8 +size 507419 diff --git a/vlm/train/pAbm1qfheGk/0.png b/vlm/train/pAbm1qfheGk/0.png new file mode 100644 index 0000000000000000000000000000000000000000..4c2eb18b0e6eaab57f5c9b2ed51ca8abec832519 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f510d7d49d708e5f7150c3864a522f91c6b2b330cbb0a08c9547051c814cf138 +size 477015 diff --git a/vlm/train/pAbm1qfheGk/1.png b/vlm/train/pAbm1qfheGk/1.png new file mode 100644 index 0000000000000000000000000000000000000000..468592576b2d92a81b7a10a1f6436c02f78661f6 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e8f01ed8c5dc3de8142c372af091bd6ebe572f6ca43a4c2d2b602c68f183ba +size 665170 diff --git a/vlm/train/pAbm1qfheGk/10.png b/vlm/train/pAbm1qfheGk/10.png new file mode 100644 index 0000000000000000000000000000000000000000..89f4855cfc11da775c1df8c206449799f3b259e7 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d36ff893ea2fb13e9dc30fe558662105bd692e9acd53882e03393955d9b9b6 +size 533778 diff --git a/vlm/train/pAbm1qfheGk/11.png b/vlm/train/pAbm1qfheGk/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2a98964a07ea588aed4c329b98d727579bcdc66a --- /dev/null +++ b/vlm/train/pAbm1qfheGk/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5562fe54d3dc641a76f9a6196da1179f41dfe010cec1ae4c522cd27028aea41 +size 145238 diff --git a/vlm/train/pAbm1qfheGk/12.png b/vlm/train/pAbm1qfheGk/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d57085eeb82cf4c56f333a07eea1564c47352a00 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf19499065a531d5753818bbf02ab80faf79e71c4dc601a9e0660ae3c227ce2 +size 526520 diff --git a/vlm/train/pAbm1qfheGk/13.png b/vlm/train/pAbm1qfheGk/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5fcaffb9f305e661e284e72edcd3c06fca255317 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ebee250afdc3086f2818e36885489dac4615061e1deca5c03580a7e52cdb215 +size 372826 diff --git a/vlm/train/pAbm1qfheGk/14.png b/vlm/train/pAbm1qfheGk/14.png new file mode 100644 index 0000000000000000000000000000000000000000..03cf4c612f39b6c9399e3acb52dbf4af3ac00e5b --- /dev/null +++ b/vlm/train/pAbm1qfheGk/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5964f6f8e8b952a7c1a15b3887a7281ab6ed52f5c593ded6a8658ce56a4b196d +size 581002 diff --git a/vlm/train/pAbm1qfheGk/15.png b/vlm/train/pAbm1qfheGk/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1da03845d042b7fa534fdcf965c32f483dfd49ce --- /dev/null +++ b/vlm/train/pAbm1qfheGk/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1c34cac735030b08a75592cbedd2ab57700bd28bb12147532ed102da35e4872 +size 573430 diff --git a/vlm/train/pAbm1qfheGk/16.png b/vlm/train/pAbm1qfheGk/16.png new file mode 100644 index 0000000000000000000000000000000000000000..bb177c4aa61459bb771b880b068f69e2cb4029cf --- /dev/null +++ b/vlm/train/pAbm1qfheGk/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:087a709c81ef1857c60d0e157a46bf7b2dbca12e92fccbc289db4b5fa9e73b01 +size 336823 diff --git a/vlm/train/pAbm1qfheGk/2.png b/vlm/train/pAbm1qfheGk/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c909f29cde94bf35a17e12f13964b95295eb6ff6 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc71065cb7177cd80dd75024e4b39b57b253cc9f9c9d4f25f8c7adfda9c9aaf2 +size 584310 diff --git a/vlm/train/pAbm1qfheGk/3.png b/vlm/train/pAbm1qfheGk/3.png new file mode 100644 index 0000000000000000000000000000000000000000..02e1fd1facc38aebcb4f11e50e39d7d272b07356 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3705f5766fcc7e634aa8d7d88d51ba99284878a13f78b74ba2aa2a002745b486 +size 485670 diff --git a/vlm/train/pAbm1qfheGk/4.png b/vlm/train/pAbm1qfheGk/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4c397e22312e3da14ed12577a2d14f55639dcc3b --- /dev/null +++ b/vlm/train/pAbm1qfheGk/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16ee57842f73b031b126c96052c04f47f48094120d1c57115da89e94e188773 +size 551450 diff --git a/vlm/train/pAbm1qfheGk/5.png b/vlm/train/pAbm1qfheGk/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8075d5aeb05560b5ebc48993fdf8d0b99046c6c5 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f9d8572465087e36273c8d4574432aa71ca75db03c950a6d19f10f6f1df3c4 +size 557367 diff --git a/vlm/train/pAbm1qfheGk/6.png b/vlm/train/pAbm1qfheGk/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d7e3b1343c45803ddcf0ed074ca7f4b7e488180f --- /dev/null +++ b/vlm/train/pAbm1qfheGk/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15bce28d40bf1ef9e9b12555108e8aaa6c98bfc544706b9ebbeaa586e9a79371 +size 593169 diff --git a/vlm/train/pAbm1qfheGk/7.png b/vlm/train/pAbm1qfheGk/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c5d28a258129897d8030408cc899c692bf28e5c9 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8db9ee5d153082024bc82520923cad1797ddc59edb22116d3ffad1569ecc7c +size 537058 diff --git a/vlm/train/pAbm1qfheGk/8.png b/vlm/train/pAbm1qfheGk/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1e8220ad2f4ac74b21fafcc6f00c1026d702ea59 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce4fc263f37a1c5dad17c52c98ecfbd2f367cc5f866097b4feedfa9a8e56d53 +size 510038 diff --git a/vlm/train/pAbm1qfheGk/9.png b/vlm/train/pAbm1qfheGk/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2ca1210c2a4d3d43af9dd0a23c99f9a2769a2791 --- /dev/null +++ b/vlm/train/pAbm1qfheGk/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ae1409ebadd832ad616dde19e188e58c11054cae525485fdd8a19f190811c2 +size 534858 diff --git a/vlm/train/pULTvw9X313/0.png b/vlm/train/pULTvw9X313/0.png new file mode 100644 index 0000000000000000000000000000000000000000..45b8c9acd55f39ed3d3a2998baf573dd78e9f11f --- /dev/null +++ b/vlm/train/pULTvw9X313/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193d7c4de5aef1f088612ddce651b58df885a711d9dd208b9afe75a8710316ae +size 505262 diff --git a/vlm/train/pULTvw9X313/1.png b/vlm/train/pULTvw9X313/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e5541d965005bc987448661600f52c467e16878 --- /dev/null +++ b/vlm/train/pULTvw9X313/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d165dcc900cb38585897251b9f2366bc81632eb48cad914d6292f3cce8318b +size 589267 diff --git a/vlm/train/pULTvw9X313/10.png b/vlm/train/pULTvw9X313/10.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3c19dd54741d4aa1e4a2c3bc8d044d4f13518d --- /dev/null +++ b/vlm/train/pULTvw9X313/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0b7ef0147c1edc55dda619ad178531e24c5c2b1e40eb49f525b2d79de6938a +size 574966 diff --git a/vlm/train/pULTvw9X313/11.png b/vlm/train/pULTvw9X313/11.png new file mode 100644 index 0000000000000000000000000000000000000000..59bbf9e0a46392d28e655472a32d859f28924f70 --- /dev/null +++ b/vlm/train/pULTvw9X313/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e2dc78f560d2f280d4af897aa8ccc74115d905be6b96953cfaa3e24fbcef82 +size 498951 diff --git a/vlm/train/pULTvw9X313/12.png b/vlm/train/pULTvw9X313/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8a577fa63abc0b8d0a550832a136a84cb240efe2 --- /dev/null +++ b/vlm/train/pULTvw9X313/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16a46ecd5ff57539c0791cb9bf07bf177a94a1d7e0ecabb3c3a1ace2d168bcc +size 483698 diff --git a/vlm/train/pULTvw9X313/13.png b/vlm/train/pULTvw9X313/13.png new file mode 100644 index 0000000000000000000000000000000000000000..049289dfc16bdfd9bead546f5b328af5e11e5bcd --- /dev/null +++ b/vlm/train/pULTvw9X313/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98d2a2320f0f328451ea0f893620c5bd6c2e53860e0a49bfe3c93c0167d3de5 +size 436933 diff --git a/vlm/train/pULTvw9X313/14.png b/vlm/train/pULTvw9X313/14.png new file mode 100644 index 0000000000000000000000000000000000000000..39ab6c29d8f4af26472da23d84d6dceb36c835fa --- /dev/null +++ b/vlm/train/pULTvw9X313/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2425308e05acdae88e15935127400e55b9f2c094e5a9f9ab346354ad38d29a6 +size 742451 diff --git a/vlm/train/pULTvw9X313/2.png b/vlm/train/pULTvw9X313/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d497074dea0111ec7e83b8433c50aa75e44dc2a0 --- /dev/null +++ b/vlm/train/pULTvw9X313/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210a863defa0035966a5595220fc0646cf891c7f0776334b7ac19d455a1c593a +size 567923 diff --git a/vlm/train/pULTvw9X313/3.png b/vlm/train/pULTvw9X313/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d63fd64904931acd3227d0fb6daf8713352091ca --- /dev/null +++ b/vlm/train/pULTvw9X313/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05dae2ae1f8f995b9dc5a87cb595f687d8d5afd13a8d8c0ae68448c000b7ec93 +size 556547 diff --git a/vlm/train/pULTvw9X313/4.png b/vlm/train/pULTvw9X313/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6fd5d529a882933c81eb14b648158c415440c5 --- /dev/null +++ b/vlm/train/pULTvw9X313/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477ff43538b7a55794b5f64ff992eb7fdb66e2d320bd8c02e3c0e30778e346d1 +size 649356 diff --git a/vlm/train/pULTvw9X313/5.png b/vlm/train/pULTvw9X313/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6a35e396975fd2d00a34669bd3087c514a0b2fd1 --- /dev/null +++ b/vlm/train/pULTvw9X313/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce265ab4de328480154897c332b01d7d0c9d20c1467deee595979bbc8352a68 +size 645520 diff --git a/vlm/train/pULTvw9X313/6.png b/vlm/train/pULTvw9X313/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b7ad5b9d6e9fc8c1e0247665a05fd38a426e00a3 --- /dev/null +++ b/vlm/train/pULTvw9X313/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072e721d9fd9748d7737933138d9592f797dee01d4b84d7cc31be5eae1260a08 +size 645621 diff --git a/vlm/train/pULTvw9X313/7.png b/vlm/train/pULTvw9X313/7.png new file mode 100644 index 0000000000000000000000000000000000000000..047bbfff77ccdbbdd07cdc7266708971dda822dc --- /dev/null +++ b/vlm/train/pULTvw9X313/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f236c2a725f84ba97e1e75151dc7537032f3e98f670cf0f8a3193f5120e09d40 +size 467687 diff --git a/vlm/train/pULTvw9X313/8.png b/vlm/train/pULTvw9X313/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2b17062c11554a5d6aa93c3dc08b4469be42366f --- /dev/null +++ b/vlm/train/pULTvw9X313/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb26c0f9ace5890173615f71851cfabc1d103b589f5cdd2bcd44e58741dd86c +size 580623 diff --git a/vlm/train/pULTvw9X313/9.png b/vlm/train/pULTvw9X313/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0d812a22f6a48664811b745a880a49d86b9b1445 --- /dev/null +++ b/vlm/train/pULTvw9X313/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7e4ad4688d4e63195479ed2a5623756b3be034e71000b036955a5fa011b778 +size 562337 diff --git a/vlm/train/r154_g-Rb/0.png b/vlm/train/r154_g-Rb/0.png new file mode 100644 index 0000000000000000000000000000000000000000..74f8c9091705c3872a22fb77e4a32fef9d2e84ce --- /dev/null +++ b/vlm/train/r154_g-Rb/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bda63929ff3dc7b07f907247a1c2f1122873136fb07db80690638d9a1e179ae +size 464846 diff --git a/vlm/train/r154_g-Rb/1.png b/vlm/train/r154_g-Rb/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0992ff1b35f2438c9a0c90e3a98a99094bb3c59d --- /dev/null +++ b/vlm/train/r154_g-Rb/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d85fa40307a50b871a6aac81fd2a200a8f30ba99251a09a3a7fc5699c0c457 +size 515131 diff --git a/vlm/train/r154_g-Rb/10.png b/vlm/train/r154_g-Rb/10.png new file mode 100644 index 0000000000000000000000000000000000000000..06185b36e76c85c9f4fd14aa466ad119bfab71c7 --- /dev/null +++ b/vlm/train/r154_g-Rb/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7aee99bc5ec8885c681d75dd91c81bda3b5bac3433e101c36d1e111a3225373 +size 601851 diff --git a/vlm/train/r154_g-Rb/11.png b/vlm/train/r154_g-Rb/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bad4382e87d89240be7ed562582206adb963c3f2 --- /dev/null +++ b/vlm/train/r154_g-Rb/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abe8375700d2ba89b44b92ba3b036dd3458d2beb1f5fa18793c58b9a010f6ed +size 476448 diff --git a/vlm/train/r154_g-Rb/12.png b/vlm/train/r154_g-Rb/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cf7fbb7697dfa73d4c6183df88c45f5046a52614 --- /dev/null +++ b/vlm/train/r154_g-Rb/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c212b495873fe7fcb4b71096c611527d5fb535dcf2dda2e3c92595260ba80e6 +size 95659 diff --git a/vlm/train/r154_g-Rb/2.png b/vlm/train/r154_g-Rb/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d789fa8a677fc86cdc85a72a4c5a4a1caea7dc77 --- /dev/null +++ b/vlm/train/r154_g-Rb/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36a9b923bf30dd10e3722db2e1c0b5677c6ade7d33c79b54e4a95818a05bf28 +size 487611 diff --git a/vlm/train/r154_g-Rb/3.png b/vlm/train/r154_g-Rb/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1823edcfa163c3a6454ef95c3ba9d3ce65f069ad --- /dev/null +++ b/vlm/train/r154_g-Rb/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3012a794b48796201c8d9fd8d48ebd80db45c9b970c183c69d950e1d1225af09 +size 597923 diff --git a/vlm/train/r154_g-Rb/4.png b/vlm/train/r154_g-Rb/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae75134e5ad1a980c760f4f9585aa2470b399c4c --- /dev/null +++ b/vlm/train/r154_g-Rb/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75198dd4d243721628637cdeea5dc6de66bc32eeebd3937a1fa221730f5cb1dc +size 514089 diff --git a/vlm/train/r154_g-Rb/5.png b/vlm/train/r154_g-Rb/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c909fb0f07217617eedd9ec3bafbc54ce1651a63 --- /dev/null +++ b/vlm/train/r154_g-Rb/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ceada59af89feda8967c88032985eae7e7de22dcb0c286d26b192848a26000 +size 509731 diff --git a/vlm/train/r154_g-Rb/6.png b/vlm/train/r154_g-Rb/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3e6fae6acc3c0eae251600b997fda4eff05b26d1 --- /dev/null +++ b/vlm/train/r154_g-Rb/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d1e21d7410449c05eb3fe99af03826d08d3d7b8db4c44fc99471c7a58b41ab +size 540906 diff --git a/vlm/train/r154_g-Rb/7.png b/vlm/train/r154_g-Rb/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a6671a0f8bc81c56bcf09b92701bab6ee97b75b4 --- /dev/null +++ b/vlm/train/r154_g-Rb/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1e6e5d558052ed4033c580d64806f88004f274e9bd4151ff1021733a4b56b1d +size 461820 diff --git a/vlm/train/r154_g-Rb/8.png b/vlm/train/r154_g-Rb/8.png new file mode 100644 index 0000000000000000000000000000000000000000..523c54ab89dfbc499fca41ce6d2e699e44f53a67 --- /dev/null +++ b/vlm/train/r154_g-Rb/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb3455e1ace98607f00854b8f4abb6038c8a8d2166ea40974e9214cfe04da44e +size 752243 diff --git a/vlm/train/r154_g-Rb/9.png b/vlm/train/r154_g-Rb/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2eeb7fea3b4b435180220e837082c1f8fde1ab32 --- /dev/null +++ b/vlm/train/r154_g-Rb/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b519e8ea552ea41f7098ceb0695afda47b1995ccbe6b5de3fda8a845961e5736 +size 520913 diff --git a/vlm/train/r1VdcHcxx/0.png b/vlm/train/r1VdcHcxx/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7ea6caf14c550cd34c20f753d9cb7f46e0c237a7 --- /dev/null +++ b/vlm/train/r1VdcHcxx/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:256b920ba296e7ce11fedf9cfde4e8a40fa6a755d046d76fb1cd93aa02c743a1 +size 500744 diff --git a/vlm/train/r1VdcHcxx/1.png b/vlm/train/r1VdcHcxx/1.png new file mode 100644 index 0000000000000000000000000000000000000000..25eaf5fb9e43e805e7f38f5c2d4c5913cacbf6dc --- /dev/null +++ b/vlm/train/r1VdcHcxx/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd48deed5904f2f8e21b6fa417de5f2a5e1da81900df4cf8b78003dc5fb8a23d +size 474902 diff --git a/vlm/train/r1VdcHcxx/10.png b/vlm/train/r1VdcHcxx/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1ff96b83116f9c7973bbd84dbec481a394459ef3 --- /dev/null +++ b/vlm/train/r1VdcHcxx/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d4f843f198c9bead6c869a44cdb77de953349969b415cc2793d469732d5bc6 +size 504629 diff --git a/vlm/train/r1VdcHcxx/11.png b/vlm/train/r1VdcHcxx/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bf11a7e6b2403bd514d7dd8a90bd9c580aa72e98 --- /dev/null +++ b/vlm/train/r1VdcHcxx/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:859a735e8e69f843e923237a7bfceec4333412558ce550cb78133ca7b2c648b4 +size 417240 diff --git a/vlm/train/r1VdcHcxx/12.png b/vlm/train/r1VdcHcxx/12.png new file mode 100644 index 0000000000000000000000000000000000000000..10f7a39e49d6ea0387d61c66ea6b050a205453a4 --- /dev/null +++ b/vlm/train/r1VdcHcxx/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf2040855a5a35129755f0f01c769e9a0cbf9155b5cab458598c022acfec169 +size 66899 diff --git a/vlm/train/r1VdcHcxx/2.png b/vlm/train/r1VdcHcxx/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cab61b63e52c7a041832f08e361ee1bcfc714cc5 --- /dev/null +++ b/vlm/train/r1VdcHcxx/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:819eddd8d19ca81ebfdef71db2e40d63ed324e87a905ca9ef62899d010d141fa +size 440427 diff --git a/vlm/train/r1VdcHcxx/3.png b/vlm/train/r1VdcHcxx/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b03435afd95e9bd4393ffed8c30042d05a72c05e --- /dev/null +++ b/vlm/train/r1VdcHcxx/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5693b81914c6be669c0630b8e5ab1dc6e1c5b3f174fa2f1bd4e5b993bc46633 +size 473960 diff --git a/vlm/train/r1VdcHcxx/4.png b/vlm/train/r1VdcHcxx/4.png new file mode 100644 index 0000000000000000000000000000000000000000..31e057f6f6e74ce9e3d9098c2259475ceb0629ce --- /dev/null +++ b/vlm/train/r1VdcHcxx/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfee14c0140272917a8ac05ac82f2ba1dd983b6c10c8487ba4f6811a0a8a524 +size 441278 diff --git a/vlm/train/r1VdcHcxx/5.png b/vlm/train/r1VdcHcxx/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8c3124a79e085b1660b84c1a290607493f514a13 --- /dev/null +++ b/vlm/train/r1VdcHcxx/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd8ae2fcd46f69618422a93edb6b4d130346553e7cfef38ee8b73c77665521b +size 467471 diff --git a/vlm/train/r1VdcHcxx/6.png b/vlm/train/r1VdcHcxx/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c66a203b414131e04ebf8a7143d26ddf0b26a541 --- /dev/null +++ b/vlm/train/r1VdcHcxx/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4a8b26897e3760485f9d3a5c66d5c1a6f676aa0ab883c95be42fc039db1bf8 +size 384804 diff --git a/vlm/train/r1VdcHcxx/7.png b/vlm/train/r1VdcHcxx/7.png new file mode 100644 index 0000000000000000000000000000000000000000..261cdcc16645ee7e2c919ed663e0519beb36c1d0 --- /dev/null +++ b/vlm/train/r1VdcHcxx/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9811521434a92aff0b06c324a8ead539aa8dbd4107782853f39adde4adb9d4 +size 465327 diff --git a/vlm/train/r1VdcHcxx/8.png b/vlm/train/r1VdcHcxx/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e7c27d64d4d0cdbb3f4b1be3985cdca82a4c3ac3 --- /dev/null +++ b/vlm/train/r1VdcHcxx/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d2be2cd550ab722ec7b84554b639abcdeaa65c7286c952b17d91ffee009899 +size 458781 diff --git a/vlm/train/r1VdcHcxx/9.png b/vlm/train/r1VdcHcxx/9.png new file mode 100644 index 0000000000000000000000000000000000000000..74ab3931a463a9423a6ae602bb61ad265e16ca7a --- /dev/null +++ b/vlm/train/r1VdcHcxx/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa60fdc2bb81b6f61014606703239c3b7f87e69cc29fa4a8e3470b74cc523b8 +size 425441 diff --git a/vlm/train/rJIN_4lA-/0.png b/vlm/train/rJIN_4lA-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..76be27a93fc224b98f321805c67ad9b218add152 --- /dev/null +++ b/vlm/train/rJIN_4lA-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ef85b074d8c3697c9ac7e63a31f2153e2894a56be667d1b4e52dcb67825fe5 +size 483571 diff --git a/vlm/train/rJIN_4lA-/1.png b/vlm/train/rJIN_4lA-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c55a9922b50db26eb30175762d9c446ee555b82 --- /dev/null +++ b/vlm/train/rJIN_4lA-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2357549f4c0d822827c832330071fa2b1ebf44d6518f586b8aa02d58fc8af435 +size 592560 diff --git a/vlm/train/rJIN_4lA-/10.png b/vlm/train/rJIN_4lA-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0d1f50ae348cbebdce86e727383d66f1c41c5828 --- /dev/null +++ b/vlm/train/rJIN_4lA-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94faf0b94c1a696cf191ae03e4e67fd720984b053f6e403940f8e97b74e8ca69 +size 546501 diff --git a/vlm/train/rJIN_4lA-/11.png b/vlm/train/rJIN_4lA-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8b6ceb29e6a9e61e3c6b2c9bbf14de9fd9fc5e13 --- /dev/null +++ b/vlm/train/rJIN_4lA-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd1716aac26f99969e701ade10f6228c6e88f569667ecc8e0906f4119916708 +size 541337 diff --git a/vlm/train/rJIN_4lA-/14.png b/vlm/train/rJIN_4lA-/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9272132c005badffd6988c659f178f6f98c2b589 --- /dev/null +++ b/vlm/train/rJIN_4lA-/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64507463c470388d9e3b6f592e0747ce668c62a2f42c8b6816ee289d5b59e22 +size 522831 diff --git a/vlm/train/rJIN_4lA-/15.png b/vlm/train/rJIN_4lA-/15.png new file mode 100644 index 0000000000000000000000000000000000000000..aaaa905423f4170365814484f85dde8331e7a08e --- /dev/null +++ b/vlm/train/rJIN_4lA-/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f595afd18fac3d3b1171cad3f7d07803a34b9cbddae7d4ede4bdb92bf7ab5812 +size 395334 diff --git a/vlm/train/rJIN_4lA-/2.png b/vlm/train/rJIN_4lA-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..efbbcb766b340ebf4f662ea7aac2ecee0fa63a91 --- /dev/null +++ b/vlm/train/rJIN_4lA-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:427663602a8bb0e21a183a9b11be9bf102f13d22c5dd0111690df1ba431edb4c +size 580543 diff --git a/vlm/train/rJIN_4lA-/3.png b/vlm/train/rJIN_4lA-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd5c6c9defe99a2a4eb4ed7bbd118e21b2ab64a --- /dev/null +++ b/vlm/train/rJIN_4lA-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d4f4e35c3720b585f3cff2cd126af0fbcf741e912a1f7e70957f41f4417832 +size 537599 diff --git a/vlm/train/rJIN_4lA-/5.png b/vlm/train/rJIN_4lA-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..62981481f00769b10bd5ea1af51c5908e5b2766e --- /dev/null +++ b/vlm/train/rJIN_4lA-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa218961e4804511fcd66df8c848eb72361d42a121e7c7fff9ea067b435732ad +size 458186 diff --git a/vlm/train/rJIN_4lA-/6.png b/vlm/train/rJIN_4lA-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..36a757e6c16167e2203a24e572bb428559ec90c5 --- /dev/null +++ b/vlm/train/rJIN_4lA-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbc45fa3c4e3022d606fd2281a7fa517293af8e1df14ce9156d2b4b0e8825fa +size 500815 diff --git a/vlm/train/rJIN_4lA-/9.png b/vlm/train/rJIN_4lA-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfb0c4c129282791ff3bfc571472e6eabe4dd73 --- /dev/null +++ b/vlm/train/rJIN_4lA-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07df0f4700b5102ae7e7aed5ab702c7eb099da885b275c5cf7f1e9a8e5f61c50 +size 546673 diff --git a/vlm/train/rklMnyBtPB/0.png b/vlm/train/rklMnyBtPB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6222827b5768d0f518d56d257316ce0256458830 --- /dev/null +++ b/vlm/train/rklMnyBtPB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924cbf231f0e97f2482c8d7ea72a4d555d080abf5146d92e69200a9a6a918efe +size 538916 diff --git a/vlm/train/rklMnyBtPB/1.png b/vlm/train/rklMnyBtPB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dda4b2363172955fbaaa76d2ff1714489837ae0d --- /dev/null +++ b/vlm/train/rklMnyBtPB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99311191efe5fe9ae45d98066db5e28ab16a04492f2adc39a5752e9f935cbc5 +size 632643 diff --git a/vlm/train/rklMnyBtPB/10.png b/vlm/train/rklMnyBtPB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f736d7a6f02e22cadec773a1c9f984429ecd1783 --- /dev/null +++ b/vlm/train/rklMnyBtPB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9a67f24ffbbaed797fd9e4e251888a1e74ac040c7b41671f8133da8089b802 +size 636714 diff --git a/vlm/train/rklMnyBtPB/11.png b/vlm/train/rklMnyBtPB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..da2557cf7a79a49018290c702ec0da6a93a01683 --- /dev/null +++ b/vlm/train/rklMnyBtPB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0063ac81e4bd71aa919ba0b0b4a511f7116eaa6d35b45b4ed7fcc0cb2988eaaa +size 374634 diff --git a/vlm/train/rklMnyBtPB/12.png b/vlm/train/rklMnyBtPB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..092304da000d7d79f7da13ac9e12ebfd8ac059fb --- /dev/null +++ b/vlm/train/rklMnyBtPB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec513f2907680acf92f804741dffb9074ab9c828ba60d282c3f15d0a922b7d4f +size 421587 diff --git a/vlm/train/rklMnyBtPB/13.png b/vlm/train/rklMnyBtPB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..7198d1c5aab043e969d11e0405d1bbc5681ce6af --- /dev/null +++ b/vlm/train/rklMnyBtPB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d035a975fd6ae89d97a29e00e323bdc99811c9c74ab865c602104bab9cbbeef4 +size 524331 diff --git a/vlm/train/rklMnyBtPB/14.png b/vlm/train/rklMnyBtPB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5686f7a3e7af7dda76c98f2302c9579d0712a4 --- /dev/null +++ b/vlm/train/rklMnyBtPB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0594b134bf7043f615a5f4811bca498521f197942bfa135fd4f36c523e1c3063 +size 550154 diff --git a/vlm/train/rklMnyBtPB/15.png b/vlm/train/rklMnyBtPB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b591b92ab22339dffe80edad532c4a88852f1f34 --- /dev/null +++ b/vlm/train/rklMnyBtPB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7c3e2037ea4c49bc9f59227267602414303a9d91fffe6a60aebdf1a5554c33 +size 346034 diff --git a/vlm/train/rklMnyBtPB/2.png b/vlm/train/rklMnyBtPB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28d8688fe18ea16550b32bfbd66fafa190a28876 --- /dev/null +++ b/vlm/train/rklMnyBtPB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3057a32a3b328818b2c5308439fbe8dc2b34347b276553d02191b7a3d67fd6c2 +size 430690 diff --git a/vlm/train/rklMnyBtPB/3.png b/vlm/train/rklMnyBtPB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bcd86fd4da2e694b06436669ab23371593d94ef5 --- /dev/null +++ b/vlm/train/rklMnyBtPB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1677e0a056867198495820501ad72f2c84f3be451a196855362a027f7cca715 +size 484001 diff --git a/vlm/train/rklMnyBtPB/4.png b/vlm/train/rklMnyBtPB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..025fa250f5fc8d6486af249c1a8ef55a855058ff --- /dev/null +++ b/vlm/train/rklMnyBtPB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4156efe38a38b05c455e48b3e504f17c722edb91181da60dbd7d007f6ff74235 +size 486072 diff --git a/vlm/train/rklMnyBtPB/5.png b/vlm/train/rklMnyBtPB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5c807b92ac31afe9e9418a14cfdd24c107c60b1c --- /dev/null +++ b/vlm/train/rklMnyBtPB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c83b0c985b113135e273986b65abed79681bcdf52543572e8cb363b20e448b47 +size 493040 diff --git a/vlm/train/rklMnyBtPB/6.png b/vlm/train/rklMnyBtPB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..699915f8d9ed04ebe1d3cc268d48f0d4990c1d01 --- /dev/null +++ b/vlm/train/rklMnyBtPB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906b4ac7b4b91dc2fd4b9154d7ce3ed10c6247a55f348f2d880950907ae79eee +size 565757 diff --git a/vlm/train/rklMnyBtPB/7.png b/vlm/train/rklMnyBtPB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cb9afbfd4c842c97f68198c64a878f62a97f0b4f --- /dev/null +++ b/vlm/train/rklMnyBtPB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b197a29b43621e617e7a4dd4a44f71111d32798bb0e71a669de85a06e239bbd +size 480484 diff --git a/vlm/train/rklMnyBtPB/8.png b/vlm/train/rklMnyBtPB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..67571f67704e3d8f34dbdfb29f1e3a500846dea2 --- /dev/null +++ b/vlm/train/rklMnyBtPB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632e7869e8740f7db875359ac33b6618ee6724dfd6e7777afc6c1cc6a49bb68d +size 513098 diff --git a/vlm/train/rklMnyBtPB/9.png b/vlm/train/rklMnyBtPB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ca076c6d782075fb629ec379b56e0aea7ee95b4d --- /dev/null +++ b/vlm/train/rklMnyBtPB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b09561acb53547f0db92098ab08cc86fd4eeaafcafb587619c6be1a960b146b +size 579497 diff --git a/vlm/train/rq_Qr0c1Hyo/0.png b/vlm/train/rq_Qr0c1Hyo/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d26e4895b398890ca50299ebbd3f5f2cfd9a419d --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e19002c266d66b33e163ec74c4e6f120dc29138be2737a13923559f74dab654 +size 534201 diff --git a/vlm/train/rq_Qr0c1Hyo/1.png b/vlm/train/rq_Qr0c1Hyo/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cc59d048dd3a670689917fdf237113cb9c2ff11 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e6ea650ae2746a3de12b5c6cbdf3bac24f491e2485135a7f589c3af1621345 +size 659375 diff --git a/vlm/train/rq_Qr0c1Hyo/10.png b/vlm/train/rq_Qr0c1Hyo/10.png new file mode 100644 index 0000000000000000000000000000000000000000..83d52e763ed44a73b8b20ad68914ed63790dcbd6 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9141773a163a26a7711aa114681088441c814ab141a425c715f17cf666df50dc +size 493424 diff --git a/vlm/train/rq_Qr0c1Hyo/11.png b/vlm/train/rq_Qr0c1Hyo/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ba000a1a8e76fd7e3d8e29350e6cb36a0b51dbdd --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57e191cae6f241ba1f02c1850af6d50399c0f666915df864a0493ddfab2cdd1 +size 348948 diff --git a/vlm/train/rq_Qr0c1Hyo/12.png b/vlm/train/rq_Qr0c1Hyo/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c1061c28193d4470760947917bd5f08c4d4bbad8 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0efba2ef90514b5566cf9c8a925f3d971bbadd1e43ab058d1e7cd8cfc1bcc1ee +size 514869 diff --git a/vlm/train/rq_Qr0c1Hyo/13.png b/vlm/train/rq_Qr0c1Hyo/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb695c21403aa45cf33cd552aa31a5867f03b6c --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ea7e47cc2d01f30109a586bc85781f1f3fd3d425fc471c9a4b6b27829cee7b +size 578199 diff --git a/vlm/train/rq_Qr0c1Hyo/2.png b/vlm/train/rq_Qr0c1Hyo/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d034c1dfa913aa7f7e272ea96f2aa23cb9680e2a --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee76c40432efdeb852c872215dcc1e070b8e2f1a7352a8393307c62ea1627d8 +size 564614 diff --git a/vlm/train/rq_Qr0c1Hyo/3.png b/vlm/train/rq_Qr0c1Hyo/3.png new file mode 100644 index 0000000000000000000000000000000000000000..23aff687c3fa05757b5d3701a70183eb446947f6 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60305d285fa6c2bcaf450150a6e72c0e189d5c0bd74a6ac2a28c60df680a1eab +size 480361 diff --git a/vlm/train/rq_Qr0c1Hyo/4.png b/vlm/train/rq_Qr0c1Hyo/4.png new file mode 100644 index 0000000000000000000000000000000000000000..26be2634bd6eba40b206d3319a132ff0c1cfbcb9 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cc32feeb5f3c9588783c71774e3630ed060ad301d8ca489a966932f647da10 +size 596822 diff --git a/vlm/train/rq_Qr0c1Hyo/5.png b/vlm/train/rq_Qr0c1Hyo/5.png new file mode 100644 index 0000000000000000000000000000000000000000..eb271d9af1bc7c400bec6227a17447ca23b07174 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:080727577dffce30322eb537126582fcc439ace09db59416ec5547bc1bb94ee2 +size 624626 diff --git a/vlm/train/rq_Qr0c1Hyo/6.png b/vlm/train/rq_Qr0c1Hyo/6.png new file mode 100644 index 0000000000000000000000000000000000000000..dd36e9f0796b6fc62a266c237f1ffe557e3b110a --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8e8a637706e5bb8610107742c5f03998f67976d690f3db2ec82d408e6930dc +size 629691 diff --git a/vlm/train/rq_Qr0c1Hyo/7.png b/vlm/train/rq_Qr0c1Hyo/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f056d47ae5005a3b234f4554ef41778810ca3018 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f103f08da848dfd6ec1544adc0408c26f744d4302af47d3408c99069f20585b4 +size 627253 diff --git a/vlm/train/rq_Qr0c1Hyo/8.png b/vlm/train/rq_Qr0c1Hyo/8.png new file mode 100644 index 0000000000000000000000000000000000000000..3dfaf9a5dccfd1da881937394f428cee90c19a9d --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7141b5121dbaabcedf2e5461b7eafa642b7863d6c952e85f154bbb8bf553b39a +size 615145 diff --git a/vlm/train/rq_Qr0c1Hyo/9.png b/vlm/train/rq_Qr0c1Hyo/9.png new file mode 100644 index 0000000000000000000000000000000000000000..598f96bfc271f64abfc76a8ba6dbea2e3e4639e6 --- /dev/null +++ b/vlm/train/rq_Qr0c1Hyo/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11847ea6b29abc7946cfc72d82163aafb5e18566fdcb9d3542bec5d9e4efbfb4 +size 509523 diff --git a/vlm/train/ry0WOxbRZ/0.png b/vlm/train/ry0WOxbRZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f90d8d70a303e75467d752a7911a8ddb10518896 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abb3245908fe738d7c0b3c08705e70608ff099b124968e6431243da510f6db0 +size 525722 diff --git a/vlm/train/ry0WOxbRZ/1.png b/vlm/train/ry0WOxbRZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..908fedc66911bf4275a73d1e96abafaeafff89ab --- /dev/null +++ b/vlm/train/ry0WOxbRZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbfa157fe67f7db8edcbff559ea487eebb47e8f0e276acb57b29f2e8a5cf47b0 +size 429186 diff --git a/vlm/train/ry0WOxbRZ/10.png b/vlm/train/ry0WOxbRZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..62a15a0a92a1f288c357c22dcb793420cc74c1d4 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a860d0fd33946cdf024126420a0f768258cd2e3f20bffc3e8c7f602eb0557a3f +size 153303 diff --git a/vlm/train/ry0WOxbRZ/11.png b/vlm/train/ry0WOxbRZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2cc221460adcf39c79ecb605b6cb9d3dea94b3fc --- /dev/null +++ b/vlm/train/ry0WOxbRZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e8bf8260f8937fa3531d42d20b80b55a63994454be03f8f57f0928f3dc0553 +size 250668 diff --git a/vlm/train/ry0WOxbRZ/12.png b/vlm/train/ry0WOxbRZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc54aac9a29cbb25d580c541c4f4297a01a2921 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:879ad4b5b4acbb5ad21e14468837e3cd5fbca13e87a4de122a6bd7e6bf216c0c +size 328687 diff --git a/vlm/train/ry0WOxbRZ/2.png b/vlm/train/ry0WOxbRZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d8c9a0fc8b83a50ba8e441c50eda1ed505b8f011 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162024cc0910ccf1a3c96e95b78bebd7d1beaa725b9a095e54e86056b3471b94 +size 594498 diff --git a/vlm/train/ry0WOxbRZ/3.png b/vlm/train/ry0WOxbRZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..7e6397a246b1d64ebef0b5016b8dfe074a98e8fd --- /dev/null +++ b/vlm/train/ry0WOxbRZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d1c4f27083a21693949eb44c5d8355546c3a66c51fc7e7013172fe771e2edc +size 481259 diff --git a/vlm/train/ry0WOxbRZ/4.png b/vlm/train/ry0WOxbRZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c4d4b87313c7a2799cdef20e3d4d8e2b5aaab2d4 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36507ffa3002b8a762457dcae0184fca592cb4dd70eb98f857463f6ea1018c4e +size 583641 diff --git a/vlm/train/ry0WOxbRZ/5.png b/vlm/train/ry0WOxbRZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..333e751c8b225eb18083d2093e33fc02e8adfbc8 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e72480fa03d991228a0ff74033672bfe3ccb23bd34233dfe534d862951a043 +size 1340497 diff --git a/vlm/train/ry0WOxbRZ/6.png b/vlm/train/ry0WOxbRZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c41224dfba68f6b633e2ed1136669ac96d0c1675 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c4c3e8054a593e52ad5e577baec700a8be1d5e5c1893dfa4b274b5fe9f1448 +size 904676 diff --git a/vlm/train/ry0WOxbRZ/7.png b/vlm/train/ry0WOxbRZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c705fa554de92a8df719f1b0be64143491ff2324 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895cf8a4f244b8e9f38b69f084c7f0ffb814b6f4415bfe5ae3c9174553cc0c12 +size 1285421 diff --git a/vlm/train/ry0WOxbRZ/8.png b/vlm/train/ry0WOxbRZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdf2c25a0ead390e3f24c3599c8b8edf3c0f9d2 --- /dev/null +++ b/vlm/train/ry0WOxbRZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0e77dd838be73148a30dad5e4774e308919c42d17d928f011f293712fade3f +size 447924 diff --git a/vlm/train/ry0WOxbRZ/9.png b/vlm/train/ry0WOxbRZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0e367c3650d90c3dd1536096eb2c585e38f4ea --- /dev/null +++ b/vlm/train/ry0WOxbRZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4751a731037e6b6391bbbf6f91cb2054440f1bc88224669bc56d391826ba1c4c +size 1390682 diff --git a/vlm/train/rylkma4twr/0.png b/vlm/train/rylkma4twr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a35ae4cd2a6481186420af42e436e9e8ccd4b792 --- /dev/null +++ b/vlm/train/rylkma4twr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef71cbdea8f441559c69da114cc731cc8002f06be8e4b0ae7d13567dde0c246 +size 516149 diff --git a/vlm/train/rylkma4twr/1.png b/vlm/train/rylkma4twr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..292d5591aeeaac980431b4322ca89da6489c269e --- /dev/null +++ b/vlm/train/rylkma4twr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1beb534467a4a546583f1c5c113cfff8923dacda9a6ae7bb1c8193dbab1b9c82 +size 657361 diff --git a/vlm/train/rylkma4twr/10.png b/vlm/train/rylkma4twr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f799d722dcfe38cf0aae84f206bbe3e9a3b607e2 --- /dev/null +++ b/vlm/train/rylkma4twr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac57ce84294b0ccba9130bd1415c029c75a77e6a0a763370076aaa008b40f3f9 +size 531765 diff --git a/vlm/train/rylkma4twr/11.png b/vlm/train/rylkma4twr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2b7efb4ad72a3069e882abc9c9ab2d7b3276c4b0 --- /dev/null +++ b/vlm/train/rylkma4twr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ec2cb220e76f4db54a2f885415ff90f1a43939e739f45b6b082727b1730344 +size 518578 diff --git a/vlm/train/rylkma4twr/12.png b/vlm/train/rylkma4twr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e66e10ede6e7cc6bab36958ec7dd9efe6f53c9e9 --- /dev/null +++ b/vlm/train/rylkma4twr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e73d2c0d7c900011659e761b33a6540bd0f37016d5830b178cfae655765ea9 +size 573486 diff --git a/vlm/train/rylkma4twr/13.png b/vlm/train/rylkma4twr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..756b3f6da57fd8730f920c7f8a1c49d0ff6d638e --- /dev/null +++ b/vlm/train/rylkma4twr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a22c7d70af52be232864ceed82469c4fe59f5f15c6fcb0804e860f5b5bf08e +size 263513 diff --git a/vlm/train/rylkma4twr/14.png b/vlm/train/rylkma4twr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..f6abe41b08cc251838d381e73278fe4aeca69589 --- /dev/null +++ b/vlm/train/rylkma4twr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7375e1a021600286d746e9c189e67511755a792b95178dd61f1977797fb9c537 +size 341609 diff --git a/vlm/train/rylkma4twr/15.png b/vlm/train/rylkma4twr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0503677dbcdb04971f9fa76ed136f16f4664c7b4 --- /dev/null +++ b/vlm/train/rylkma4twr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0145dbd4f3028150914b3c1302b98981ca90d4c934c1b5056b14078566b91c +size 327132 diff --git a/vlm/train/rylkma4twr/16.png b/vlm/train/rylkma4twr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..0707e55fd09cdcc75a3650e6c3d56db8a09ac31f --- /dev/null +++ b/vlm/train/rylkma4twr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f33042e4cfe4e612c6abac1a890b2ff56526f55173d33790b35e70ef2cc415 +size 355954 diff --git a/vlm/train/rylkma4twr/17.png b/vlm/train/rylkma4twr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..c76ac460bdf71d28a868f77a5c09d84bb196f070 --- /dev/null +++ b/vlm/train/rylkma4twr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f85695700e70d12cd5760c52bc767324aec3b5e1f3434928ce8ea102868bd8 +size 325637 diff --git a/vlm/train/rylkma4twr/18.png b/vlm/train/rylkma4twr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2f351085f6b50efe7e01332de6b20fa913b586f6 --- /dev/null +++ b/vlm/train/rylkma4twr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c6f8e944920cc2946c2bbd6aa9a1a0f93d78ddd1ed3ef7ce09207f72c42997 +size 292991 diff --git a/vlm/train/rylkma4twr/19.png b/vlm/train/rylkma4twr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..04b99a36b4f3f3e0ddeb4a0f08492e709fb66378 --- /dev/null +++ b/vlm/train/rylkma4twr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e6b86967b72df521d408d1ec5f25b2f906dc0af4b5c4568e8f9368ce038063 +size 336619 diff --git a/vlm/train/rylkma4twr/2.png b/vlm/train/rylkma4twr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..10f14dde7d80dd5f02abaa3e50480ed4fe64fddd --- /dev/null +++ b/vlm/train/rylkma4twr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4bc425dca778d48b56b2508e5feccd4b587b8f595916be5ecf2240b4537081 +size 560702 diff --git a/vlm/train/rylkma4twr/20.png b/vlm/train/rylkma4twr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..4dd25b6380066dcea877ab2aafbbc190f09d633c --- /dev/null +++ b/vlm/train/rylkma4twr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a5f431e065e0b733eb913f7d7d2f79294d4fa347d169bbaebf8e3e2f7aa274 +size 288061 diff --git a/vlm/train/rylkma4twr/21.png b/vlm/train/rylkma4twr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c914bf74cf4640ac31cbce88789e7960bee20df1 --- /dev/null +++ b/vlm/train/rylkma4twr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8323a2b15a301ab08002bb38fd36bcaec82fe1738505712a14b3a49391fc775 +size 320102 diff --git a/vlm/train/rylkma4twr/22.png b/vlm/train/rylkma4twr/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7aae93f66ae49070198344ecbb5f902533fbcaa8 --- /dev/null +++ b/vlm/train/rylkma4twr/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c6cc80702c47053aaddcd75ea422adcbd9ca03f2cd38659ec5280fc0ffed94 +size 272488 diff --git a/vlm/train/rylkma4twr/23.png b/vlm/train/rylkma4twr/23.png new file mode 100644 index 0000000000000000000000000000000000000000..8fe3fdef69b16c071c4daa4c201cd70d2cec4c00 --- /dev/null +++ b/vlm/train/rylkma4twr/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46194249427f23c230576333ed4b489c615430f5c57970ef01a24d98132136d6 +size 314214 diff --git a/vlm/train/rylkma4twr/24.png b/vlm/train/rylkma4twr/24.png new file mode 100644 index 0000000000000000000000000000000000000000..43b7e4982422c8cee1e038882990f01d1a9acb14 --- /dev/null +++ b/vlm/train/rylkma4twr/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0ed476d81af9d81c3b7e02cf73407de60540ca6c7ce45abf015b18b17d56bb +size 274549 diff --git a/vlm/train/rylkma4twr/25.png b/vlm/train/rylkma4twr/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8c3e8510b5c138e52c454b6a5ef9eec9f452e113 --- /dev/null +++ b/vlm/train/rylkma4twr/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee903ee9bf1cf2e720745305b145b63214ce524d4502ea638f904f9e328c5672 +size 284121 diff --git a/vlm/train/rylkma4twr/26.png b/vlm/train/rylkma4twr/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8ef016f17ad3fc56a36e5386a1e2ca72d643bb --- /dev/null +++ b/vlm/train/rylkma4twr/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8aaf07813a440888d1b0751e22bcca78b3c5081b35d4f323a7fd6a7e926c056 +size 350395 diff --git a/vlm/train/rylkma4twr/27.png b/vlm/train/rylkma4twr/27.png new file mode 100644 index 0000000000000000000000000000000000000000..eee68e25bb4d9c1318ccd890990d7ccd0e6745d0 --- /dev/null +++ b/vlm/train/rylkma4twr/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdf2d49f5b4b1c50d50e6db998214747e2e65ebcb95cd2cd12a5bedd1b0ef78 +size 439168 diff --git a/vlm/train/rylkma4twr/28.png b/vlm/train/rylkma4twr/28.png new file mode 100644 index 0000000000000000000000000000000000000000..5c65ce2ce97a7936f8af589bd9a7039b57a8e34a --- /dev/null +++ b/vlm/train/rylkma4twr/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99345b7ffbff52fd2eb8dd0e1c279f3c4fd34078e1ed9b56296b98a009232fb2 +size 428695 diff --git a/vlm/train/rylkma4twr/29.png b/vlm/train/rylkma4twr/29.png new file mode 100644 index 0000000000000000000000000000000000000000..1359be18dc823e67527cdcb03b6165f0bf6d342e --- /dev/null +++ b/vlm/train/rylkma4twr/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc6480967fd5c1e2ea5d70f99af34f3eeed7b68a1a5fd8a156608594968ff2a +size 117177 diff --git a/vlm/train/rylkma4twr/3.png b/vlm/train/rylkma4twr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..29107b5fbab53cfea8ddaed6813f05fa7ba44a43 --- /dev/null +++ b/vlm/train/rylkma4twr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:672463abf9f7a91298eb18e4f1bdbe3dd16f53d1725f88e9a8fd833434a10ad7 +size 522696 diff --git a/vlm/train/rylkma4twr/4.png b/vlm/train/rylkma4twr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c62482ef42a4c341aa360189c47d0e0ce6d5167c --- /dev/null +++ b/vlm/train/rylkma4twr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeae6ae91c89f93c4473cddd28fc72bdf4cbbb153a4dc33901598763b622f287 +size 644549 diff --git a/vlm/train/rylkma4twr/5.png b/vlm/train/rylkma4twr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..288d3bc42439edf78b072b191637975d50e3b118 --- /dev/null +++ b/vlm/train/rylkma4twr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b5f7f20d1179c070645276fbb121ad91c31aa7954640380ad055b8f24b9528 +size 511621 diff --git a/vlm/train/rylkma4twr/6.png b/vlm/train/rylkma4twr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..541e970bdc9d84431dc48f3a77328a47a196b8c2 --- /dev/null +++ b/vlm/train/rylkma4twr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a148364064486623b4e29cff35a19381766b0a412e8fa6fa6bce520c8a626a2d +size 602935 diff --git a/vlm/train/rylkma4twr/7.png b/vlm/train/rylkma4twr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8b26039378e537ca39d2eae3b5be71ce97c36a --- /dev/null +++ b/vlm/train/rylkma4twr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47e1e64299e5fe8dabd7bd98185ed7bc1187bc139879bc5f4b5d4b7870735924 +size 559923 diff --git a/vlm/train/rylkma4twr/8.png b/vlm/train/rylkma4twr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..da3f2810a3fbb0b2e03832c01a110ecabf52ba2d --- /dev/null +++ b/vlm/train/rylkma4twr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:122329a24c409d883a52f15b1dccaf017cb4f1cdc6a88b7ec6e5641c63bb121a +size 648899 diff --git a/vlm/train/rylkma4twr/9.png b/vlm/train/rylkma4twr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..90a17bb9ae5af0225c2d3a301cef1b206b35f391 --- /dev/null +++ b/vlm/train/rylkma4twr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f65697176e22ec66665bbf5c678c6de8624681af3ef0943cded78f8a0e9b9f0 +size 627904 diff --git a/vlm/train/rytNfI1AZ/0.png b/vlm/train/rytNfI1AZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..29c2b89f80c982ffa194cfcf573f58d0ca3a35cc --- /dev/null +++ b/vlm/train/rytNfI1AZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5e8cbfb5f301a6ad14625f95e4a3fc692d75a1067fb6555be8b5f177d3a63c +size 476891 diff --git a/vlm/train/rytNfI1AZ/1.png b/vlm/train/rytNfI1AZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ee7e89011490f7e4f9886ce9e676f4078747d3e8 --- /dev/null +++ b/vlm/train/rytNfI1AZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749f9f40d208a4043c15b429ad9a36a9d9a669060a20861629c72efca60ea512 +size 435441 diff --git a/vlm/train/rytNfI1AZ/10.png b/vlm/train/rytNfI1AZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9657cb0b57269184d1f8af7f12c7aee5173cd21e --- /dev/null +++ b/vlm/train/rytNfI1AZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde044c463a142b206340275ba2ea1ce407e66882372ca831607008ddc9dcead +size 555157 diff --git a/vlm/train/rytNfI1AZ/11.png b/vlm/train/rytNfI1AZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..09c45121bdfa2679d124efa6592bd05df62de71f --- /dev/null +++ b/vlm/train/rytNfI1AZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7486722a0ae97b4e9a3f399148920d29707674869b8fadac31ac215e261f6d9f +size 550016 diff --git a/vlm/train/rytNfI1AZ/12.png b/vlm/train/rytNfI1AZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1b974d30728b7356f9a55af42ba480da2ed67c55 --- /dev/null +++ b/vlm/train/rytNfI1AZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05a0d8cf26a8c1cd567029d9289ae42a636a254d29b5ba4e50bfc31f74cd1415 +size 535697 diff --git a/vlm/train/rytNfI1AZ/13.png b/vlm/train/rytNfI1AZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ebf1764f66ef5714faf80d9b4681d5cdd5ffea --- /dev/null +++ b/vlm/train/rytNfI1AZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e51d6f2d0b22db4c9c78f53727dc07d8f556738d25f2afd038b60304beecdcda +size 529252 diff --git a/vlm/train/rytNfI1AZ/14.png b/vlm/train/rytNfI1AZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b8c4bfb1c0ed0fe8ac7260bc77463f291a3c85ff --- /dev/null +++ b/vlm/train/rytNfI1AZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3ec8c21e3b2b0cb40e857f7de33bea77863078262ea6e6622d78389c4859c5 +size 487757 diff --git a/vlm/train/rytNfI1AZ/2.png b/vlm/train/rytNfI1AZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e5ac4181f8b49619bbe1664dbfdf4e2b1fd6e22 --- /dev/null +++ b/vlm/train/rytNfI1AZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ec70b462f5fa0365d980678d4cbf17feaf2abfbd1b07ab1a9b2b7d02c943ec +size 554822 diff --git a/vlm/train/rytNfI1AZ/3.png b/vlm/train/rytNfI1AZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c585b838f53fa3f059b6cb17a4f9a6a757e9ebb1 --- /dev/null +++ b/vlm/train/rytNfI1AZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677763d257ac479d22a73ec0836384807a087399e60e80d71797d38087e09fd5 +size 542066 diff --git a/vlm/train/rytNfI1AZ/4.png b/vlm/train/rytNfI1AZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..410e3223338939bdc8b39ef7e22ffd3d529f1869 --- /dev/null +++ b/vlm/train/rytNfI1AZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329fd8adbdaa06b1f4164c53cc411324e92ee038785b678bf7c9d0070030464e +size 483144 diff --git a/vlm/train/rytNfI1AZ/5.png b/vlm/train/rytNfI1AZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6af9522f450886a677c159ebb62c12a7a0f0c4c8 --- /dev/null +++ b/vlm/train/rytNfI1AZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc4d44be5e071ac8823c6efaf15249a952932227ae202f815742e7afcbde64ed +size 467990 diff --git a/vlm/train/rytNfI1AZ/6.png b/vlm/train/rytNfI1AZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..610f96bd80822977559d530b48fdf8f2e1cbc7d1 --- /dev/null +++ b/vlm/train/rytNfI1AZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f2bf57ac595c004da277b65cde91f6e0649b24a7923132a96a92e66a2bf5b02 +size 549817 diff --git a/vlm/train/rytNfI1AZ/7.png b/vlm/train/rytNfI1AZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..572b6a18bfeaa1c4f729994e7e9f2d28b24376df --- /dev/null +++ b/vlm/train/rytNfI1AZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751388271fd55f0297dc0303851ead1a8debc465ac8b56732f58d23b2321bb8a +size 523310 diff --git a/vlm/train/rytNfI1AZ/8.png b/vlm/train/rytNfI1AZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9d6028938865500e39a2abfd1cf880ffe64eac84 --- /dev/null +++ b/vlm/train/rytNfI1AZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b7fa0bdfd88c366b392582e7fd82e65d50af71fa2437b0c41ee51d595eb341 +size 553208 diff --git a/vlm/train/rytNfI1AZ/9.png b/vlm/train/rytNfI1AZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bff0d701edd7e7015cea4ef2bb9a66c64eca5a59 --- /dev/null +++ b/vlm/train/rytNfI1AZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:639f183cc65470889672247730f986c1b500b6b601a2ad2ff6070ba23a259f5c +size 513902 diff --git a/vlm/train/tGZu6DlbreV/0.png b/vlm/train/tGZu6DlbreV/0.png new file mode 100644 index 0000000000000000000000000000000000000000..00beb5b797178d9e5955f01e3b5589acade6dbe1 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee150c93c3a9988a26439ac35eb83bad6bf7d4c78fa820b33d376320d7fb362 +size 506306 diff --git a/vlm/train/tGZu6DlbreV/1.png b/vlm/train/tGZu6DlbreV/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b08e3d9bb12b1f0e5762692e5ef968e3b97f9764 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a9ce0d033f24d351be2505c56afe2e8916ebb10ae69fbcc0d2e6612ab58e81 +size 630033 diff --git a/vlm/train/tGZu6DlbreV/10.png b/vlm/train/tGZu6DlbreV/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4382c17d139ee0dbcd6eb5701699273dadd0ba19 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e325f126c11da8ba4827aea60d5eed9eb6790ae25ef21dbd2fd19896fa3b87a +size 493822 diff --git a/vlm/train/tGZu6DlbreV/11.png b/vlm/train/tGZu6DlbreV/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1ef8d7119e85d6e0a36b27f84148def08c457ab3 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791f39dd025e37b9e5715dcd21e8fd0b77640702c47b17a5dfcf9f4743249cab +size 126133 diff --git a/vlm/train/tGZu6DlbreV/12.png b/vlm/train/tGZu6DlbreV/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ed94de4322f1518e1eeccdee092176206d8f1589 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf88e8e19e92093955d1b4e12179cc406b0c3b0c09821f5d6d811c45b26a1cb +size 477206 diff --git a/vlm/train/tGZu6DlbreV/13.png b/vlm/train/tGZu6DlbreV/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e0fc4ecc2e6e0a155542c35a5270235a5c8cc6e7 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5dbf9651cd4fd11da2bc6a9b2d40c991033a8ef0147cb21df22c04df6c2741b +size 325805 diff --git a/vlm/train/tGZu6DlbreV/14.png b/vlm/train/tGZu6DlbreV/14.png new file mode 100644 index 0000000000000000000000000000000000000000..5e29ef4635825d69387c3b50fea75a053acb886a --- /dev/null +++ b/vlm/train/tGZu6DlbreV/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827abc1cf0a5dd73b8c933fdfb6dc30fff901966fe9bc81109abec562026dd67 +size 346014 diff --git a/vlm/train/tGZu6DlbreV/15.png b/vlm/train/tGZu6DlbreV/15.png new file mode 100644 index 0000000000000000000000000000000000000000..87a4c45445faf9889b55ec899ee4039357b9dbb4 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95fb5340b0459e4f8dc29c989e222e5b8ab8b34bb8ff30a1ad234a5dc05a756 +size 563157 diff --git a/vlm/train/tGZu6DlbreV/16.png b/vlm/train/tGZu6DlbreV/16.png new file mode 100644 index 0000000000000000000000000000000000000000..54bc3095fb8ebc563eba9c0d0fcd4102af82e27e --- /dev/null +++ b/vlm/train/tGZu6DlbreV/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b553951ea639ec9326ccfae7eb6fa1671758f8beafdebf92b2a339db36fb14c +size 492926 diff --git a/vlm/train/tGZu6DlbreV/17.png b/vlm/train/tGZu6DlbreV/17.png new file mode 100644 index 0000000000000000000000000000000000000000..dff9fe28eb292425b9bb166ac873c7e681937463 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab6342237aab99d5f18cae1919911738be193a23fe42a797e0058b91ea491e00 +size 465978 diff --git a/vlm/train/tGZu6DlbreV/18.png b/vlm/train/tGZu6DlbreV/18.png new file mode 100644 index 0000000000000000000000000000000000000000..23a568964cc5183405dff230d123e254c3d435cf --- /dev/null +++ b/vlm/train/tGZu6DlbreV/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b9f9931e68e0eac0773454d2edad4cf21655fbb7c60102eae141d6d7f09463 +size 237470 diff --git a/vlm/train/tGZu6DlbreV/19.png b/vlm/train/tGZu6DlbreV/19.png new file mode 100644 index 0000000000000000000000000000000000000000..d496ac35be84054264f78c43fe817b7019c4fe30 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f662b280f5450aedd0b789eca49b44899d728fe3d0f24b29cfe272ac161b91 +size 341665 diff --git a/vlm/train/tGZu6DlbreV/2.png b/vlm/train/tGZu6DlbreV/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0319510320b3d5e32853839b8a271a532c69f1fc --- /dev/null +++ b/vlm/train/tGZu6DlbreV/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5b710ce3c3cafca91f62183598c59bfcda3766bbb9a01e4572f9f27e1b475 +size 548033 diff --git a/vlm/train/tGZu6DlbreV/3.png b/vlm/train/tGZu6DlbreV/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e41baee7f6d2d0b9c33a07810cc0803b7219c7f1 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35b0ef1f91f160328e56ad118f6cb6db5b7e8967248367e297493fd14162f95 +size 627080 diff --git a/vlm/train/tGZu6DlbreV/4.png b/vlm/train/tGZu6DlbreV/4.png new file mode 100644 index 0000000000000000000000000000000000000000..645412a3526fed453160e873ef305edff1cae712 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f4b409a84f688de2412b599a6ab733a6bdc359a6e4673c974c3d7530bbee07 +size 582904 diff --git a/vlm/train/tGZu6DlbreV/5.png b/vlm/train/tGZu6DlbreV/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b5c5c171ea68950a41c019aace3ce181817d61c8 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f200bfcd5603eb9ae3de20fd0a8314c79dd6897ef3e02ffdf4e2218ad104dbaf +size 545924 diff --git a/vlm/train/tGZu6DlbreV/6.png b/vlm/train/tGZu6DlbreV/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfe1055cf9a8b6ceac4b4b7ea2d791d17636653 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de9d5b950cb1ba9a9ff85342dc8f8ebf40db9d3aa0a80245f25d35006df6586 +size 633787 diff --git a/vlm/train/tGZu6DlbreV/7.png b/vlm/train/tGZu6DlbreV/7.png new file mode 100644 index 0000000000000000000000000000000000000000..fbb3ff6ea2de5db8d855b4f918c8a8f5643cb38e --- /dev/null +++ b/vlm/train/tGZu6DlbreV/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fdbc0a527404d25905333c729904edf5eb4edb6087083991612c64f70b8ba5 +size 543297 diff --git a/vlm/train/tGZu6DlbreV/8.png b/vlm/train/tGZu6DlbreV/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d3c72b17acd701a3c5ad0ac5ce4aaa54c8a029d9 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501cac7d08f6630990bfc81dff0fd8245b2f5d1277fa71a6661336f724aaf8de +size 511445 diff --git a/vlm/train/tGZu6DlbreV/9.png b/vlm/train/tGZu6DlbreV/9.png new file mode 100644 index 0000000000000000000000000000000000000000..55e233b1722391d0426755ac24598dc99b8cda22 --- /dev/null +++ b/vlm/train/tGZu6DlbreV/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63842c8dc6b4f3d8784778074fa872394d4f697305acaf5da79d08a0dfb2a0a +size 470664 diff --git a/vlm/train/u8X280hw1Mt/0.png b/vlm/train/u8X280hw1Mt/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1ab078e2b800869dbe65db2705f940162826af5a --- /dev/null +++ b/vlm/train/u8X280hw1Mt/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc7b3fd361aed8b03e78734b71ba190406fff3fd073ac32cfd72a2dae951e1d +size 496329 diff --git a/vlm/train/u8X280hw1Mt/1.png b/vlm/train/u8X280hw1Mt/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6a6b05cc2696daee9453c2ef647cee0ec9126063 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52773444a37eb3da9c6667b9f512b9047c0b2b7e8cc26a6895d87ae66111b55 +size 644980 diff --git a/vlm/train/u8X280hw1Mt/10.png b/vlm/train/u8X280hw1Mt/10.png new file mode 100644 index 0000000000000000000000000000000000000000..efafadeba69d0f892abbf1a8e8faa2fa4f0bef36 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bd5101556779f7d23cd896f8c01f08c54d1af9848ba29839fe329c9155c899 +size 583965 diff --git a/vlm/train/u8X280hw1Mt/11.png b/vlm/train/u8X280hw1Mt/11.png new file mode 100644 index 0000000000000000000000000000000000000000..252578a818f27dc855c3602c17011c6337580c68 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c375f790cc6f98354297135bd86869006d9eddd7f18a434901c7a3bd8ee1081 +size 269468 diff --git a/vlm/train/u8X280hw1Mt/12.png b/vlm/train/u8X280hw1Mt/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7830a5881356549f7757976545c0346e585c6ad2 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e8eeee8d595aba0e1aadd390154cb3b964f2dc2d26345457aa7f17973d5a277 +size 214099 diff --git a/vlm/train/u8X280hw1Mt/13.png b/vlm/train/u8X280hw1Mt/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3636ba2e1cbf3fd10753df60a86834f3e8a61d5e --- /dev/null +++ b/vlm/train/u8X280hw1Mt/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc9946453783ab33282a47f646969fea1874db3503f6df0cceb38e0348379f2 +size 343404 diff --git a/vlm/train/u8X280hw1Mt/14.png b/vlm/train/u8X280hw1Mt/14.png new file mode 100644 index 0000000000000000000000000000000000000000..348bd6f447ded2de6bf0112042b2e74760e0724b --- /dev/null +++ b/vlm/train/u8X280hw1Mt/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d5015f246185d8df3cb13f802faf070ec448d354c7773b9727a2d2d96ad51f +size 395934 diff --git a/vlm/train/u8X280hw1Mt/15.png b/vlm/train/u8X280hw1Mt/15.png new file mode 100644 index 0000000000000000000000000000000000000000..db94a12c553e6a3ba8168a789e679420b94d9bb6 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b059588f3312f42043bc898214f70887f6962f18b8c6a7a4801dfea7d30682 +size 276588 diff --git a/vlm/train/u8X280hw1Mt/2.png b/vlm/train/u8X280hw1Mt/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ab85f6093273f72b510bbb3edccfdc7a02de07 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a24adb20a90c467cfc0c1455ac3f30760ed4465158eea730212935877a9b548 +size 549596 diff --git a/vlm/train/u8X280hw1Mt/3.png b/vlm/train/u8X280hw1Mt/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b2ecd2a05071d5baa3e9afa5027ba320cb4f89d6 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8bfc0ba689af369959bd1923bb3c7fa55c6f159a777e702e78abdc7c40dc2b +size 537909 diff --git a/vlm/train/u8X280hw1Mt/4.png b/vlm/train/u8X280hw1Mt/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bffebc878a1704d1aad0e0cb8e752e1266a03d12 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b47dfd730ca31f381a33400ed3ff81c38506e1048caab50d3fa6ae22667560 +size 475952 diff --git a/vlm/train/u8X280hw1Mt/5.png b/vlm/train/u8X280hw1Mt/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f3f8508df806f753217d418da379c6d807e25ef6 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be786b1b3e35a194959e70f617559c268a4851ca1068f877bc37edf8f6dce04 +size 555333 diff --git a/vlm/train/u8X280hw1Mt/6.png b/vlm/train/u8X280hw1Mt/6.png new file mode 100644 index 0000000000000000000000000000000000000000..50a47b413bdc5823683a4ae14ba1a614519201b7 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ea1cba861e59c94684e0c31af667b4d99ce820884a3624efffe751f13659b0 +size 497849 diff --git a/vlm/train/u8X280hw1Mt/7.png b/vlm/train/u8X280hw1Mt/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e469a0b16baa1d58470568e5a0ca38e9c8965168 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9a65f1535b221ea8eac2e19f6d533e5fb6a99d9aa963382cf8cf0f7768810b +size 598920 diff --git a/vlm/train/u8X280hw1Mt/8.png b/vlm/train/u8X280hw1Mt/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9992ad9334f408e4975080f5aff6c4f5d52b4abe --- /dev/null +++ b/vlm/train/u8X280hw1Mt/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8543cc7693e5f55c418517dcca82f187fbc69b8177a2015fd877cf4a22e7398f +size 317675 diff --git a/vlm/train/u8X280hw1Mt/9.png b/vlm/train/u8X280hw1Mt/9.png new file mode 100644 index 0000000000000000000000000000000000000000..eada10ca0a8186663d45845d3d0cde61d10ea5d8 --- /dev/null +++ b/vlm/train/u8X280hw1Mt/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a0a0ea06e9e7b9e792b226ba2eb9f72124b35b76e5cbc53074ebb11f90ab4bc +size 551801 diff --git a/vlm/train/w6iVxEdh6bi/0.png b/vlm/train/w6iVxEdh6bi/0.png new file mode 100644 index 0000000000000000000000000000000000000000..787e1d515e79bc5220a6825aebe9debd94627f60 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f09635bcae322f2396eae96ed81659ea87995df4d0a72b0e7694d6915634ea +size 459775 diff --git a/vlm/train/w6iVxEdh6bi/1.png b/vlm/train/w6iVxEdh6bi/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e29e389cd56a963672994a4fce5d7cace2004ab --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02cfe6079170ba1766aa011bd19fd2816f1be3a9b559ed0583081851088f0248 +size 437535 diff --git a/vlm/train/w6iVxEdh6bi/10.png b/vlm/train/w6iVxEdh6bi/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bff978659c6123d9022431e70036a896467b12e4 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0cd316118bc6979f11d86d74a9bba8785c9a65b7c13bf7b7b3e5240da3bd94 +size 514767 diff --git a/vlm/train/w6iVxEdh6bi/11.png b/vlm/train/w6iVxEdh6bi/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9b93728eec2e906e3a549968200ffd6be8481e15 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c9f4b48b479491ab1256a989886e4875da290b24cbc0b7f199b66398f9a6dc +size 550424 diff --git a/vlm/train/w6iVxEdh6bi/12.png b/vlm/train/w6iVxEdh6bi/12.png new file mode 100644 index 0000000000000000000000000000000000000000..856eef71323c23544099d64bf41952396b297a51 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8684b1663b754d8c98e5bd0bd388b530ebf9eb31ed6147aced9b6ea4a6918c6f +size 235256 diff --git a/vlm/train/w6iVxEdh6bi/13.png b/vlm/train/w6iVxEdh6bi/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b5609eb3c90eed428440f9626f22a11236aa71e4 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6b1594dc1d651bc84a6b77bd869a321faea6806b23f0a1ab7149a6ecd3b5cf +size 345451 diff --git a/vlm/train/w6iVxEdh6bi/2.png b/vlm/train/w6iVxEdh6bi/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3bec5070fe473410f7bbb8d510102400dc96fed4 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0e2f280c934987fb8c5e2c4a4eff8b2753e596217bee91be5ab18f1a6abc16 +size 587297 diff --git a/vlm/train/w6iVxEdh6bi/3.png b/vlm/train/w6iVxEdh6bi/3.png new file mode 100644 index 0000000000000000000000000000000000000000..76962cee709bf33ca531855316f3f421f2037673 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f910e6f63e191f5dae8d1c2b998b5e0173b7285f911b6c3b9186b4511203b8a2 +size 538576 diff --git a/vlm/train/w6iVxEdh6bi/4.png b/vlm/train/w6iVxEdh6bi/4.png new file mode 100644 index 0000000000000000000000000000000000000000..92a405504c827569176c814da95dbb4a99023116 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:418815cf5e8bbd0e6085dd13b9504718d997c48776a1375d53666ca1c88ec86a +size 470798 diff --git a/vlm/train/w6iVxEdh6bi/5.png b/vlm/train/w6iVxEdh6bi/5.png new file mode 100644 index 0000000000000000000000000000000000000000..328ddb00d238945c0487e8225ef0ddab79445096 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfda32166dbf678a6ddfa8dff3c6b1641065c4e345015c83c97f9165b33d5679 +size 528552 diff --git a/vlm/train/w6iVxEdh6bi/6.png b/vlm/train/w6iVxEdh6bi/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c3a91cd51490e1362d1d03d7eef94dc6e958aa53 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d15ecd555a2d596fea5de3a95a1c5793b806b825aae8405da89461aaa4047a3 +size 527144 diff --git a/vlm/train/w6iVxEdh6bi/7.png b/vlm/train/w6iVxEdh6bi/7.png new file mode 100644 index 0000000000000000000000000000000000000000..8515c5f99d70b3ebeb69141edb321ca76b3c92be --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de133d9c96bd183eb4df8f458395c0888af5cd15a6cc348202c7686d5f206e3e +size 526092 diff --git a/vlm/train/w6iVxEdh6bi/8.png b/vlm/train/w6iVxEdh6bi/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4c6e54daee6b58a83933abb0ea386225caf5cd00 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a139fd527a9f5c14da8b5fc18645410e1f9c5b279d5b4a1831b28750badedda +size 783250 diff --git a/vlm/train/w6iVxEdh6bi/9.png b/vlm/train/w6iVxEdh6bi/9.png new file mode 100644 index 0000000000000000000000000000000000000000..210841343ab818ae61bd222eecf612943c2eeeb5 --- /dev/null +++ b/vlm/train/w6iVxEdh6bi/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f09e237efb014a449feef0dc83651ac2ad90362d731d89b23f65e2128db361a7 +size 475364